Skip to content

Commit 798c249

Browse files
committed
Add support for opening a document with a factory
1 parent 3d05890 commit 798c249

File tree

2 files changed

+8
-23
lines changed

2 files changed

+8
-23
lines changed

packages/application-extension/src/index.ts

+5-21
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,6 @@ import { DisposableDelegate, DisposableSet } from '@lumino/disposable';
4545

4646
import { Widget } from '@lumino/widgets';
4747

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-
5848
/**
5949
* A regular expression to match path to notebooks and documents
6050
*/
@@ -179,18 +169,12 @@ const opener: JupyterFrontEndPlugin<void> = {
179169
}
180170

181171
const file = decodeURIComponent(path);
182-
const ext = PathExt.extname(file);
172+
const urlParams = new URLSearchParams(parsed.search);
173+
const factory = urlParams.get('factory') ?? 'default';
183174
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+
});
194178
});
195179
}
196180
});

packages/docmanager-extension/src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ const opener: JupyterFrontEndPlugin<void> = {
4040
return;
4141
}
4242
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}`);
4546
return undefined;
4647
};
4748
}

0 commit comments

Comments
 (0)