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


TypeScript types.makeJupyterHostRecord函數代碼示例

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


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

示例1: switch

const byRef = (state = Immutable.Map(), action: Action) => {
  let typedAction;
  switch (action.type) {
    case actions.ADD_HOST:
      typedAction = action as actions.AddHost;
      switch (typedAction.payload.host.type) {
        case "jupyter": {
          return state.set(
            typedAction.payload.hostRef,
            makeJupyterHostRecord(typedAction.payload.host)
          );
        }
        case "local": {
          return state.set(
            typedAction.payload.hostRef,
            makeLocalHostRecord(typedAction.payload.host)
          );
        }
        default:
          throw new Error(
            `Unrecognized host type "${typedAction.payload.host.type}".`
          );
      }
    default:
      return state;
  }
};
開發者ID:kelleyblackmore,項目名稱:nteract,代碼行數:27,代碼來源:hosts.ts

示例2: Map

const byRef = (
  state = Map() as Map<string, HostRecord>,
  action: Action
): Map<string, HostRecord> => {
  let typedAction;
  switch (action.type) {
    case actions.ADD_HOST:
      typedAction = action as actions.AddHost;
      switch (typedAction.payload.host.type) {
        case "jupyter": {
          return state.set(
            typedAction.payload.hostRef,
            makeJupyterHostRecord(typedAction.payload.host)
          );
        }
        case "local": {
          return state.set(
            typedAction.payload.hostRef,
            makeLocalHostRecord(typedAction.payload.host)
          );
        }
        default:
          throw new Error(
            `Unrecognized host type "${typedAction.payload.host.type}".`
          );
      }
    case actions.REMOVE_HOST:
      typedAction = action as actions.RemoveHost;
      return state.remove(typedAction.payload.hostRef);
    default:
      return state;
  }
};
開發者ID:nteract,項目名稱:nteract,代碼行數:33,代碼來源:hosts.ts

示例3: test

  test("can set Jupyter record", () => {
    const originalState = stateModule.makeAppRecord({
      host: null
    });

    const action: SetAppHostAction = {
      type: actions.SET_APP_HOST,
      payload: makeJupyterHostRecord({ id: "anotherid" })
    };

    const state = reducers.app(originalState, action);
    expect(state.host.get("type")).toBe("jupyter");
    expect(state.host.get("id")).toBe("anotherid");
  });
開發者ID:nteract,項目名稱:nteract,代碼行數:14,代碼來源:app.spec.ts

示例4: test

  test("", async function() {
    const state$ = new StateObservable(new Subject<stateModule.AppState>(), {
      core: stateModule.makeStateRecord({
        kernelRef: "fake",
        entities: stateModule.makeEntitiesRecord({
          kernels: stateModule.makeKernelsRecord({
            byRef: Immutable.Map({
              fake: stateModule.makeRemoteKernelRecord({
                type: "websocket",
                channels: new Subject<any>(),
                kernelSpecName: "fancy",
                id: "0"
              })
            })
          })
        })
      }),
      app: stateModule.makeAppRecord({
        host: stateModule.makeJupyterHostRecord({
          type: "jupyter",
          token: "eh",
          basePath: "http://localhost:8888/"
        }),
        notificationSystem: { addNotification: jest.fn() }
      }),
      comms: stateModule.makeCommsRecord(),
      config: Immutable.Map({})
    });
    const action$ = ActionsObservable.of(
      actions.interruptKernel({ kernelRef: "fake" })
    );

    const responseActions = await coreEpics
      .interruptKernelEpic(action$, state$)
      .pipe(toArray())
      .toPromise();

    expect(responseActions).toEqual([
      {
        type: "INTERRUPT_KERNEL_SUCCESSFUL",
        payload: { kernelRef: "fake" }
      }
    ]);
  });
開發者ID:kelleyblackmore,項目名稱:nteract,代碼行數:44,代碼來源:websocket-kernel.spec.ts


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