-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathlab.ts
488 lines (442 loc) · 14.8 KB
/
lab.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { PageConfig } from '@jupyterlab/coreutils';
import { Base64ModelFactory } from '@jupyterlab/docregistry';
import { IRenderMime } from '@jupyterlab/rendermime-interfaces';
import { ServiceManager } from '@jupyterlab/services';
import { PromiseDelegate, Token } from '@lumino/coreutils';
import { JupyterFrontEnd, JupyterFrontEndPlugin } from './frontend';
import { createRendermimePlugins } from './mimerenderers';
import { ILabShell, LabShell } from './shell';
import { LabStatus } from './status';
/**
* JupyterLab is the main application class. It is instantiated once and shared.
*/
export class JupyterLab extends JupyterFrontEnd<ILabShell> {
/**
* Construct a new JupyterLab object.
*/
constructor(options: JupyterLab.IOptions = { shell: new LabShell() }) {
super({
...options,
shell: options.shell || new LabShell(),
serviceManager:
options.serviceManager ||
new ServiceManager({
standby: () => {
return !this._info.isConnected || 'when-hidden';
}
})
});
// Create an IInfo dictionary from the options to override the defaults.
const info = Object.keys(JupyterLab.defaultInfo).reduce((acc, val) => {
if (val in options) {
(acc as any)[val] = JSON.parse(JSON.stringify((options as any)[val]));
}
return acc;
}, {} as Partial<JupyterLab.IInfo>);
// Populate application info.
this._info = { ...JupyterLab.defaultInfo, ...info };
this.restored = this.shell.restored
.then(async () => {
const activated: Promise<void | void[]>[] = [];
const deferred = this.activateDeferredPlugins().catch(error => {
console.error('Error when activating deferred plugins\n:', error);
});
activated.push(deferred);
if (this._info.deferred) {
const customizedDeferred = Promise.all(
this._info.deferred.matches.map(pluginID =>
this.activatePlugin(pluginID)
)
).catch(error => {
console.error(
'Error when activating customized list of deferred plugins:\n',
error
);
});
activated.push(customizedDeferred);
}
Promise.all(activated)
.then(() => {
this._allPluginsActivated.resolve();
})
.catch(() => undefined);
})
.catch(() => undefined);
// Populate application paths override the defaults if necessary.
const defaultURLs = JupyterLab.defaultPaths.urls;
const defaultDirs = JupyterLab.defaultPaths.directories;
const optionURLs = (options.paths && options.paths.urls) || {};
const optionDirs = (options.paths && options.paths.directories) || {};
this._paths = {
urls: Object.keys(defaultURLs).reduce((acc, key) => {
if (key in optionURLs) {
const value = (optionURLs as any)[key];
(acc as any)[key] = value;
} else {
(acc as any)[key] = (defaultURLs as any)[key];
}
return acc;
}, {}),
directories: Object.keys(JupyterLab.defaultPaths.directories).reduce(
(acc, key) => {
if (key in optionDirs) {
const value = (optionDirs as any)[key];
(acc as any)[key] = value;
} else {
(acc as any)[key] = (defaultDirs as any)[key];
}
return acc;
},
{}
)
} as JupyterFrontEnd.IPaths;
if (this._info.devMode) {
this.shell.addClass('jp-mod-devMode');
}
// Add initial model factory.
this.docRegistry.addModelFactory(new Base64ModelFactory());
if (options.mimeExtensions) {
for (const plugin of createRendermimePlugins(options.mimeExtensions)) {
this.registerPlugin(plugin);
}
}
}
/**
* The name of the JupyterLab application.
*/
readonly name = PageConfig.getOption('appName') || 'JupyterLab';
/**
* A namespace/prefix plugins may use to denote their provenance.
*/
readonly namespace = PageConfig.getOption('appNamespace') || this.name;
/**
* A list of all errors encountered when registering plugins.
*/
readonly registerPluginErrors: Array<Error> = [];
/**
* Promise that resolves when state is first restored, returning layout
* description.
*/
readonly restored: Promise<void>;
/**
* The application busy and dirty status signals and flags.
*/
readonly status = new LabStatus(this);
/**
* The version of the JupyterLab application.
*/
readonly version = PageConfig.getOption('appVersion') || 'unknown';
/**
* The JupyterLab application information dictionary.
*/
get info(): JupyterLab.IInfo {
return this._info;
}
/**
* The JupyterLab application paths dictionary.
*/
get paths(): JupyterFrontEnd.IPaths {
return this._paths;
}
/**
* Promise that resolves when all the plugins are activated, including the deferred.
*/
get allPluginsActivated(): Promise<void> {
return this._allPluginsActivated.promise;
}
/**
* Register plugins from a plugin module.
*
* @param mod - The plugin module to register.
*/
registerPluginModule(mod: JupyterLab.IPluginModule): void {
let data = mod.default;
// Handle commonjs exports.
if (!mod.hasOwnProperty('__esModule')) {
data = mod as any;
}
if (!Array.isArray(data)) {
data = [data];
}
data.forEach(item => {
try {
this.registerPlugin(item);
} catch (error) {
this.registerPluginErrors.push(error);
}
});
}
/**
* Register the plugins from multiple plugin modules.
*
* @param mods - The plugin modules to register.
*/
registerPluginModules(mods: JupyterLab.IPluginModule[]): void {
mods.forEach(mod => {
this.registerPluginModule(mod);
});
}
/**
* Override keydown handling to prevent command shortcuts from preventing user input.
*
* This introduces a slight delay to the command invocation, but no delay to user input.
*/
protected evtKeydown(keyDownEvent: KeyboardEvent): void {
const permissionToExecute = new PromiseDelegate<boolean>();
// Hold the execution of any keybinding until we know if this event would cause text insertion
this.commands.holdKeyBindingExecution(
keyDownEvent,
permissionToExecute.promise
);
// Process the key immediately to invoke the prevent default handlers as needed
this.commands.processKeydownEvent(keyDownEvent);
// If we do not know the target, we cannot check if input would be inserted
// as there is no target to attach the `beforeinput` event listener; in that
// case we just permit execution immediately (this may happen for programmatic
// uses of keydown)
const target = keyDownEvent.target;
if (!target) {
return permissionToExecute.resolve(true);
}
let onBeforeInput: ((event: InputEvent) => void) | null = null;
let onBeforeKeyUp: ((event: KeyboardEvent) => void) | null = null;
const disconnectListeners = () => {
if (onBeforeInput) {
target.removeEventListener('beforeinput', onBeforeInput);
}
if (onBeforeKeyUp) {
target.removeEventListener('keyup', onBeforeKeyUp);
}
};
// Permit the execution conditionally, depending on whether the event would lead to text insertion
const causesInputPromise = Promise.race([
new Promise(resolve => {
onBeforeInput = (inputEvent: InputEvent) => {
switch (inputEvent.inputType) {
case 'historyUndo':
case 'historyRedo': {
if (
inputEvent.target instanceof Element &&
inputEvent.target.closest('[data-jp-undoer]')
) {
// Allow to use custom undo/redo bindings on `jpUndoer`s
inputEvent.preventDefault();
disconnectListeners();
return resolve(false);
}
break;
}
case 'insertLineBreak': {
if (
inputEvent.target instanceof Element &&
inputEvent.target.closest('.jp-Cell')
) {
// Allow to override the default action of Shift + Enter on cells as this is used for cell execution
inputEvent.preventDefault();
disconnectListeners();
return resolve(false);
}
break;
}
}
disconnectListeners();
return resolve(true);
};
target.addEventListener('beforeinput', onBeforeInput, { once: true });
}),
new Promise(resolve => {
onBeforeKeyUp = (keyUpEvent: KeyboardEvent) => {
if (keyUpEvent.code === keyDownEvent.code) {
disconnectListeners();
return resolve(false);
}
};
target.addEventListener('keyup', onBeforeKeyUp, { once: true });
}),
new Promise(resolve => {
setTimeout(() => {
disconnectListeners();
return resolve(false);
}, Private.INPUT_GUARD_TIMEOUT);
})
]);
causesInputPromise
.then(willCauseInput => {
permissionToExecute.resolve(!willCauseInput);
})
.catch(console.warn);
}
private _info: JupyterLab.IInfo = JupyterLab.defaultInfo;
private _paths: JupyterFrontEnd.IPaths;
private _allPluginsActivated = new PromiseDelegate<void>();
}
/**
* The namespace for `JupyterLab` class statics.
*/
export namespace JupyterLab {
/**
* The options used to initialize a JupyterLab object.
*/
export interface IOptions
extends Partial<JupyterFrontEnd.IOptions<ILabShell>>,
Partial<IInfo> {
paths?: Partial<JupyterFrontEnd.IPaths>;
}
/**
* The layout restorer token.
*/
export const IInfo = new Token<IInfo>(
'@jupyterlab/application:IInfo',
'A service providing metadata about the current application, including disabled extensions and whether dev mode is enabled.'
);
/**
* The information about a JupyterLab application.
*/
export interface IInfo {
/**
* Whether the application is in dev mode.
*/
readonly devMode: boolean;
/**
* The collection of deferred extension patterns and matched extensions.
*/
readonly deferred: { patterns: string[]; matches: string[] };
/**
* The collection of disabled extension patterns and matched extensions.
*/
readonly disabled: { patterns: string[]; matches: string[] };
/**
* The mime renderer extensions.
*/
readonly mimeExtensions: IRenderMime.IExtensionModule[];
/**
* The information about available plugins.
*/
readonly availablePlugins: IPluginInfo[];
/**
* Whether files are cached on the server.
*/
readonly filesCached: boolean;
/**
* Every periodic network polling should be paused while this is set
* to `false`. Extensions should use this value to decide whether to proceed
* with the polling.
* The extensions may also set this value to `false` if there is no need to
* fetch anything from the server backend basing on some conditions
* (e.g. when an error message dialog is displayed).
* At the same time, the extensions are responsible for setting this value
* back to `true`.
*/
isConnected: boolean;
}
/*
* A read-only subset of the `Token`.
*/
export interface IToken
extends Readonly<Pick<Token<any>, 'name' | 'description'>> {
// no-op
}
/**
* A readonly subset of lumino plugin bundle (excluding activation function,
* service, and state information, and runtime token details).
*/
interface ILuminoPluginData
extends Readonly<
Pick<JupyterFrontEndPlugin<void>, 'id' | 'description' | 'autoStart'>
> {
/**
* The types of required services for the plugin, or `[]`.
*/
readonly requires: IToken[];
/**
* The types of optional services for the the plugin, or `[]`.
*/
readonly optional: IToken[];
/**
* The type of service provided by the plugin, or `null`.
*/
readonly provides: IToken | null;
}
/**
* A subset of plugin bundle enriched with JupyterLab extension metadata.
*/
export interface IPluginInfo extends ILuminoPluginData {
/**
* The name of the extension which provides the plugin.
*/
extension: string;
/**
* Whether the plugin is enabled.
*/
enabled: boolean;
}
/**
* The default JupyterLab application info.
*/
export const defaultInfo: IInfo = {
devMode: PageConfig.getOption('devMode').toLowerCase() === 'true',
deferred: { patterns: [], matches: [] },
disabled: { patterns: [], matches: [] },
mimeExtensions: [],
availablePlugins: [],
filesCached: PageConfig.getOption('cacheFiles').toLowerCase() === 'true',
isConnected: true
};
/**
* The default JupyterLab application paths.
*/
export const defaultPaths: JupyterFrontEnd.IPaths = {
urls: {
base: PageConfig.getOption('baseUrl'),
notFound: PageConfig.getOption('notFoundUrl'),
app: PageConfig.getOption('appUrl'),
doc: PageConfig.getOption('docUrl'),
static: PageConfig.getOption('staticUrl'),
settings: PageConfig.getOption('settingsUrl'),
themes: PageConfig.getOption('themesUrl'),
translations: PageConfig.getOption('translationsApiUrl'),
hubHost: PageConfig.getOption('hubHost') || undefined,
hubPrefix: PageConfig.getOption('hubPrefix') || undefined,
hubUser: PageConfig.getOption('hubUser') || undefined,
hubServerName: PageConfig.getOption('hubServerName') || undefined
},
directories: {
appSettings: PageConfig.getOption('appSettingsDir'),
schemas: PageConfig.getOption('schemasDir'),
static: PageConfig.getOption('staticDir'),
templates: PageConfig.getOption('templatesDir'),
themes: PageConfig.getOption('themesDir'),
userSettings: PageConfig.getOption('userSettingsDir'),
serverRoot: PageConfig.getOption('serverRoot'),
workspaces: PageConfig.getOption('workspacesDir')
}
};
/**
* The interface for a module that exports a plugin or plugins as
* the default value.
*/
export interface IPluginModule {
/**
* The default export.
*/
default:
| JupyterFrontEndPlugin<any, any, any>
| JupyterFrontEndPlugin<any, any, any>[];
}
}
/**
* A namespace for module-private functionality.
*/
namespace Private {
/**
* The delay for invoking a command introduced by user input guard.
* Decreasing this value may lead to commands incorrectly triggering
* on user input. Increasing this value will lead to longer delay for
* command invocation. Note that user input is never delayed.
*
* The value represents the number in milliseconds.
*/
export const INPUT_GUARD_TIMEOUT = 10;
}