本文整理汇总了TypeScript中@nteract/types.makeNotebookContentRecord函数的典型用法代码示例。如果您正苦于以下问题:TypeScript makeNotebookContentRecord函数的具体用法?TypeScript makeNotebookContentRecord怎么用?TypeScript makeNotebookContentRecord使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了makeNotebookContentRecord函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test("Informs about disconnected kernels, allows reconnection", async () => {
const state$ = {
value: {
core: stateModule.makeStateRecord({
kernelRef: "fake",
entities: stateModule.makeEntitiesRecord({
contents: stateModule.makeContentsRecord({
byRef: Immutable.Map({
fakeContent: stateModule.makeNotebookContentRecord()
})
}),
kernels: stateModule.makeKernelsRecord({
byRef: Immutable.Map({
fake: stateModule.makeRemoteKernelRecord({
channels: null,
status: "not connected"
})
})
})
})
}),
app: {
notificationSystem: { addNotification: jest.fn() }
}
}
};
const action$ = ActionsObservable.of(
actions.executeCell({ id: "first", contentRef: "fakeContentRef" })
);
const responses = await executeCellEpic(action$, state$)
.pipe(toArray())
.toPromise();
expect(responses).toEqual([]);
});
示例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("launches remote kernels", async function() {
const contentRef = "fakeContentRef";
const kernelRef = "fake";
const value = {
app: stateModule.makeAppRecord({
host: stateModule.makeJupyterHostRecord({
type: "jupyter",
token: "eh",
basePath: "http://localhost:8888/"
}),
notificationSystem: { addNotification: jest.fn() }
}),
comms: stateModule.makeCommsRecord(),
config: Immutable.Map({}),
core: stateModule.makeStateRecord({
kernelRef: "fake",
entities: stateModule.makeEntitiesRecord({
contents: stateModule.makeContentsRecord({
byRef: Immutable.Map({
fakeContentRef: stateModule.makeNotebookContentRecord()
})
}),
kernels: stateModule.makeKernelsRecord({
byRef: Immutable.Map({
fake: stateModule.makeRemoteKernelRecord({
type: "websocket",
channels: new Subject<any>(),
kernelSpecName: "fancy",
id: "0"
})
})
})
})
})
};
const state$ = new StateObservable(
new Subject<stateModule.AppState>(),
value
);
const action$ = ActionsObservable.of(
actions.launchKernelByName({
contentRef,
kernelRef,
kernelSpecName: "fancy",
cwd: "/",
selectNextKernel: true
})
);
const responseActions = await coreEpics
.launchWebSocketKernelEpic(action$, state$)
.pipe(toArray())
.toPromise();
expect(responseActions).toEqual([
{
type: "LAUNCH_KERNEL_SUCCESSFUL",
payload: {
contentRef,
kernelRef,
selectNextKernel: true,
kernel: {
info: null,
sessionId: "1",
type: "websocket",
channels: expect.any(Subject),
kernelSpecName: "fancy",
cwd: "/",
id: "0"
}
}
}
]);
});
示例4: switch
//.........这里部分代码省略.........
});
return (
state
// Bring in all the listed records
.merge(dummyRecords)
// Set up the base directory
.set(
fetchContentFulfilledAction.payload.contentRef,
makeDirectoryContentRecord({
model: makeDirectoryModel({
type: "directory",
// The listing is all these contents in aggregate
items: sorted
}),
filepath: fetchContentFulfilledAction.payload.filepath,
lastSaved:
fetchContentFulfilledAction.payload.model.last_modified,
created: fetchContentFulfilledAction.payload.model.created,
loading: false,
saving: false,
error: null
})
)
);
}
case "notebook": {
const immutableNotebook = fromJS(
fetchContentFulfilledAction.payload.model.content
);
return state.set(
fetchContentFulfilledAction.payload.contentRef,
makeNotebookContentRecord({
created: fetchContentFulfilledAction.payload.created,
lastSaved: fetchContentFulfilledAction.payload.lastSaved,
filepath: fetchContentFulfilledAction.payload.filepath,
model: makeDocumentRecord({
notebook: immutableNotebook,
savedNotebook: immutableNotebook,
transient: Map({
keyPathsForDisplays: Map(),
cellMap: Map()
}),
cellFocused: immutableNotebook.getIn(["cellOrder", 0])
}),
loading: false,
saving: false,
error: null
})
);
}
}
// NOTE: There are no other content types (at the moment), so we will just
// warn and return the current state
console.warn("Met some content type we don't support");
return state;
case actionTypes.CHANGE_FILENAME: {
const changeFilenameAction = action as actionTypes.ChangeFilenameAction;
return state.updateIn(
[changeFilenameAction.payload.contentRef],
contentRecord =>
contentRecord.merge({
filepath: changeFilenameAction.payload.filepath
})