Skip to content

Commit 95138fd

Browse files
authored
DH-12087 Allow better handling when disconnected (#470)
* DH-12087 Allow better handling when disconnected - Instead of immediately adding all objects to disabled objects, just show them as disabled - Connection could still come back, at which items should be enabled again - Instead of calling it `disconnectedChildren`, call it `historyChildren` - Have an explicit `disabled` prop
1 parent 471bb8c commit 95138fd

File tree

6 files changed

+49
-51
lines changed

6 files changed

+49
-51
lines changed

packages/console/src/Console.jsx

+13-40
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,6 @@ export class Console extends PureComponent {
141141
const { props, state } = this;
142142
this.sendSettingsChange(prevState, state);
143143

144-
if (
145-
props.disconnectedChildren != null &&
146-
prevProps.disconnectedChildren == null
147-
) {
148-
this.disconnect();
149-
}
150-
151144
if (props.objectMap !== prevProps.objectMap) {
152145
this.updateObjectMap();
153146
}
@@ -179,27 +172,6 @@ export class Console extends PureComponent {
179172
}
180173
}
181174

182-
disconnect() {
183-
this.setState(({ consoleHistory }) => ({
184-
// Reset any pending commands with an empty result, disable all tables/widgets
185-
consoleHistory: consoleHistory.map(item => {
186-
if (item.result == null) {
187-
return { ...item, endTime: Date.now(), result: {} };
188-
}
189-
const { result } = item;
190-
if (result.changes) {
191-
const disabledItems = []
192-
.concat(result.changes.created)
193-
.concat(result.changes.updated);
194-
return { ...item, disabledItems };
195-
}
196-
return item;
197-
}),
198-
objectHistoryMap: new Map(),
199-
objectMap: new Map(),
200-
}));
201-
}
202-
203175
handleClearShortcut(event) {
204176
event.preventDefault();
205177
event.stopPropagation();
@@ -797,14 +769,15 @@ export class Console extends PureComponent {
797769
render() {
798770
const {
799771
actions,
800-
disconnectedChildren,
772+
historyChildren,
801773
language,
802774
statusBarChildren,
803775
openObject,
804776
session,
805777
scope,
806778
commandHistoryStorage,
807779
timeZone,
780+
disabled,
808781
} = this.props;
809782
const {
810783
consoleHeight,
@@ -819,15 +792,12 @@ export class Console extends PureComponent {
819792
} = this.state;
820793
const consoleMenuObjects = this.getObjects(objectMap);
821794
const inputMaxHeight = Math.round(consoleHeight * 0.7);
822-
const isDisconnected = disconnectedChildren != null;
823795
const contextActions = this.getContextActions(actions);
824796

825797
return (
826798
<div
827799
role="presentation"
828-
className={classNames('iris-console h-100 w-100', {
829-
disconnected: isDisconnected,
830-
})}
800+
className={classNames('iris-console', 'h-100', 'w-100', { disabled })}
831801
>
832802
<div className="console-pane" ref={this.consolePane}>
833803
<ConsoleStatusBar
@@ -844,7 +814,7 @@ export class Console extends PureComponent {
844814
onDragEnter={this.handleDragEnter}
845815
onDragLeave={this.handleDragLeave}
846816
>
847-
{!isDisconnected && showCsvOverlay && (
817+
{showCsvOverlay && (
848818
<CsvOverlay
849819
onFileOpened={this.handleCsvFileOpened}
850820
onPaste={this.handleCsvPaste}
@@ -867,10 +837,10 @@ export class Console extends PureComponent {
867837
openObject={openObject}
868838
language={language}
869839
/>
870-
{isDisconnected && disconnectedChildren}
840+
{historyChildren}
871841
</div>
872842
</div>
873-
{!isDisconnected && !showCsvOverlay && (
843+
{!showCsvOverlay && (
874844
<ConsoleInput
875845
ref={this.consoleInput}
876846
session={session}
@@ -881,7 +851,7 @@ export class Console extends PureComponent {
881851
commandHistoryStorage={commandHistoryStorage}
882852
/>
883853
)}
884-
{!isDisconnected && showCsvOverlay && (
854+
{showCsvOverlay && (
885855
<CsvInputBar
886856
session={session}
887857
onOpenTable={this.handleOpenCsvTable}
@@ -918,11 +888,13 @@ Console.propTypes = {
918888
actions: PropTypes.arrayOf(PropTypes.shape({})),
919889
timeZone: PropTypes.string,
920890

921-
// Message shown when the session has disconnected. Setting this value removes the input bar and disables old tables
922-
disconnectedChildren: PropTypes.node,
891+
// Children shown at the bottom of the console history
892+
historyChildren: PropTypes.node,
923893

924894
// Known object map
925895
objectMap: PropTypes.instanceOf(Map),
896+
897+
disabled: PropTypes.bool,
926898
};
927899

928900
Console.defaultProps = {
@@ -931,9 +903,10 @@ Console.defaultProps = {
931903
onSettingsChange: () => {},
932904
scope: null,
933905
actions: [],
934-
disconnectedChildren: null,
906+
historyChildren: null,
935907
timeZone: 'America/New_York',
936908
objectMap: new Map(),
909+
disabled: false,
937910
};
938911

939912
export default Console;

packages/console/src/ConsoleInput.jsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -420,10 +420,10 @@ export class ConsoleInput extends PureComponent {
420420
}
421421

422422
render() {
423-
const { language, session } = this.props;
423+
const { disabled, language, session } = this.props;
424424
const { commandEditorHeight, isFocused, model } = this.state;
425425
return (
426-
<div className="console-input-wrapper">
426+
<div className={classNames('console-input-wrapper', { disabled })}>
427427
<div
428428
className={classNames('console-input-inner-wrapper', {
429429
focus: isFocused,
@@ -454,11 +454,13 @@ ConsoleInput.propTypes = {
454454
commandHistoryStorage: StoragePropTypes.CommandHistoryStorage.isRequired,
455455
onSubmit: PropTypes.func.isRequired,
456456
maxHeight: PropTypes.number,
457+
disabled: PropTypes.bool,
457458
};
458459

459460
ConsoleInput.defaultProps = {
460461
maxHeight: LINE_HEIGHT * 10,
461462
scope: null,
463+
disabled: false,
462464
};
463465

464466
export default ConsoleInput;

packages/console/src/console-history/ConsoleHistory.jsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ class ConsoleHistory extends Component {
1515
}
1616

1717
render() {
18-
const { items, language, openObject } = this.props;
18+
const { disabled, items, language, openObject } = this.props;
1919
const historyElements = [];
2020
for (let i = 0; i < items.length; i += 1) {
2121
const item = items[i];
2222
const historyElement = (
2323
<ConsoleHistoryItem
2424
key={ConsoleHistory.itemKey(i, item)}
25+
disabled={disabled}
2526
item={item}
2627
openObject={openObject}
2728
language={language}
@@ -40,6 +41,11 @@ ConsoleHistory.propTypes = {
4041
items: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
4142
language: PropTypes.string.isRequired,
4243
openObject: PropTypes.func.isRequired,
44+
disabled: PropTypes.bool,
45+
};
46+
47+
ConsoleHistory.defaultProps = {
48+
disabled: false,
4349
};
4450

4551
export default ConsoleHistory;

packages/console/src/console-history/ConsoleHistoryItem.jsx

+11-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ConsoleHistoryItem extends PureComponent {
3838
}
3939

4040
render() {
41-
const { item, language } = this.props;
41+
const { disabled, item, language } = this.props;
4242
const { disabledObjects, result } = item;
4343

4444
let commandElement = null;
@@ -63,13 +63,14 @@ class ConsoleHistoryItem extends PureComponent {
6363
[...created, ...updated].forEach(object => {
6464
const { name } = object;
6565
const key = `${name}`;
66-
const disabled = (disabledObjects ?? []).indexOf(name) >= 0;
66+
const btnDisabled =
67+
disabled || (disabledObjects ?? []).indexOf(name) >= 0;
6768
const element = (
6869
<ButtonOld
6970
key={key}
7071
onClick={() => this.handleObjectClick(object)}
71-
className="btn-primary btn-console"
72-
disabled={disabled}
72+
className="btn-primary btn-console btn-console-object"
73+
disabled={btnDisabled}
7374
>
7475
<ObjectIcon type={object.type} /> {name}
7576
</ButtonOld>
@@ -106,6 +107,7 @@ class ConsoleHistoryItem extends PureComponent {
106107
<ConsoleHistoryResultInProgress
107108
key="in_progress"
108109
onCancelClick={this.handleCancelClick}
110+
disabled={disabled}
109111
/>
110112
);
111113
resultElements.push(element);
@@ -145,6 +147,11 @@ ConsoleHistoryItem.propTypes = {
145147
}).isRequired,
146148
language: PropTypes.string.isRequired,
147149
openObject: PropTypes.func.isRequired,
150+
disabled: PropTypes.bool,
151+
};
152+
153+
ConsoleHistoryItem.defaultProps = {
154+
disabled: false,
148155
};
149156

150157
export default ConsoleHistoryItem;

packages/console/src/console-history/ConsoleHistoryResultInProgress.jsx

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React, { Component } from 'react';
2+
import classNames from 'classnames';
23
import PropTypes from 'prop-types';
34
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
45
import { LoadingSpinner, Tooltip } from '@deephaven/components';
@@ -42,14 +43,18 @@ class ConsoleHistoryResultInProgress extends Component {
4243
}
4344

4445
render() {
46+
const { disabled, onCancelClick } = this.props;
4547
const { elapsed } = this.state;
46-
const { onCancelClick } = this.props;
4748
return (
48-
<div className="console-history-result-in-progress">
49+
<div
50+
className={classNames('console-history-result-in-progress', {
51+
disabled,
52+
})}
53+
>
4954
<span className="badge">
5055
<LoadingSpinner />
5156
&nbsp;Running... {TimeUtils.formatElapsedTime(elapsed)}&nbsp;
52-
<button type="button" onClick={onCancelClick}>
57+
<button type="button" onClick={onCancelClick} disabled={disabled}>
5358
<FontAwesomeIcon icon={vsClose} />
5459
<Tooltip>Cancel</Tooltip>
5560
</button>
@@ -61,6 +66,11 @@ class ConsoleHistoryResultInProgress extends Component {
6166

6267
ConsoleHistoryResultInProgress.propTypes = {
6368
onCancelClick: PropTypes.func.isRequired,
69+
disabled: PropTypes.bool,
70+
};
71+
72+
ConsoleHistoryResultInProgress.defaultProps = {
73+
disabled: false,
6474
};
6575

6676
export default ConsoleHistoryResultInProgress;

packages/console/src/csv/CsvInputBar.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class CsvInputBar extends Component {
252252
// A blank table name is invalid for pasted values
253253
const isNameInvalid = paste && !tableName;
254254
return (
255-
<div>
255+
<div className="csv-input-bar">
256256
{!showProgress && (
257257
<form
258258
onSubmit={this.handleUpload}

0 commit comments

Comments
 (0)