5
5
jpTreeItem
6
6
} from '@jupyter/web-components' ;
7
7
8
+ import { Signal } from '@lumino/signaling' ;
9
+
8
10
import { INotebookTracker } from '@jupyterlab/notebook' ;
9
11
10
12
import { fileIcon , folderIcon } from '@jupyterlab/ui-components' ;
@@ -20,27 +22,18 @@ export class FssTreeItem {
20
22
sizeLbl : HTMLElement ;
21
23
dirSymbol : HTMLElement ;
22
24
container : HTMLElement ;
23
- clickSlots : any ;
24
- getBytesSlots : any ;
25
- uploadUserDataSlots : any ;
26
- uploadFromBrowserPickerSlots : any ;
27
- uploadFromJupyterBrowserSlots : any ;
28
25
isDir = false ;
29
26
treeItemObserver : MutationObserver ;
30
27
pendingExpandAction = false ;
31
28
lazyLoadAutoExpand = true ;
32
29
clickAnywhereDoesAutoExpand = true ;
33
30
notebookTracker : INotebookTracker ;
31
+ treeItemClicked : Signal < any , string > ;
32
+ getBytesRequested : Signal < any , string > ;
33
+ uploadRequested : Signal < any , any > ; // All upload requests go here (kernel user_data, browser picker etc.)
34
34
35
35
constructor (
36
36
model : any ,
37
- clickSlots : any ,
38
- userGetBytesSlots : any ,
39
- uploadUserDataSlots : any ,
40
-
41
- uploadFromBrowserPickerSlots : any ,
42
- uploadFromJupyterBrowserSlots : any ,
43
-
44
37
autoExpand : boolean ,
45
38
expandOnClickAnywhere : boolean ,
46
39
notebookTracker : INotebookTracker
@@ -56,14 +49,12 @@ export class FssTreeItem {
56
49
root . setAttribute ( 'name' , 'jfss-treeitem-root' ) ;
57
50
this . root = root ;
58
51
this . model = model ;
59
- this . clickSlots = clickSlots ;
60
- this . getBytesSlots = userGetBytesSlots ; // TODO fix its horrible
61
- this . uploadUserDataSlots = uploadUserDataSlots ;
62
- this . uploadFromBrowserPickerSlots = uploadFromBrowserPickerSlots ;
63
- this . uploadFromJupyterBrowserSlots = uploadFromJupyterBrowserSlots ;
64
52
this . lazyLoadAutoExpand = autoExpand ;
65
53
this . clickAnywhereDoesAutoExpand = expandOnClickAnywhere ;
66
54
this . notebookTracker = notebookTracker ;
55
+ this . treeItemClicked = new Signal < this, string > ( this ) ;
56
+ this . getBytesRequested = new Signal < this, string > ( this ) ;
57
+ this . uploadRequested = new Signal < this, any > ( this ) ;
67
58
68
59
// Use a MutationObserver on the root TreeItem's shadow DOM,
69
60
// where the TreeItem's expand/collapse control will live once
@@ -119,30 +110,12 @@ export class FssTreeItem {
119
110
120
111
handleRequestBytes ( ) {
121
112
Logger . debug ( 'Treeitem get bytes' ) ;
122
- for ( const slot of this . getBytesSlots ) {
123
- Logger . debug ( slot ) ;
124
- slot ( this . root . dataset . fss ) ;
125
- }
126
- }
127
-
128
- async handleUploadFromBrowserPicker ( options : any ) {
129
- this . model . queuedPickerUploadInfo = { } ; // Context click always resets this data
130
- Logger . debug ( 'Treeitem upload user data' ) ;
131
- for ( const slot of this . uploadFromBrowserPickerSlots ) {
132
- Logger . debug ( slot ) ;
133
- await slot ( this . root . dataset . fss , this . isDir ) ;
134
- }
113
+ this . getBytesRequested . emit ( this . root . dataset . fss ) ;
135
114
}
136
115
137
- async handleUploadFromJupyterBrowser ( options : any ) {
138
- Logger . debug ( 'Treeitem upload user data' ) ;
139
- for ( const slot of this . uploadFromJupyterBrowserSlots ) {
140
- Logger . debug ( slot ) ;
141
- await slot ( this . root . dataset . fss , this . isDir ) ;
142
- }
143
- }
144
-
145
- async handleUploadUserData ( options : any ) {
116
+ async handleUploadRequest ( options : any ) {
117
+ // Uploads can come from different places, gather info and emit it here
118
+ // (so that connected slots can route the request to the right place)
146
119
let is_browser_file_picker = false ;
147
120
let is_jup_browser_file = false ;
148
121
if ( options ) {
@@ -151,15 +124,12 @@ export class FssTreeItem {
151
124
this . model . queuedPickerUploadInfo = { } ; // Context click always resets this data
152
125
}
153
126
Logger . debug ( 'Treeitem upload user data' ) ;
154
- for ( const slot of this . uploadUserDataSlots ) {
155
- Logger . debug ( slot ) ;
156
- await slot (
157
- this . root . dataset . fss ,
158
- this . isDir ,
159
- is_browser_file_picker ,
160
- is_jup_browser_file
161
- ) ;
162
- }
127
+ this . uploadRequested . emit ( {
128
+ user_path : this . root . dataset . fss ,
129
+ is_dir : this . isDir ,
130
+ is_browser_file_picker : is_browser_file_picker ,
131
+ is_jup_browser_file : is_jup_browser_file
132
+ } ) ;
163
133
}
164
134
165
135
setMetadata ( user_path : string , size : string ) {
@@ -250,9 +220,7 @@ export class FssTreeItem {
250
220
}
251
221
// Fire connected slots that were supplied to this item on init
252
222
if ( this . isDir ) {
253
- for ( const slot of this . clickSlots ) {
254
- slot ( this . root . dataset . fss ) ;
255
- }
223
+ this . treeItemClicked . emit ( this . root . dataset . fss ) ;
256
224
} else {
257
225
this . root . click ( ) ;
258
226
}
0 commit comments