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


TypeScript types.makeAppRecord函数代码示例

本文整理汇总了TypeScript中@nteract/types.makeAppRecord函数的典型用法代码示例。如果您正苦于以下问题:TypeScript makeAppRecord函数的具体用法?TypeScript makeAppRecord怎么用?TypeScript makeAppRecord使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: handleApp

export default function handleApp(
  state: AppRecord = makeAppRecord(),
  action:
    | SetNotificationSystemAction
    | SetGithubTokenAction
    | Save
    | SaveFulfilled
    | SaveFailed
    | SetAppHostAction
): RecordOf<AppRecordProps> {
  switch (action.type) {
    case actions.SAVE:
      return save(state);
    case actions.SAVE_FAILED:
      return saveFailed(state);
    case actions.SAVE_FULFILLED:
      return saveFulfilled(state);
    case actions.SET_NOTIFICATION_SYSTEM:
      return setNotificationsSystem(state, action);
    case actions.SET_GITHUB_TOKEN:
      return setGithubToken(state, action);
    case actions.SET_APP_HOST:
      return setAppHost(state, action);
    default:
      return state;
  }
}
开发者ID:nteract,项目名称:nteract,代码行数:27,代码来源:app.ts

示例2: fixtureStore

export function fixtureStore(config: JSONObject) {
  const dummyNotebook = buildFixtureNotebook(config);

  const frontendToShell = new Subject();
  const shellToFrontend = new Subject();
  const mockShell = Subject.create(frontendToShell, shellToFrontend);
  const channels = mockShell;

  const kernelRef = createKernelRef();
  const contentRef = createContentRef();

  const initialAppState: AppState = {
    core: makeStateRecord({
      kernelRef,
      entities: makeEntitiesRecord({
        contents: makeContentsRecord({
          byRef: Immutable.Map({
            [contentRef]: makeNotebookContentRecord({
              model: makeDocumentRecord({
                notebook: dummyNotebook,
                savedNotebook:
                  config && config.saved === true
                    ? dummyNotebook
                    : emptyNotebook,
                cellPagers: Immutable.Map(),
                cellFocused:
                  config && config.codeCellCount && config.codeCellCount > 1
                    ? dummyNotebook.get("cellOrder", Immutable.List()).get(1)
                    : null
              }),
              filepath:
                config && config.noFilename ? "" : "dummy-store-nb.ipynb"
            })
          })
        }),
        kernels: makeKernelsRecord({
          byRef: Immutable.Map({
            [kernelRef]: makeRemoteKernelRecord({
              channels,
              status: "not connected"
            })
          })
        })
      })
    }),
    app: makeAppRecord({
      notificationSystem: {
        addNotification: () => {} // most of the time you'll want to mock this
      },
      githubToken: "TOKEN"
    }),
    config: Immutable.Map({
      theme: "light"
    }),
    comms: makeCommsRecord()
  };

  return createStore(rootReducer, initialAppState as any);
}
开发者ID:nteract,项目名称:nteract,代码行数:59,代码来源:index.ts

示例3: test

  test("returns the same originalState if notificationSystem is undefined", () => {
    const originalState = stateModule.makeAppRecord();

    const action = { type: actions.SET_NOTIFICATION_SYSTEM };

    const state = reducers.app(originalState, action);
    expect(state.notificationSystem).toEqual(originalState.notificationSystem);
  });
开发者ID:kelleyblackmore,项目名称:nteract,代码行数:8,代码来源:app.spec.ts

示例4: test

  test("returns the same originalState if notificationSystem is undefined", () => {
    const originalState = stateModule.makeAppRecord();

    const action = {
      type: actions.SET_NOTIFICATION_SYSTEM,
      payload: {}
      // Override action type to test reducer handling old behavior
    } as actions.SetNotificationSystemAction;

    const state = reducers.app(originalState, action);
    expect(state.notificationSystem).toEqual(originalState.notificationSystem);
  });
开发者ID:nteract,项目名称:nteract,代码行数:12,代码来源:app.spec.ts


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