@@ -141,13 +141,6 @@ export class Console extends PureComponent {
141
141
const { props, state } = this ;
142
142
this . sendSettingsChange ( prevState , state ) ;
143
143
144
- if (
145
- props . disconnectedChildren != null &&
146
- prevProps . disconnectedChildren == null
147
- ) {
148
- this . disconnect ( ) ;
149
- }
150
-
151
144
if ( props . objectMap !== prevProps . objectMap ) {
152
145
this . updateObjectMap ( ) ;
153
146
}
@@ -179,27 +172,6 @@ export class Console extends PureComponent {
179
172
}
180
173
}
181
174
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
-
203
175
handleClearShortcut ( event ) {
204
176
event . preventDefault ( ) ;
205
177
event . stopPropagation ( ) ;
@@ -797,14 +769,15 @@ export class Console extends PureComponent {
797
769
render ( ) {
798
770
const {
799
771
actions,
800
- disconnectedChildren ,
772
+ historyChildren ,
801
773
language,
802
774
statusBarChildren,
803
775
openObject,
804
776
session,
805
777
scope,
806
778
commandHistoryStorage,
807
779
timeZone,
780
+ disabled,
808
781
} = this . props ;
809
782
const {
810
783
consoleHeight,
@@ -819,15 +792,12 @@ export class Console extends PureComponent {
819
792
} = this . state ;
820
793
const consoleMenuObjects = this . getObjects ( objectMap ) ;
821
794
const inputMaxHeight = Math . round ( consoleHeight * 0.7 ) ;
822
- const isDisconnected = disconnectedChildren != null ;
823
795
const contextActions = this . getContextActions ( actions ) ;
824
796
825
797
return (
826
798
< div
827
799
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 } ) }
831
801
>
832
802
< div className = "console-pane" ref = { this . consolePane } >
833
803
< ConsoleStatusBar
@@ -844,7 +814,7 @@ export class Console extends PureComponent {
844
814
onDragEnter = { this . handleDragEnter }
845
815
onDragLeave = { this . handleDragLeave }
846
816
>
847
- { ! isDisconnected && showCsvOverlay && (
817
+ { showCsvOverlay && (
848
818
< CsvOverlay
849
819
onFileOpened = { this . handleCsvFileOpened }
850
820
onPaste = { this . handleCsvPaste }
@@ -867,10 +837,10 @@ export class Console extends PureComponent {
867
837
openObject = { openObject }
868
838
language = { language }
869
839
/>
870
- { isDisconnected && disconnectedChildren }
840
+ { historyChildren }
871
841
</ div >
872
842
</ div >
873
- { ! isDisconnected && ! showCsvOverlay && (
843
+ { ! showCsvOverlay && (
874
844
< ConsoleInput
875
845
ref = { this . consoleInput }
876
846
session = { session }
@@ -881,7 +851,7 @@ export class Console extends PureComponent {
881
851
commandHistoryStorage = { commandHistoryStorage }
882
852
/>
883
853
) }
884
- { ! isDisconnected && showCsvOverlay && (
854
+ { showCsvOverlay && (
885
855
< CsvInputBar
886
856
session = { session }
887
857
onOpenTable = { this . handleOpenCsvTable }
@@ -918,11 +888,13 @@ Console.propTypes = {
918
888
actions : PropTypes . arrayOf ( PropTypes . shape ( { } ) ) ,
919
889
timeZone : PropTypes . string ,
920
890
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 ,
923
893
924
894
// Known object map
925
895
objectMap : PropTypes . instanceOf ( Map ) ,
896
+
897
+ disabled : PropTypes . bool ,
926
898
} ;
927
899
928
900
Console . defaultProps = {
@@ -931,9 +903,10 @@ Console.defaultProps = {
931
903
onSettingsChange : ( ) => { } ,
932
904
scope : null ,
933
905
actions : [ ] ,
934
- disconnectedChildren : null ,
906
+ historyChildren : null ,
935
907
timeZone : 'America/New_York' ,
936
908
objectMap : new Map ( ) ,
909
+ disabled : false ,
937
910
} ;
938
911
939
912
export default Console ;
0 commit comments