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