當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。