-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathfrontend-application.ts
326 lines (291 loc) · 12.9 KB
/
frontend-application.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
// *****************************************************************************
// Copyright (C) 2017 TypeFox and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { inject, injectable, named } from 'inversify';
import { ContributionProvider, CommandRegistry, MenuModelRegistry, isOSX, BackendStopwatch, LogLevel, Stopwatch } from '../common';
import { MaybePromise } from '../common/types';
import { KeybindingRegistry } from './keybinding';
import { Widget } from './widgets';
import { ApplicationShell } from './shell/application-shell';
import { ShellLayoutRestorer, ApplicationShellLayoutMigrationError } from './shell/shell-layout-restorer';
import { FrontendApplicationStateService } from './frontend-application-state';
import { preventNavigation, parseCssTime, animationFrame } from './browser';
import { CorePreferences } from './core-preferences';
import { WindowService } from './window/window-service';
import { TooltipService } from './tooltip-service';
import { FrontendApplicationContribution } from './frontend-application-contribution';
const TIMER_WARNING_THRESHOLD = 100;
@injectable()
export class FrontendApplication {
@inject(CorePreferences)
protected readonly corePreferences: CorePreferences;
@inject(WindowService)
protected readonly windowsService: WindowService;
@inject(TooltipService)
protected readonly tooltipService: TooltipService;
@inject(Stopwatch)
protected readonly stopwatch: Stopwatch;
@inject(BackendStopwatch)
protected readonly backendStopwatch: BackendStopwatch;
constructor(
@inject(CommandRegistry) protected readonly commands: CommandRegistry,
@inject(MenuModelRegistry) protected readonly menus: MenuModelRegistry,
@inject(KeybindingRegistry) protected readonly keybindings: KeybindingRegistry,
@inject(ShellLayoutRestorer) protected readonly layoutRestorer: ShellLayoutRestorer,
@inject(ContributionProvider) @named(FrontendApplicationContribution)
protected readonly contributions: ContributionProvider<FrontendApplicationContribution>,
@inject(ApplicationShell) protected readonly _shell: ApplicationShell,
@inject(FrontendApplicationStateService) protected readonly stateService: FrontendApplicationStateService
) { }
get shell(): ApplicationShell {
return this._shell;
}
/**
* Start the frontend application.
*
* Start up consists of the following steps:
* - start frontend contributions
* - attach the application shell to the host element
* - initialize the application shell layout
* - reveal the application shell if it was hidden by a startup indicator
*/
async start(): Promise<void> {
const startup = this.backendStopwatch.start('frontend');
await this.measure('startContributions', () => this.startContributions(), 'Start frontend contributions', false);
this.stateService.state = 'started_contributions';
const host = await this.getHost();
this.attachShell(host);
this.attachTooltip(host);
await animationFrame();
this.stateService.state = 'attached_shell';
await this.measure('initializeLayout', () => this.initializeLayout(), 'Initialize the workbench layout', false);
this.stateService.state = 'initialized_layout';
await this.fireOnDidInitializeLayout();
await this.measure('revealShell', () => this.revealShell(host), 'Replace loading indicator with ready workbench UI (animation)', false);
this.registerEventListeners();
this.stateService.state = 'ready';
startup.then(idToken => this.backendStopwatch.stop(idToken, 'Frontend application start', []));
}
/**
* Return a promise to the host element to which the application shell is attached.
*/
protected getHost(): Promise<HTMLElement> {
if (document.body) {
return Promise.resolve(document.body);
}
return new Promise<HTMLElement>(resolve =>
window.addEventListener('load', () => resolve(document.body), { once: true })
);
}
/**
* Return an HTML element that indicates the startup phase, e.g. with an animation or a splash screen.
*/
protected getStartupIndicator(host: HTMLElement): HTMLElement | undefined {
const startupElements = host.getElementsByClassName('theia-preload');
return startupElements.length === 0 ? undefined : startupElements[0] as HTMLElement;
}
/**
* Register global event listeners.
*/
protected registerEventListeners(): void {
this.windowsService.onUnload(() => {
this.stateService.state = 'closing_window';
this.layoutRestorer.storeLayout(this);
this.stopContributions();
});
window.addEventListener('resize', () => this.shell.update());
this.keybindings.registerEventListeners(window);
document.addEventListener('touchmove', event => { event.preventDefault(); }, { passive: false });
// Prevent forward/back navigation by scrolling in OS X
if (isOSX) {
document.body.addEventListener('wheel', preventNavigation, { passive: false });
}
// Prevent the default browser behavior when dragging and dropping files into the window.
document.addEventListener('dragenter', event => {
if (event.dataTransfer) {
event.dataTransfer.dropEffect = 'none';
}
event.preventDefault();
}, false);
document.addEventListener('dragover', event => {
if (event.dataTransfer) {
event.dataTransfer.dropEffect = 'none';
} event.preventDefault();
}, false);
document.addEventListener('drop', event => {
event.preventDefault();
}, false);
}
/**
* Attach the application shell to the host element. If a startup indicator is present, the shell is
* inserted before that indicator so it is not visible yet.
*/
protected attachShell(host: HTMLElement): void {
const ref = this.getStartupIndicator(host);
Widget.attach(this.shell, host, ref);
}
/**
* Attach the tooltip container to the host element.
*/
protected attachTooltip(host: HTMLElement): void {
this.tooltipService.attachTo(host);
}
/**
* If a startup indicator is present, it is first hidden with the `theia-hidden` CSS class and then
* removed after a while. The delay until removal is taken from the CSS transition duration.
*/
protected revealShell(host: HTMLElement): Promise<void> {
const startupElem = this.getStartupIndicator(host);
if (startupElem) {
return new Promise(resolve => {
window.requestAnimationFrame(() => {
startupElem.classList.add('theia-hidden');
const preloadStyle = window.getComputedStyle(startupElem);
const transitionDuration = parseCssTime(preloadStyle.transitionDuration, 0);
window.setTimeout(() => {
const parent = startupElem.parentElement;
if (parent) {
parent.removeChild(startupElem);
}
resolve();
}, transitionDuration);
});
});
} else {
return Promise.resolve();
}
}
/**
* Initialize the shell layout either using the layout restorer service or, if no layout has
* been stored, by creating the default layout.
*/
protected async initializeLayout(): Promise<void> {
if (!await this.restoreLayout()) {
// Fallback: Create the default shell layout
await this.createDefaultLayout();
}
await this.shell.pendingUpdates;
}
/**
* Try to restore the shell layout from the storage service. Resolves to `true` if successful.
*/
protected async restoreLayout(): Promise<boolean> {
try {
return await this.layoutRestorer.restoreLayout(this);
} catch (error) {
if (ApplicationShellLayoutMigrationError.is(error)) {
console.warn(error.message);
console.info('Initializing the default layout instead...');
} else {
console.error('Could not restore layout', error);
}
return false;
}
}
/**
* Let the frontend application contributions initialize the shell layout. Override this
* method in order to create an application-specific custom layout.
*/
protected async createDefaultLayout(): Promise<void> {
for (const contribution of this.contributions.getContributions()) {
if (contribution.initializeLayout) {
await this.measure(contribution.constructor.name + '.initializeLayout',
() => contribution.initializeLayout!(this)
);
}
}
}
protected async fireOnDidInitializeLayout(): Promise<void> {
for (const contribution of this.contributions.getContributions()) {
if (contribution.onDidInitializeLayout) {
await this.measure(contribution.constructor.name + '.onDidInitializeLayout',
() => contribution.onDidInitializeLayout!(this)
);
}
}
}
/**
* Initialize and start the frontend application contributions.
*/
protected async startContributions(): Promise<void> {
for (const contribution of this.contributions.getContributions()) {
if (contribution.initialize) {
try {
await this.measure(contribution.constructor.name + '.initialize',
() => contribution.initialize!()
);
} catch (error) {
console.error('Could not initialize contribution', error);
}
}
}
for (const contribution of this.contributions.getContributions()) {
if (contribution.configure) {
try {
await this.measure(contribution.constructor.name + '.configure',
() => contribution.configure!(this)
);
} catch (error) {
console.error('Could not configure contribution', error);
}
}
}
/**
* FIXME:
* - decouple commands & menus
* - consider treat commands, keybindings and menus as frontend application contributions
*/
await this.measure('commands.onStart',
() => this.commands.onStart()
);
await this.measure('keybindings.onStart',
() => this.keybindings.onStart()
);
await this.measure('menus.onStart',
() => this.menus.onStart()
);
for (const contribution of this.contributions.getContributions()) {
if (contribution.onStart) {
try {
await this.measure(contribution.constructor.name + '.onStart',
() => contribution.onStart!(this)
);
} catch (error) {
console.error('Could not start contribution', error);
}
}
}
}
/**
* Stop the frontend application contributions. This is called when the window is unloaded.
*/
protected stopContributions(): void {
console.info('>>> Stopping frontend contributions...');
for (const contribution of this.contributions.getContributions()) {
if (contribution.onStop) {
try {
contribution.onStop(this);
} catch (error) {
console.error('Could not stop contribution', error);
}
}
}
console.info('<<< All frontend contributions have been stopped.');
}
protected async measure<T>(name: string, fn: () => MaybePromise<T>, message = `Frontend ${name}`, threshold = true): Promise<T> {
return this.stopwatch.startAsync(name, message, fn,
threshold ? { thresholdMillis: TIMER_WARNING_THRESHOLD, defaultLogLevel: LogLevel.DEBUG } : {});
}
}