1
1
// Right-click/context menu for file items
2
2
import { INotebookTracker } from '@jupyterlab/notebook' ;
3
+ import { Logger } from './logger' ;
3
4
4
5
export class FssFilesysContextMenu {
5
6
root : any ;
6
7
clicked = false ;
7
8
parentControl : any = null ;
8
9
model : any ;
9
10
notebookTracker : any ;
11
+ private readonly logger : Logger ;
10
12
11
13
constructor ( model : any , notebookTracker : INotebookTracker ) {
14
+ this . logger = Logger . getLogger ( 'FssFilesysContextMenu' ) ;
15
+
12
16
const root = document . createElement ( 'div' ) ;
13
17
root . classList . add ( 'jfss-tree-context-menu' ) ;
14
18
this . root = root ;
@@ -28,6 +32,7 @@ export class FssFilesysContextMenu {
28
32
}
29
33
30
34
root . addEventListener ( 'mouseleave' , this . handleMouseExit . bind ( this ) , false ) ;
35
+ this . logger . debug ( 'Context menu initialized' ) ;
31
36
}
32
37
33
38
createMenuItem ( text : string , cssClass : string , contextType : string ) {
@@ -41,6 +46,7 @@ export class FssFilesysContextMenu {
41
46
menuItem . addEventListener ( 'mouseleave' , this . handleItemUnhover . bind ( this ) ) ;
42
47
43
48
this . root . appendChild ( menuItem ) ;
49
+ this . logger . debug ( 'Created menu item' , { text, contextType } ) ;
44
50
45
51
return menuItem ;
46
52
}
@@ -54,7 +60,14 @@ export class FssFilesysContextMenu {
54
60
if ( protocol ) {
55
61
const canonical =
56
62
protocol + '/' + this . root . dataset . fss . replace ( / ^ \/ + / , ( ) => '' ) ;
63
+ this . logger . debug ( 'Generated path' , { path : canonical } ) ;
57
64
return canonical ;
65
+ } else {
66
+ this . logger . warn ( 'Failed to generate path' , {
67
+ reason : 'No protocol found' ,
68
+ info : info
69
+ } ) ;
70
+ return undefined ;
58
71
}
59
72
}
60
73
@@ -65,14 +78,20 @@ export class FssFilesysContextMenu {
65
78
navigator . clipboard . writeText ( path ) . then (
66
79
( ) => {
67
80
// Success
68
- console . log ( 'Copy path: ' + path ) ;
81
+ this . logger . info ( 'Path copied to clipboard' , { path } ) ;
69
82
this . root . remove ( ) ;
70
83
} ,
71
- ( ) => {
72
- console . log ( 'Copy path failed: ' + path ) ;
84
+ error => {
85
+ this . logger . error ( 'Failed to copy path to clipboard' , {
86
+ path,
87
+ error
88
+ } ) ;
73
89
this . root . remove ( ) ;
74
90
}
75
91
) ;
92
+ } else {
93
+ this . logger . error ( 'Cannot copy path' , { reason : 'path is undefined' } ) ;
94
+ this . root . remove ( ) ;
76
95
}
77
96
}
78
97
@@ -85,36 +104,60 @@ export class FssFilesysContextMenu {
85
104
const cellContent = activeCell . model . sharedModel . getSource ( ) ;
86
105
const newCellContent = cellContent + '\n' + codeBlock ;
87
106
activeCell . model . sharedModel . setSource ( newCellContent ) ;
88
- console . log ( 'Updated cell content to: ' , newCellContent ) ;
107
+ this . logger . debug ( 'Updated cell content' , {
108
+ oldLength : cellContent . length ,
109
+ newLength : newCellContent . length ,
110
+ notebookType : notebookPanel . content . model . type
111
+ } ) ;
112
+ } else {
113
+ this . logger . warn ( 'No active cell found in notebook' , {
114
+ notebookId : notebookPanel . id
115
+ } ) ;
89
116
}
117
+ } else {
118
+ this . logger . warn ( 'No active notebook found' ) ;
90
119
}
91
120
}
121
+
92
122
copyOpenCodeBlock ( ) {
93
123
const path = this . copyPath ( ) ;
94
124
95
125
if ( path ) {
96
126
const openCodeBlock = `with fsspec.open("${ path } ", "rb") as f:\n ...` ;
97
127
navigator . clipboard . writeText ( openCodeBlock ) . then (
98
128
( ) => {
99
- console . log ( 'Copied `open` code block' ) ;
100
- console . log ( openCodeBlock ) ;
129
+ this . logger . info ( 'Copied code snippet to clipboard' , {
130
+ operation : 'open' ,
131
+ path
132
+ } ) ;
133
+ this . logger . debug ( 'Code block content' , { content : openCodeBlock } ) ;
101
134
this . root . remove ( ) ;
102
135
} ,
103
- ( ) => {
104
- console . log ( 'Failed to copy `open` code block' ) ;
136
+ error => {
137
+ this . logger . error ( 'Failed to copy code snippet to clipboard' , {
138
+ operation : 'open' ,
139
+ path,
140
+ error
141
+ } ) ;
105
142
this . root . remove ( ) ;
106
143
}
107
144
) ;
108
145
109
146
this . insertCodeBlock ( openCodeBlock ) ;
110
147
} else {
111
- console . log ( 'Failed to copy `open` code block' ) ;
148
+ this . logger . error ( 'Failed to copy code snippet' , {
149
+ operation : 'open' ,
150
+ reason : 'path not available'
151
+ } ) ;
112
152
this . root . remove ( ) ;
113
153
}
114
154
}
115
155
116
156
handleItemClick ( event : any ) {
117
- // TODO multiple menu it
157
+ this . logger . debug ( 'Menu item clicked' , {
158
+ type : event . target . dataset . fssContextType
159
+ } ) ;
160
+
118
161
if ( event . target . dataset . fssContextType === 'copyPath' ) {
119
162
this . copyPathToClipboard ( ) ;
120
163
} else if ( event . target . dataset . fssContextType === 'copyOpenCodeBlock' ) {
@@ -134,6 +177,7 @@ export class FssFilesysContextMenu {
134
177
135
178
handleMouseExit ( event : any ) {
136
179
event . preventDefault ( ) ;
180
+ this . logger . debug ( 'Context menu closed' , { reason : 'mouse exit' } ) ;
137
181
this . root . remove ( ) ;
138
182
return false ;
139
183
}
0 commit comments