当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Widget.attach方法代码示例

本文整理汇总了TypeScript中@phosphor/widgets.Widget.attach方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Widget.attach方法的具体用法?TypeScript Widget.attach怎么用?TypeScript Widget.attach使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@phosphor/widgets.Widget的用法示例。


在下文中一共展示了Widget.attach方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it('should apply wrap if attached before setting', (done) => {
   let p = new FlexPanel();
   Widget.attach(p, document.body);
   p.wrap = true;
   requestAnimationFrame(() => {
     expect(p.node.style.flexWrap).to.be('wrap');
     p.dispose();
     done();
   });
 });
开发者ID:vidartf,项目名称:nbdime,代码行数:10,代码来源:flexpanel.spec.ts

示例2: it

 it("should have the `'jp-RefreshIcon'` class", async () => {
   const button = Toolbar.createRestartButton(session);
   Widget.attach(button, document.body);
   await framePromise();
   expect(
     (button.node.firstChild.firstChild as HTMLElement).classList.contains(
       'jp-RefreshIcon'
     )
   ).to.equal(true);
 });
开发者ID:AlbertHilb,项目名称:jupyterlab,代码行数:10,代码来源:toolbar.spec.ts

示例3: it

 it("should have the `'jp-CutIcon'` class", async () => {
   const button = ToolbarItems.createCutButton(panel);
   Widget.attach(button, document.body);
   await framePromise();
   expect(
     (button.node.firstChild.firstChild as HTMLElement).classList.contains(
       'jp-CutIcon'
     )
   ).to.equal(true);
 });
开发者ID:SylvainCorlay,项目名称:jupyterlab,代码行数:10,代码来源:default-toolbar.spec.ts

示例4: it

 it('should paste when clicked', async () => {
   let button = ToolbarItems.createPasteButton(panel);
   let count = panel.content.widgets.length;
   Widget.attach(button, document.body);
   NotebookActions.copy(panel.content);
   button.node.click();
   await moment();
   expect(panel.content.widgets.length).to.be(count + 1);
   button.dispose();
 });
开发者ID:groutr,项目名称:jupyterlab,代码行数:10,代码来源:default-toolbar.spec.ts

示例5: expect

 return w.renderModel(model).then(() => {
   Widget.attach(w, document.body);
   let node = document.getElementById('Title-third-level');
   expect(node.localName).to.be('h3');
   let anchor = node.firstChild.nextSibling as HTMLAnchorElement;
   expect(anchor.href).to.contain('#Title-third-level');
   expect(anchor.target).to.be('_self');
   expect(anchor.className).to.contain('jp-InternalAnchorLink');
   expect(anchor.textContent).to.be('Âś');
   Widget.detach(w);
 });
开发者ID:7125messi,项目名称:jupyterlab,代码行数:11,代码来源:factories.spec.ts

示例6: it

 it('should execute a script tag when attached', () => {
   const source = '<script>window.y=3;</script>';
   let r = new HTMLRenderer();
   let mimeType = 'text/html';
   let model = createModel(mimeType, source, true);
   let w = r.render({ mimeType, model, sanitizer });
   expect((window as any).y).to.be(void 0);
   Widget.attach(w, document.body);
   expect((window as any).y).to.be(3);
   w.dispose();
 });
开发者ID:rlugojr,项目名称:jupyterlab,代码行数:11,代码来源:renderers.spec.ts

示例7: it

 it('should paste when clicked', async () => {
   const button = ToolbarItems.createPasteButton(panel);
   const count = panel.content.widgets.length;
   Widget.attach(button, document.body);
   await framePromise();
   NotebookActions.copy(panel.content);
   (button.node.firstChild as HTMLElement).click();
   await sleep();
   expect(panel.content.widgets.length).to.equal(count + 1);
   button.dispose();
 });
开发者ID:willingc,项目名称:jupyterlab,代码行数:11,代码来源:default-toolbar.spec.ts

示例8: it

 it('should create a new folder', (done) => {
   Widget.attach(buttons, document.body);
   let node = buttons.createNode;
   simulate(node, 'mousedown');
   let menu = document.getElementsByClassName('p-Menu')[0];
   simulate(menu, 'keydown', { keyCode: 40 });
   simulate(menu, 'keydown', { keyCode: 13 });
   model.fileChanged.connect((sender, args) => {
     expect(args.newValue.type).to.be('directory');
     done();
   });
 });
开发者ID:rlugojr,项目名称:jupyterlab,代码行数:12,代码来源:buttons.spec.ts


注:本文中的@phosphor/widgets.Widget.attach方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。