mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
* Upgrade nteract packages and related dependencies to make new stateful-component work * Switch to new monacoEditor * Configure store using nteract mythic configuration * Replace CodeMirror with Monaco editor in NotebookReadOnlyRenderer * Reformat * Upgrade d3 to latest to resolve d3-selection conflicts with nteract/data-explorer that broke D3ForceGraph * Upgrade jupyterlab terminal widget to work with latest version of react. Upgrade jupyterlab services to include latest fix for websocket auth * Update jest test snapshots * Upgrade packages to fix build issues * Remove comment * Fix unit tests * Fix unit test snapshot * Remove useless @types/node-fetch
112 lines
3.7 KiB
TypeScript
112 lines
3.7 KiB
TypeScript
import * as React from "react";
|
|
import "./base.css";
|
|
import "./default.css";
|
|
|
|
import { CodeCell, RawCell, Cells, MarkdownCell } from "@nteract/stateful-components";
|
|
import Prompt, { PassedPromptProps } from "@nteract/stateful-components/lib/inputs/prompt";
|
|
import { AzureTheme } from "./AzureTheme";
|
|
|
|
import { connect } from "react-redux";
|
|
import { Dispatch } from "redux";
|
|
import { actions, ContentRef } from "@nteract/core";
|
|
import loadTransform from "../NotebookComponent/loadTransform";
|
|
import MonacoEditor from "@nteract/stateful-components/lib/inputs/connected-editors/monacoEditor";
|
|
import { PassedEditorProps } from "@nteract/stateful-components/lib/inputs/editor";
|
|
import "./NotebookReadOnlyRenderer.less";
|
|
|
|
export interface NotebookRendererProps {
|
|
contentRef: any;
|
|
hideInputs?: boolean;
|
|
hidePrompts?: boolean;
|
|
}
|
|
|
|
/**
|
|
* This is the class that uses nteract to render a read-only notebook.
|
|
*/
|
|
class NotebookReadOnlyRenderer extends React.Component<NotebookRendererProps> {
|
|
componentDidMount() {
|
|
loadTransform(this.props as any);
|
|
}
|
|
|
|
private renderPrompt(id: string, contentRef: string): JSX.Element {
|
|
if (this.props.hidePrompts) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<Prompt id={id} contentRef={contentRef}>
|
|
{(props: PassedPromptProps) => {
|
|
if (props.status === "busy") {
|
|
return <React.Fragment>{"[*]"}</React.Fragment>;
|
|
}
|
|
if (props.status === "queued") {
|
|
return <React.Fragment>{"[…]"}</React.Fragment>;
|
|
}
|
|
if (typeof props.executionCount === "number") {
|
|
return <React.Fragment>{`[${props.executionCount}]`}</React.Fragment>;
|
|
}
|
|
return <React.Fragment>{"[ ]"}</React.Fragment>;
|
|
}}
|
|
</Prompt>
|
|
);
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
return (
|
|
<div className="NotebookReadOnlyRender">
|
|
<Cells contentRef={this.props.contentRef}>
|
|
{{
|
|
code: ({ id, contentRef }: { id: any; contentRef: ContentRef }) => (
|
|
<CodeCell id={id} contentRef={contentRef}>
|
|
{{
|
|
prompt: (props: { id: string; contentRef: string }) => this.renderPrompt(props.id, props.contentRef),
|
|
editor: {
|
|
monaco: (props: PassedEditorProps) =>
|
|
this.props.hideInputs ? <></> : <MonacoEditor readOnly={true} {...props} editorType={"monaco"} />
|
|
}
|
|
}}
|
|
</CodeCell>
|
|
),
|
|
markdown: ({ id, contentRef }: { id: any; contentRef: ContentRef }) => (
|
|
<MarkdownCell id={id} contentRef={contentRef} cell_type="markdown">
|
|
{{
|
|
editor: {}
|
|
}}
|
|
</MarkdownCell>
|
|
),
|
|
raw: ({ id, contentRef }: { id: any; contentRef: ContentRef }) => (
|
|
<RawCell id={id} contentRef={contentRef} cell_type="raw">
|
|
{{
|
|
editor: {
|
|
monaco: (props: PassedEditorProps) =>
|
|
this.props.hideInputs ? <></> : <MonacoEditor {...props} readOnly={true} editorType={"monaco"} />
|
|
}
|
|
}}
|
|
</RawCell>
|
|
)
|
|
}}
|
|
</Cells>
|
|
<AzureTheme />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const makeMapDispatchToProps = (initialDispatch: Dispatch, initialProps: NotebookRendererProps) => {
|
|
const mapDispatchToProps = (dispatch: Dispatch) => {
|
|
return {
|
|
addTransform: (transform: React.ComponentType & { MIMETYPE: string }) => {
|
|
return dispatch(
|
|
actions.addTransform({
|
|
mediaType: transform.MIMETYPE,
|
|
component: transform
|
|
})
|
|
);
|
|
}
|
|
};
|
|
};
|
|
return mapDispatchToProps;
|
|
};
|
|
|
|
export default connect(null, makeMapDispatchToProps)(NotebookReadOnlyRenderer);
|