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


TypeScript core.actions類代碼示例

本文整理匯總了TypeScript中@nteract/core.actions的典型用法代碼示例。如果您正苦於以下問題:TypeScript actions類的具體用法?TypeScript actions怎麽用?TypeScript actions使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: hot

    testScheduler.run(helpers => {
      const { hot, expectObservable } = helpers;

      const inputActions = {
        a: actionsModule.restartKernel({
          outputHandling: "Run All",
          kernelRef: "oldKernelRef"
        }),
        b: actionsModule.launchKernelSuccessful({
          kernel: "",
          kernelRef: newKernelRef,
          selectNextKernel: true
        })
      };

      const outputActions = {
        c: actionsModule.killKernel({
          restarting: true,
          kernelRef: "oldKernelRef"
        }),
        d: actionsModule.launchKernelByName({
          kernelSpecName: null,
          cwd: ".",
          kernelRef: newKernelRef,
          selectNextKernel: true
        }),
        e: actionsModule.restartKernelSuccessful({
          kernelRef: newKernelRef
        }),
        f: actionsModule.executeAllCells({})
      };

      const inputMarbles = "a---b---|";
      const outputMarbles = "(cd)(ef)|";

      const inputAction$ = hot(inputMarbles, inputActions);
      const outputAction$ = restartKernelEpic(
        inputAction$,
        { value: state },
        () => newKernelRef
      );

      expectObservable(outputAction$).toBe(outputMarbles, outputActions);
    });
開發者ID:kelleyblackmore,項目名稱:nteract,代碼行數:44,代碼來源:kernel-lifecycle.spec.ts

