-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathTreeContainer.js
397 lines (361 loc) · 11.7 KB
/
TreeContainer.js
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import React, {Component, memo} from 'react';
import PropTypes from 'prop-types';
import Registry from './registry';
import {propTypeErrorHandler} from './exceptions';
import {
addIndex,
assoc,
assocPath,
concat,
dissoc,
equals,
isEmpty,
isNil,
has,
keys,
map,
mergeRight,
pick,
pickBy,
propOr,
path as rpath,
pathOr,
type
} from 'ramda';
import {notifyObservers, updateProps} from './actions';
import isSimpleComponent from './isSimpleComponent';
import {recordUiEdit} from './persistence';
import ComponentErrorBoundary from './components/error/ComponentErrorBoundary.react';
import checkPropTypes from './checkPropTypes';
import {getWatchedKeys, stringifyId} from './actions/dependencies';
import {
getLoadingHash,
getLoadingState,
validateComponent
} from './utils/TreeContainer';
import {DashContext} from './APIController.react';
const NOT_LOADING = {
is_loading: false
};
function CheckedComponent(p) {
const {element, extraProps, props, children, type} = p;
const errorMessage = checkPropTypes(
element.propTypes,
props,
'component prop',
element
);
if (errorMessage) {
propTypeErrorHandler(errorMessage, props, type);
}
return createElement(element, props, extraProps, children);
}
CheckedComponent.propTypes = {
children: PropTypes.any,
element: PropTypes.any,
layout: PropTypes.any,
props: PropTypes.any,
extraProps: PropTypes.any,
id: PropTypes.string
};
function createElement(element, props, extraProps, children) {
const allProps = mergeRight(props, extraProps);
if (Array.isArray(children)) {
return React.createElement(element, allProps, ...children);
}
return React.createElement(element, allProps, children);
}
function isDryComponent(obj) {
return (
type(obj) === 'Object' &&
has('type', obj) &&
has('namespace', obj) &&
has('props', obj)
);
}
const TreeContainer = memo(props => (
<DashContext.Consumer>
{context => (
<BaseTreeContainer
{...context.fn()}
{...props}
_dashprivate_path={JSON.parse(props._dashprivate_path)}
/>
)}
</DashContext.Consumer>
));
class BaseTreeContainer extends Component {
constructor(props) {
super(props);
this.setProps = this.setProps.bind(this);
}
createContainer(props, component, path) {
return isSimpleComponent(component) ? (
component
) : (
<TreeContainer
key={
component &&
component.props &&
stringifyId(component.props.id)
}
_dashprivate_error={props._dashprivate_error}
_dashprivate_layout={component}
_dashprivate_loadingState={getLoadingState(
component,
path,
props._dashprivate_loadingMap
)}
_dashprivate_loadingStateHash={getLoadingHash(
path,
props._dashprivate_loadingMap
)}
_dashprivate_path={JSON.stringify(path)}
/>
);
}
setProps(newProps) {
const {
_dashprivate_graphs,
_dashprivate_dispatch,
_dashprivate_path,
_dashprivate_layout
} = this.props;
const oldProps = this.getLayoutProps();
const {id} = oldProps;
const changedProps = pickBy(
(val, key) => !equals(val, oldProps[key]),
newProps
);
if (!isEmpty(changedProps)) {
// Identify the modified props that are required for callbacks
const watchedKeys = getWatchedKeys(
id,
keys(changedProps),
_dashprivate_graphs
);
// setProps here is triggered by the UI - record these changes
// for persistence
recordUiEdit(_dashprivate_layout, newProps, _dashprivate_dispatch);
// Only dispatch changes to Dash if a watched prop changed
if (watchedKeys.length) {
_dashprivate_dispatch(
notifyObservers({
id,
props: pick(watchedKeys, changedProps)
})
);
}
// Always update this component's props
_dashprivate_dispatch(
updateProps({
props: changedProps,
itempath: _dashprivate_path
})
);
}
}
getChildren(components, path) {
if (isNil(components)) {
return null;
}
return Array.isArray(components)
? addIndex(map)(
(component, i) =>
this.createContainer(
this.props,
component,
concat(path, ['props', 'children', i])
),
components
)
: this.createContainer(
this.props,
components,
concat(path, ['props', 'children'])
);
}
wrapChildrenProp(node, childrenProp) {
if (Array.isArray(node)) {
return node.map((n, i) =>
isDryComponent(n)
? this.createContainer(
this.props,
n,
concat(this.props._dashprivate_path, [
'props',
...childrenProp,
i
])
)
: n
);
}
if (!isDryComponent(node)) {
return node;
}
return this.createContainer(
this.props,
node,
concat(this.props._dashprivate_path, ['props', ...childrenProp])
);
}
getComponent(_dashprivate_layout, children, loading_state, setProps) {
const {_dashprivate_config, _dashprivate_dispatch, _dashprivate_error} =
this.props;
if (isEmpty(_dashprivate_layout)) {
return null;
}
if (isSimpleComponent(_dashprivate_layout)) {
return _dashprivate_layout;
}
validateComponent(_dashprivate_layout);
const element = Registry.resolve(_dashprivate_layout);
// Hydrate components props
const childrenProps = pathOr(
[],
[
'children_props',
_dashprivate_layout.namespace,
_dashprivate_layout.type
],
_dashprivate_config
);
let props = dissoc('children', _dashprivate_layout.props);
for (let i = 0; i < childrenProps.length; i++) {
const childrenProp = childrenProps[i];
if (childrenProp.includes('.')) {
let path = childrenProp.split('.');
let node;
let nodeValue;
if (childrenProp.includes('[]')) {
let frontPath = [],
backPath = [],
found = false;
path.forEach(p => {
if (!found) {
if (p.includes('[]')) {
found = true;
frontPath.push(p.replace('[]', ''));
} else {
frontPath.push(p);
}
} else {
backPath.push(p);
}
});
node = rpath(frontPath, props);
if (node === undefined || !node.length) {
continue;
}
const firstNode = rpath(backPath, node[0]);
if (!firstNode) {
continue;
}
nodeValue = node.map((element, i) => {
const elementPath = concat(
frontPath,
concat([i], backPath)
);
return assocPath(
backPath,
this.wrapChildrenProp(
rpath(backPath, element),
elementPath
),
element
);
});
path = frontPath;
} else {
node = rpath(path, props);
if (node === undefined) {
continue;
}
nodeValue = this.wrapChildrenProp(node, path);
}
props = assocPath(path, nodeValue, props);
continue;
}
const node = props[childrenProp];
if (node !== undefined) {
props = assoc(
childrenProp,
this.wrapChildrenProp(node, [childrenProp]),
props
);
}
}
if (type(props.id) === 'Object') {
// Turn object ids (for wildcards) into unique strings.
// Because of the `dissoc` above we're not mutating the layout,
// just the id we pass on to the rendered component
props.id = stringifyId(props.id);
}
const extraProps = {
loading_state: loading_state || NOT_LOADING,
setProps
};
return (
<ComponentErrorBoundary
componentType={_dashprivate_layout.type}
componentId={props.id}
key={props.id}
dispatch={_dashprivate_dispatch}
error={_dashprivate_error}
>
{_dashprivate_config.props_check ? (
<CheckedComponent
children={children}
element={element}
props={props}
extraProps={extraProps}
type={_dashprivate_layout.type}
/>
) : (
createElement(element, props, extraProps, children)
)}
</ComponentErrorBoundary>
);
}
getLayoutProps() {
return propOr({}, 'props', this.props._dashprivate_layout);
}
render() {
const {
_dashprivate_layout,
_dashprivate_loadingState,
_dashprivate_path
} = this.props;
const layoutProps = this.getLayoutProps();
const children = this.getChildren(
layoutProps.children,
_dashprivate_path
);
return this.getComponent(
_dashprivate_layout,
children,
_dashprivate_loadingState,
this.setProps
);
}
}
TreeContainer.propTypes = {
_dashprivate_error: PropTypes.any,
_dashprivate_layout: PropTypes.object,
_dashprivate_loadingState: PropTypes.oneOfType([
PropTypes.object,
PropTypes.bool
]),
_dashprivate_loadingStateHash: PropTypes.string,
_dashprivate_path: PropTypes.string
};
BaseTreeContainer.propTypes = {
...TreeContainer.propTypes,
_dashprivate_config: PropTypes.object,
_dashprivate_dispatch: PropTypes.func,
_dashprivate_graphs: PropTypes.any,
_dashprivate_loadingMap: PropTypes.any,
_dashprivate_path: PropTypes.array
};
export default TreeContainer;