File tree 2 files changed +8
-23
lines changed
application-extension/src
2 files changed +8
-23
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,6 @@ import { DisposableDelegate, DisposableSet } from '@lumino/disposable';
45
45
46
46
import { Widget } from '@lumino/widgets' ;
47
47
48
- /**
49
- * The default notebook factory.
50
- */
51
- const NOTEBOOK_FACTORY = 'Notebook' ;
52
-
53
- /**
54
- * The editor factory.
55
- */
56
- const EDITOR_FACTORY = 'Editor' ;
57
-
58
48
/**
59
49
* A regular expression to match path to notebooks and documents
60
50
*/
@@ -179,18 +169,12 @@ const opener: JupyterFrontEndPlugin<void> = {
179
169
}
180
170
181
171
const file = decodeURIComponent ( path ) ;
182
- const ext = PathExt . extname ( file ) ;
172
+ const urlParams = new URLSearchParams ( parsed . search ) ;
173
+ const factory = urlParams . get ( 'factory' ) ?? 'default' ;
183
174
app . restored . then ( async ( ) => {
184
- // TODO: get factory from file type instead?
185
- if ( ext === '.ipynb' ) {
186
- docManager . open ( file , NOTEBOOK_FACTORY , undefined , {
187
- ref : '_noref'
188
- } ) ;
189
- } else {
190
- docManager . open ( file , EDITOR_FACTORY , undefined , {
191
- ref : '_noref'
192
- } ) ;
193
- }
175
+ docManager . open ( file , factory , undefined , {
176
+ ref : '_noref'
177
+ } ) ;
194
178
} ) ;
195
179
}
196
180
} ) ;
Original file line number Diff line number Diff line change @@ -40,8 +40,9 @@ const opener: JupyterFrontEndPlugin<void> = {
40
40
return ;
41
41
}
42
42
const ext = PathExt . extname ( path ) ;
43
- const route = ext === '.ipynb' ? 'notebooks' : 'edit' ;
44
- window . open ( `${ baseUrl } ${ route } /${ path } ` ) ;
43
+ const route =
44
+ widgetName !== 'Notebook' || ext !== '.ipynb' ? 'edit' : 'notebooks' ;
45
+ window . open ( `${ baseUrl } ${ route } /${ path } ?factory=${ widgetName } ` ) ;
45
46
return undefined ;
46
47
} ;
47
48
}
You can’t perform that action at this time.
0 commit comments