forked from nteract/outputs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
138 lines (128 loc) · 3.79 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import * as React from "react";
import { RecordOf } from "immutable";
import { WidgetManager } from "./widget-manager";
import BackboneWrapper from "../renderer/backbone-wrapper";
import { connect } from "react-redux";
import {
actions,
KernelNotStartedProps,
LocalKernelProps,
RemoteKernelProps,
ContentRef,
KernelStatus
} from "@nteract/core";
import { CellId } from "@nteract/commutable";
import { WidgetModel } from "@jupyter-widgets/base";
interface ConnectedProps {
modelById: (id: string) => Promise<WidgetModel>;
kernel?:
| RecordOf<KernelNotStartedProps>
| RecordOf<LocalKernelProps>
| RecordOf<RemoteKernelProps>
| null;
}
export interface ManagerActions {
actions: {
appendOutput: (output: any) => void;
clearOutput: () => void;
updateCellStatus: (status: KernelStatus) => void;
promptInputRequest: (prompt: string, password: boolean) => void;
};
}
interface OwnProps {
model: WidgetModel;
model_id: string;
id: CellId;
contentRef: ContentRef;
customWidgetLoader?: (moduleName: string, moduleVersion: string) => Promise<any>;
}
type Props = ConnectedProps & OwnProps & ManagerActions;
/**
* This component is is a wrapper component that initializes a
* WidgetManager singleton and passes a model reference to the
* BackboneModelWrapper. It's doing most of the heavy lifting with
* respect to bridging the kernels comms that the WidgetManager provides,
* our client-side state model, and the view.
*/
class Manager extends React.Component<Props> {
widgetContainerRef = React.createRef<HTMLDivElement>();
static manager: WidgetManager;
constructor(props: Props) {
super(props);
}
/**
* Because the iPyWidgets keeps track of the widgets it creates as a
* member variable, the WidgetManager needs to be treated like a singleton.
* However, we still need to be constantly updating the singleton with the most up
* to date modelById function, otherwise it will be searching a stale state for a
* model
*/
getManager() {
if (Manager.manager === undefined) {
Manager.manager = new WidgetManager(
this.props.kernel,
this.props.modelById,
this.props.actions,
this.props.customWidgetLoader
);
} else {
Manager.manager.update(
this.props.kernel,
this.props.modelById,
this.props.actions
);
}
return Manager.manager;
}
render() {
return (
<React.Fragment>
<BackboneWrapper
model={this.props.model.get("state")}
manager={this.getManager()}
model_id={this.props.model_id}
widgetContainerRef={this.widgetContainerRef}
/>
</React.Fragment>
);
}
}
const mapDispatchToProps = (dispatch: any, props: OwnProps): ManagerActions => {
return {
actions: {
appendOutput: (output: any) =>
dispatch(
actions.appendOutput({
id: props.id,
contentRef: props.contentRef,
output
})
),
clearOutput: () =>
dispatch(
actions.clearOutputs({
id: props.id,
contentRef: props.contentRef
})
),
updateCellStatus: (status: KernelStatus) =>
dispatch(
actions.updateCellStatus({
id: props.id,
contentRef: props.contentRef,
status
})
),
promptInputRequest: (prompt: string, password: boolean) =>
dispatch(
actions.promptInputRequest({
id: props.id,
contentRef: props.contentRef,
prompt,
password
})
)
}
};
};
export default connect(null, mapDispatchToProps)(Manager);