當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Toolbar.createInterruptButton方法代碼示例

本文整理匯總了TypeScript中@jupyterlab/apputils.Toolbar.createInterruptButton方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Toolbar.createInterruptButton方法的具體用法?TypeScript Toolbar.createInterruptButton怎麽用?TypeScript Toolbar.createInterruptButton使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@jupyterlab/apputils.Toolbar的用法示例。


在下文中一共展示了Toolbar.createInterruptButton方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it("should have the `'jp-StopIcon'` class", async () => {
   const button = Toolbar.createInterruptButton(session);
   Widget.attach(button, document.body);
   await framePromise();
   expect(
     (button.node.firstChild.firstChild as HTMLElement).classList.contains(
       'jp-StopIcon'
     )
   ).to.equal(true);
 });
開發者ID:willingc,項目名稱:jupyterlab,代碼行數:10,代碼來源:toolbar.spec.ts

示例2: main

function main(): void {
  const manager = new SessionManager();
  const session = new ClientSession({ manager, name: 'Example' });
  const mimeService = new CodeMirrorMimeTypeService();

  // Initialize the command registry with the bindings.
  const commands = new CommandRegistry();
  const useCapture = true;

  // Setup the keydown listener for the document.
  document.addEventListener(
    'keydown',
    event => {
      commands.processKeydownEvent(event);
    },
    useCapture
  );

  // Create the cell widget with a default rendermime instance.
  const rendermime = new RenderMimeRegistry({ initialFactories });

  const cellWidget = new CodeCell({
    rendermime,
    model: new CodeCellModel({})
  }).initializeState();

  // Handle the mimeType for the current kernel.
  session.kernelChanged.connect(() => {
    void session.kernel.ready.then(() => {
      const lang = session.kernel.info.language_info;
      const mimeType = mimeService.getMimeTypeByLanguage(lang);
      cellWidget.model.mimeType = mimeType;
    });
  });

  // Start the default kernel.
  session.kernelPreference = { autoStartDefault: true };
  void session.initialize();

  // Set up a completer.
  const editor = cellWidget.editor;
  const model = new CompleterModel();
  const completer = new Completer({ editor, model });
  const connector = new KernelConnector({ session });
  const handler = new CompletionHandler({ completer, connector });

  // Set the handler's editor.
  handler.editor = editor;

  // Hide the widget when it first loads.
  completer.hide();

  // Create a toolbar for the cell.
  const toolbar = new Toolbar();
  toolbar.addItem('spacer', Toolbar.createSpacerItem());
  toolbar.addItem('interrupt', Toolbar.createInterruptButton(session));
  toolbar.addItem('restart', Toolbar.createRestartButton(session));
  toolbar.addItem('name', Toolbar.createKernelNameItem(session));
  toolbar.addItem('status', Toolbar.createKernelStatusItem(session));

  // Lay out the widgets.
  const panel = new BoxPanel();
  panel.id = 'main';
  panel.direction = 'top-to-bottom';
  panel.spacing = 0;
  panel.addWidget(completer);
  panel.addWidget(toolbar);
  panel.addWidget(cellWidget);
  BoxPanel.setStretch(toolbar, 0);
  BoxPanel.setStretch(cellWidget, 1);

  // Attach the panel to the DOM.
  Widget.attach(panel, document.body);

  // Handle widget state.
  window.addEventListener('resize', () => {
    panel.update();
  });
  cellWidget.activate();

  // Add the commands.
  commands.addCommand('invoke:completer', {
    execute: () => {
      handler.invoke();
    }
  });
  commands.addCommand('run:cell', {
    execute: () => CodeCell.execute(cellWidget, session)
  });

  commands.addKeyBinding({
    selector: '.jp-InputArea-editor.jp-mod-completer-enabled',
    keys: ['Tab'],
    command: 'invoke:completer'
  });
  commands.addKeyBinding({
    selector: '.jp-InputArea-editor',
    keys: ['Shift Enter'],
    command: 'run:cell'
  });
//.........這裏部分代碼省略.........
開發者ID:afshin,項目名稱:jupyterlab,代碼行數:101,代碼來源:index.ts

示例3: it

 it("should have the `'jp-StopIcon'` class", async () => {
   const button = Toolbar.createInterruptButton(session);
   Widget.attach(button, document.body);
   await framePromise();
   expect(button.node.querySelector('.jp-StopIcon')).to.exist;
 });
開發者ID:afshin,項目名稱:jupyterlab,代碼行數:6,代碼來源:toolbar.spec.ts


注:本文中的@jupyterlab/apputils.Toolbar.createInterruptButton方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。