示例2: map

 map(data =>
   actions.configLoaded({
     config: JSON.parse(data.toString())
   })
開發者ID:nteract,項目名稱:nteract,代碼行數:4,代碼來源:config.ts

示例3: dispatchLoadConfig

export function dispatchLoadConfig(
  _ownProps: { contentRef: ContentRef },
  store: DesktopStore
) {
  store.dispatch(actions.loadConfig());
}
開發者ID:nteract,項目名稱:nteract,代碼行數:6,代碼來源:menu.ts

示例4:

 .catch(e => store.dispatch(actions.coreError(e)));
開發者ID:nteract,項目名稱:nteract,代碼行數:1,代碼來源:menu.ts

示例5: dispatchDeleteCell

export function dispatchDeleteCell(
  ownProps: { contentRef: ContentRef },
  store: DesktopStore
) {
  store.dispatch(actions.deleteCell({ contentRef: ownProps.contentRef }));
}
開發者ID:nteract,項目名稱:nteract,代碼行數:6,代碼來源:menu.ts

示例6: dispatchPasteCell

export function dispatchPasteCell(
  ownProps: { contentRef: ContentRef },
  store: DesktopStore
) {
  store.dispatch(actions.pasteCell(ownProps));
}
開發者ID:nteract,項目名稱:nteract,代碼行數:6,代碼來源:menu.ts

示例7: dispatchClearAll

export function dispatchClearAll(
  ownProps: { contentRef: ContentRef },
  store: DesktopStore
) {
  store.dispatch(actions.clearAllOutputs(ownProps));
}
開發者ID:nteract,項目名稱:nteract,代碼行數:6,代碼來源:menu.ts

示例8: dispatchRunAll

export function dispatchRunAll(
  ownProps: { contentRef: ContentRef },
  store: DesktopStore
) {
  store.dispatch(actions.executeAllCells(ownProps));
}
開發者ID:nteract,項目名稱:nteract,代碼行數:6,代碼來源:menu.ts

示例9: dispatchPublishGist

export function dispatchPublishGist(
  ownProps: { contentRef: ContentRef },
  store: DesktopStore,
  _event: Event
) {
  const state = store.getState();
  const githubToken = state.app.get("githubToken");

  // The simple case -- we have a token and can publish
  if (githubToken != null) {
    store.dispatch(actions.publishGist(ownProps));
    return;
  }

  // If the Github Token isn't set, use our oauth server to acquire a token

  // Because the remote object from Electron main <--> renderer can be "cleaned up"
  // we re-require electron here and get the remote object
  const remote = require("electron").remote;

  // Create our oauth window
  const win = new remote.BrowserWindow({
    show: false,
    webPreferences: { zoomFactor: 0.75 }
  });

  // TODO: This needs to be moved to an epic
  win.webContents.on("dom-ready", () => {
    // When we're at our callback code page, keep the page hidden
    if (win.webContents.getURL().indexOf("callback?code=") !== -1) {
      // Extract the text content
      win.webContents.executeJavaScript(
        "require('electron').ipcRenderer.send('auth', document.body.textContent);"
      );
      remote.ipcMain.on("auth", (_event: Event, auth: string) => {
        try {
          const accessToken = JSON.parse(auth).access_token;
          store.dispatch(actions.setGithubToken(accessToken));

          const notificationSystem = selectors.notificationSystem(state);

          notificationSystem.addNotification({
            title: "Authenticated",
            message: "🔒",
            level: "info"
          });

          // We are now authenticated and can finally publish
          store.dispatch(actions.publishGist(ownProps));
        } catch (e) {
          store.dispatch(actions.coreError(e));
        } finally {
          win.close();
        }
      });
    } else {
      win.show();
    }
  });
  win.loadURL("https://oauth.nteract.io/github");
}
開發者ID:nteract,項目名稱:nteract,代碼行數:61,代碼來源:menu.ts

示例10: mergeMap

    mergeMap((action: actions.PublishGist) => {
      const state = state$.value;

      const contentRef = action.payload.contentRef;
      if (!contentRef) {
        return empty();
      }

      // TODO: Switch GitHub publishing actions to content refs
      const content = selectors.content(state, { contentRef });
      // NOTE: This could save by having selectors for each model type
      //       have toDisk() selectors
      if (!content || content.type !== "notebook") {
        return empty();
      }

      const filepath = content.filepath;
      const notificationSystem = selectors.notificationSystem(state);

      const model = content.model;

      const notebookString = selectors.notebook.asString(model);
      const gistId = selectors.notebook.gistId(model);

      // Allow falling back on the GITHUB_TOKEN environment variable
      const githubToken = state.app.get("githubToken");

      if (githubToken == null) {
        return of(
          actions.coreError(
            new Error("need a github token in order to publish")
          )
        );
      }

      if (gistId && typeof gistId !== "string") {
        return of(
          actions.coreError(new Error("gist id in notebook is not a string"))
        );
      }

      // We are updating, so we require both a gist Id and a github token
      // If this doesn't happen to be our originally gisted notebook,
      // we should likely fork and publish
      //
      // TODO: Check to see if the token matches that of the username listed
      //       in the notebook itself
      if (gistId) {
        notificationSystem.addNotification({
          title: "Updating Gist...",
          message: "💖📓💖",
          dismissible: true,
          position: "tr",
          level: "success"
        });
      } else {
        notificationSystem.addNotification({
          title: "Publishing a New Gist...",
          message: "✨📓✨",
          dismissible: true,
          position: "tr",
          level: "success"
        });
      }

      const filename = filepath ? path.parse(filepath).base : "Untitled.ipynb";
      const files: GithubFiles = {
        [filename]: { content: notebookString }
      };

      return publishGist(
        { files, description: filename, public: false },
        githubToken,
        gistId
      ).pipe(
        mergeMap(xhr => {
          const notificationSystem = selectors.notificationSystem(state$.value);

          const { id, login } = xhr.response;

          // NOTE: One day we need to make this part of our proper store
          //       instead of hidden side effects
          notificationSystem.addNotification({
            title: "Gist uploaded",
            message: "📓 📢",
            dismissible: true,
            position: "tr",
            level: "success",
            action: {
              label: "Open Gist",
              callback() {
                shell.openExternal(`https://nbviewer.jupyter.org/${id}`);
              }
            }
          });

          // TODO: Turn this into one action that does both, even if its
          // sometimes a no-op
          return of(
            actions.overwriteMetadataField({
//.........這裏部分代碼省略.........
開發者ID:nteract,項目名稱:nteract,代碼行數:101,代碼來源:github-publish.ts


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