forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsolePanel.tsx
More file actions
479 lines (417 loc) · 13.4 KB
/
ConsolePanel.tsx
File metadata and controls
479 lines (417 loc) · 13.4 KB
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// Wrapper for the Console for use in a golden layout container
// Will probably need to handle window popping out from golden layout here.
import React, { PureComponent, type ReactElement, type RefObject } from 'react';
import { nanoid } from 'nanoid';
import debounce from 'lodash.debounce';
import { connect } from 'react-redux';
import { LoadingOverlay } from '@deephaven/components';
import {
type CommandHistoryStorage,
Console,
ConsoleConstants,
HeapUsage,
ObjectIcon,
} from '@deephaven/console';
import {
type DashboardPanelProps,
emitCloseDashboard,
emitPanelOpen,
LayoutManagerContext,
LayoutUtils,
PanelEvent,
} from '@deephaven/dashboard';
import type { dh } from '@deephaven/jsapi-types';
import { getVariableDescriptor } from '@deephaven/jsapi-bootstrap';
import { type SessionWrapper } from '@deephaven/jsapi-utils';
import Log from '@deephaven/log';
import {
getCommandHistoryStorage,
getPlugins,
getTimeZone,
type RootState,
} from '@deephaven/redux';
import { assertNotNull } from '@deephaven/utils';
import {
getIconForPlugin,
pluginSupportsType,
type PluginModuleMap,
} from '@deephaven/plugin';
import type { JSZipObject } from 'jszip';
import { ConsoleEvent } from '../events';
import Panel from './CorePanel';
import { getDashboardSessionWrapper } from '../redux';
import './ConsolePanel.scss';
const log = Log.module('ConsolePanel');
const DEBOUNCE_PANEL_STATE_UPDATE = 500;
const DEFAULT_PANEL_STATE = Object.freeze({
consoleSettings: {},
itemIds: [],
});
interface ConsoleSettings {
isClosePanelsOnDisconnectEnabled?: boolean;
}
interface PanelState {
consoleSettings: ConsoleSettings;
itemIds: [string, string][];
}
type ItemIds = Map<string, string>;
interface ConsolePanelProps extends DashboardPanelProps {
commandHistoryStorage: CommandHistoryStorage;
panelState?: PanelState;
sessionWrapper?: SessionWrapper;
timeZone: string;
unzip?: (file: File) => Promise<JSZipObject[]>;
plugins: PluginModuleMap;
}
interface ConsolePanelState {
consoleSettings: ConsoleSettings;
itemIds: ItemIds;
objectMap: Map<string, dh.ide.VariableDefinition>;
// eslint-disable-next-line react/no-unused-state
panelState: PanelState;
error: unknown;
}
export class ConsolePanel extends PureComponent<
ConsolePanelProps,
ConsolePanelState
> {
static COMPONENT = 'ConsolePanel';
static TITLE = 'Console';
static contextType = LayoutManagerContext;
constructor(props: ConsolePanelProps) {
super(props);
this.handleFocusCommandHistory = this.handleFocusCommandHistory.bind(this);
this.handleOpenObject = this.handleOpenObject.bind(this);
this.handleCloseObject = this.handleCloseObject.bind(this);
this.handleResize = this.handleResize.bind(this);
this.handleSettingsChange = this.handleSettingsChange.bind(this);
this.handleShow = this.handleShow.bind(this);
this.handlePanelMount = this.handlePanelMount.bind(this);
this.supportsType = this.supportsType.bind(this);
this.iconForType = this.iconForType.bind(this);
this.consoleRef = React.createRef();
const { panelState: initialPanelState } = props;
const panelState = {
...DEFAULT_PANEL_STATE,
...(initialPanelState || {}),
};
const { consoleSettings, itemIds } = panelState;
this.state = {
consoleSettings,
itemIds: new Map(itemIds),
objectMap: new Map(),
error: undefined,
// eslint-disable-next-line react/no-unused-state
panelState, // Dehydrated panel state that can load this panel
};
}
componentDidMount(): void {
const { glEventHub } = this.props;
// Need to close the disconnected panels when we're first loaded,
// as they may have been saved with the dashboard
this.closeDisconnectedPanels();
glEventHub.on(PanelEvent.MOUNT, this.handlePanelMount);
this.subscribeToFieldUpdates();
}
componentDidUpdate(
prevProps: ConsolePanelProps,
prevState: ConsolePanelState
): void {
const { consoleSettings, itemIds } = this.state;
if (
prevState.consoleSettings !== consoleSettings ||
prevState.itemIds !== itemIds
) {
this.savePanelState();
}
}
componentWillUnmount(): void {
const { glEventHub } = this.props;
this.savePanelState.flush();
glEventHub.off(PanelEvent.MOUNT, this.handlePanelMount);
this.objectSubscriptionCleanup?.();
}
consoleRef: RefObject<Console>;
objectSubscriptionCleanup?: () => void;
subscribeToFieldUpdates(): void {
const { sessionWrapper } = this.props;
if (sessionWrapper == null) {
return;
}
const { session } = sessionWrapper;
this.objectSubscriptionCleanup = session.subscribeToFieldUpdates(
updates => {
log.debug('Got updates', updates);
this.setState(({ objectMap }) => {
const { updated, created, removed } = updates;
// Remove from the array if it's been removed OR modified. We'll add it back after if it was modified.
const objectsToRemove = [...updated, ...removed];
const newObjectMap = new Map(objectMap);
objectsToRemove.forEach(toRemove => {
const { title } = toRemove;
if (title !== undefined) {
newObjectMap.delete(title);
}
});
// Now add all the modified and updated widgets back in
const objectsToAdd = [...updated, ...created];
objectsToAdd.forEach(toAdd => {
if (toAdd.title !== undefined) {
newObjectMap.set(toAdd.title, toAdd);
}
});
return { objectMap: newObjectMap };
});
}
);
}
setItemId(name: string, id: string): void {
this.setState(({ itemIds }) => {
const newItemIds = new Map(itemIds);
newItemIds.set(name, id);
return { itemIds: newItemIds };
});
}
getItemId(name: string, createIfNecessary = true): string | undefined {
const { itemIds } = this.state;
let id = itemIds.get(name);
if (id == null && createIfNecessary) {
id = nanoid();
this.setItemId(name, id);
}
return id;
}
handleTabFocus(): void {
this.consoleRef.current?.focus();
}
handlePanelMount(panel: {
props: { id: string; metadata: { sourcePanelId: string } };
}): void {
const { itemIds } = this.state;
const panelId = panel?.props?.id;
const sourceId = panel?.props?.metadata?.sourcePanelId;
if (panelId && sourceId) {
// Check if the panel was created from a panel in this console
const pandelIds = new Set(itemIds.values());
if (pandelIds.has(sourceId)) {
// The Chart Panel does not have name so map panelId to panelId
this.setItemId(panelId, panelId);
}
}
}
handleFocusCommandHistory(): void {
const { glEventHub } = this.props;
glEventHub.emit(ConsoleEvent.FOCUS_HISTORY);
}
handleResize(): void {
this.updateDimensions();
}
handleShow(): void {
this.updateDimensions();
}
handleOpenObject(
object: dh.ide.VariableDescriptor & { title?: string },
forceOpen = true
): void {
const { root } = this.context;
const oldPanelId =
object.title != null ? this.getItemId(object.title, false) : null;
if (
forceOpen ||
(oldPanelId != null &&
LayoutUtils.getStackForRoot(
root,
{ id: oldPanelId },
false,
false,
false
) != null)
) {
this.openWidget(object);
}
}
handleCloseObject(object: dh.ide.VariableDefinition): void {
const { title } = object;
if (title !== undefined) {
const id = this.getItemId(title, false);
if (id != null) {
const { glEventHub } = this.props;
glEventHub.emit(PanelEvent.CLOSE, id);
// Just emit for all panels since there shouldn't be dashboard and panel name conflicts
emitCloseDashboard(glEventHub, title);
}
}
}
handleSettingsChange(consoleSettings: Record<string, unknown>): void {
const { glEventHub } = this.props;
log.debug('handleSettingsChange', consoleSettings);
this.setState({
consoleSettings,
});
glEventHub.emit(ConsoleEvent.SETTINGS_CHANGED, consoleSettings);
}
/**
* @param widget The widget to open
*/
openWidget(widget: dh.ide.VariableDescriptor & { title?: string }): void {
const { glEventHub, sessionWrapper } = this.props;
assertNotNull(sessionWrapper);
const { config, session } = sessionWrapper;
const { title = widget.name } = widget;
assertNotNull(title);
const panelId = this.getItemId(title);
const openOptions = {
fetch: () => session.getObject(widget),
panelId,
widget: {
...getVariableDescriptor(widget),
sessionId: config.id,
},
};
log.debug('openWidget', openOptions);
emitPanelOpen(glEventHub, openOptions);
}
addCommand(command: string, focus = true, execute = false): void {
this.consoleRef.current?.addCommand(command, focus, execute);
}
/**
* Close the disconnected panels from this session
* @param force True to force the panels closed regardless of the current setting
*/
closeDisconnectedPanels(force = false): void {
const { consoleSettings, itemIds } = this.state;
const { isClosePanelsOnDisconnectEnabled = true } = consoleSettings;
if (!isClosePanelsOnDisconnectEnabled && !force) {
return;
}
const panelIdsToClose = [...itemIds.values()];
const { glEventHub } = this.props;
panelIdsToClose.forEach(panelId => {
glEventHub.emit(PanelEvent.CLOSE, panelId);
});
this.setState({ itemIds: new Map() });
}
savePanelState = debounce((): void => {
const { consoleSettings, itemIds } = this.state;
const panelState = {
consoleSettings,
itemIds: [...itemIds],
};
log.debug('Saving panel state', panelState);
// eslint-disable-next-line react/no-unused-state
this.setState({ panelState });
}, DEBOUNCE_PANEL_STATE_UPDATE);
updateDimensions(): void {
this.consoleRef.current?.updateDimensions();
}
supportsType(type: string): boolean {
const { plugins } = this.props;
return [...plugins.values()].some(plugin =>
pluginSupportsType(plugin, type)
);
}
iconForType(type: string): JSX.Element {
const { plugins } = this.props;
const plugin = [...plugins.values()].find(p => pluginSupportsType(p, type));
if (plugin != null) {
return getIconForPlugin(plugin);
}
// TODO: #1573 Remove this default and always return getIconForPlugin
return <ObjectIcon type={type} />;
}
render(): ReactElement | null {
const {
commandHistoryStorage,
glContainer,
glEventHub,
sessionWrapper,
timeZone,
unzip,
} = this.props;
if (sessionWrapper == null) {
return (
<LoadingOverlay isLoading={false} errorMessage="Console is disabled." />
);
}
const { consoleSettings, error, objectMap } = this.state;
const { config, session, connection, details = {}, dh } = sessionWrapper;
const { workerName, processInfoId } = details;
const { id: sessionId, type: language } = config;
return (
<Panel
className="iris-panel-console"
componentPanel={this}
glContainer={glContainer}
glEventHub={glEventHub}
onResize={this.handleResize}
onShow={this.handleShow}
onTabFocus={this.handleTabFocus}
errorMessage={error != null ? `${error}` : undefined}
>
{session != null && (
<Console
dh={dh}
ref={this.consoleRef}
settings={consoleSettings}
session={session}
focusCommandHistory={this.handleFocusCommandHistory}
openObject={this.handleOpenObject}
closeObject={this.handleCloseObject}
commandHistoryStorage={commandHistoryStorage}
onSettingsChange={this.handleSettingsChange}
language={language}
statusBarChildren={
<>
<div>{ConsoleConstants.LANGUAGE_MAP.get(language)}</div>
{workerName != null && (
<>
<div>•</div>
{workerName}
</>
)}
{processInfoId != null && (
<>
<div>•</div>
{processInfoId}
<div>•</div>
</>
)}
<HeapUsage
connection={connection}
defaultUpdateInterval={10 * 1000}
hoverUpdateInterval={3 * 1000}
monitorDuration={10 * 60 * 1000}
/>
</>
}
showObjectsMenu={false}
scope={sessionId}
timeZone={timeZone}
objectMap={objectMap}
unzip={unzip}
supportsType={this.supportsType}
iconForType={this.iconForType}
/>
)}
</Panel>
);
}
}
const mapStateToProps = (
state: RootState,
ownProps: { localDashboardId: string }
): Pick<
ConsolePanelProps,
'commandHistoryStorage' | 'sessionWrapper' | 'timeZone' | 'plugins'
> => ({
commandHistoryStorage: getCommandHistoryStorage(
state
) as CommandHistoryStorage,
sessionWrapper: getDashboardSessionWrapper(state, ownProps.localDashboardId),
timeZone: getTimeZone(state),
plugins: getPlugins(state),
});
const ConnectedConsolePanel = connect(mapStateToProps, null, null, {
forwardRef: true,
})(ConsolePanel);
export default ConnectedConsolePanel;