本文整理汇总了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;
}
}
示例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);
}
示例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);
});
示例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);
});