-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathdialogs.ts
546 lines (469 loc) · 18.5 KB
/
dialogs.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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
// *****************************************************************************
// 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 WITH Classpath-exception-2.0
// *****************************************************************************
import { injectable, inject } from 'inversify';
import { Disposable, MaybePromise, CancellationTokenSource, nls } from '../common';
import { Key } from './keyboard/keys';
import { Widget, BaseWidget, Message, addKeyListener, codiconArray } from './widgets';
import { FrontendApplicationContribution } from './frontend-application';
@injectable()
export class DialogProps {
readonly title: string;
/**
* Determines the maximum width of the dialog in pixels.
* Default value is undefined, which would result in the css property 'max-width: none' being applied to the dialog.
*/
maxWidth?: number;
/**
* Determine the word wrapping behavior for content in the dialog.
* - `normal`: breaks words at allowed break points.
* - `break-word`: breaks otherwise unbreakable words.
* - `initial`: sets the property to it's default value.
* - `inherit`: inherit this property from it's parent element.
* Default value is undefined, which would result in the css property 'word-wrap' not being applied to the dialog.
*/
wordWrap?: 'normal' | 'break-word' | 'initial' | 'inherit';
}
export type DialogMode = 'open' | 'preview';
export type DialogError = string | boolean | {
message: string
result: boolean
};
export namespace DialogError {
export function getResult(error: DialogError): boolean {
if (typeof error === 'string') {
return !error.length;
}
if (typeof error === 'boolean') {
return error;
}
return error.result;
}
export function getMessage(error: DialogError): string {
if (typeof error === 'string') {
return error;
}
if (typeof error === 'boolean') {
return '';
}
return error.message;
}
}
export namespace Dialog {
export const YES = nls.localizeByDefault('Yes');
export const NO = nls.localizeByDefault('No');
export const OK = nls.localizeByDefault('OK');
export const CANCEL = nls.localizeByDefault('Cancel');
}
@injectable()
export class DialogOverlayService implements FrontendApplicationContribution {
protected static INSTANCE: DialogOverlayService;
static get(): DialogOverlayService {
return DialogOverlayService.INSTANCE;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected readonly dialogs: AbstractDialog<any>[] = [];
constructor() {
addKeyListener(document.body, Key.ENTER, e => this.handleEnter(e));
addKeyListener(document.body, Key.ESCAPE, e => this.handleEscape(e));
}
initialize(): void {
DialogOverlayService.INSTANCE = this;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected get currentDialog(): AbstractDialog<any> | undefined {
return this.dialogs[0];
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
push(dialog: AbstractDialog<any>): Disposable {
this.dialogs.unshift(dialog);
return Disposable.create(() => {
const index = this.dialogs.indexOf(dialog);
if (index > -1) {
this.dialogs.splice(index, 1);
}
});
}
protected handleEscape(event: KeyboardEvent): boolean | void {
const dialog = this.currentDialog;
if (dialog) {
return dialog['handleEscape'](event);
}
return false;
}
protected handleEnter(event: KeyboardEvent): boolean | void {
const dialog = this.currentDialog;
if (dialog) {
return dialog['handleEnter'](event);
}
return false;
}
}
@injectable()
export abstract class AbstractDialog<T> extends BaseWidget {
protected readonly titleNode: HTMLDivElement;
protected readonly contentNode: HTMLDivElement;
protected readonly closeCrossNode: HTMLElement;
protected readonly controlPanel: HTMLDivElement;
protected readonly errorMessageNode: HTMLDivElement;
protected resolve: undefined | ((value: T | undefined) => void);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected reject: undefined | ((reason: any) => void);
protected closeButton: HTMLButtonElement | undefined;
protected acceptButton: HTMLButtonElement | undefined;
protected activeElement: HTMLElement | undefined;
constructor(
@inject(DialogProps) protected readonly props: DialogProps
) {
super();
this.id = 'theia-dialog-shell';
this.addClass('dialogOverlay');
this.toDispose.push(Disposable.create(() => {
if (this.reject) {
Widget.detach(this);
}
}));
const container = document.createElement('div');
container.classList.add('dialogBlock');
if (props.maxWidth === undefined) {
container.setAttribute('style', 'max-width: none');
} else {
container.setAttribute('style', `max-width: ${props.maxWidth}px; min-width: 0px`);
}
this.node.appendChild(container);
const titleContentNode = document.createElement('div');
titleContentNode.classList.add('dialogTitle');
container.appendChild(titleContentNode);
this.titleNode = document.createElement('div');
this.titleNode.textContent = props.title;
titleContentNode.appendChild(this.titleNode);
this.closeCrossNode = document.createElement('i');
this.closeCrossNode.classList.add(...codiconArray('close'));
this.closeCrossNode.classList.add('closeButton');
titleContentNode.appendChild(this.closeCrossNode);
this.contentNode = document.createElement('div');
this.contentNode.classList.add('dialogContent');
if (props.wordWrap !== undefined) {
this.contentNode.setAttribute('style', `word-wrap: ${props.wordWrap}`);
}
container.appendChild(this.contentNode);
this.controlPanel = document.createElement('div');
this.controlPanel.classList.add('dialogControl');
container.appendChild(this.controlPanel);
this.errorMessageNode = document.createElement('div');
this.errorMessageNode.classList.add('error');
this.errorMessageNode.setAttribute('style', 'flex: 2');
this.controlPanel.appendChild(this.errorMessageNode);
this.update();
}
protected appendCloseButton(text: string = Dialog.CANCEL): HTMLButtonElement {
this.closeButton = this.createButton(text);
this.controlPanel.appendChild(this.closeButton);
this.closeButton.classList.add('secondary');
return this.closeButton;
}
protected appendAcceptButton(text: string = Dialog.OK): HTMLButtonElement {
this.acceptButton = this.createButton(text);
this.controlPanel.appendChild(this.acceptButton);
this.acceptButton.classList.add('main');
return this.acceptButton;
}
protected createButton(text: string): HTMLButtonElement {
const button = document.createElement('button');
button.classList.add('theia-button');
button.textContent = text;
return button;
}
protected override onAfterAttach(msg: Message): void {
super.onAfterAttach(msg);
if (this.closeButton) {
this.addCloseAction(this.closeButton, 'click');
}
if (this.acceptButton) {
this.addAcceptAction(this.acceptButton, 'click');
}
this.addCloseAction(this.closeCrossNode, 'click');
// TODO: use DI always to create dialog instances
this.toDisposeOnDetach.push(DialogOverlayService.get().push(this));
}
protected handleEscape(event: KeyboardEvent): boolean | void {
this.close();
}
protected handleEnter(event: KeyboardEvent): boolean | void {
if (event.target instanceof HTMLTextAreaElement) {
return false;
}
this.accept();
}
protected override onActivateRequest(msg: Message): void {
super.onActivateRequest(msg);
if (this.acceptButton) {
this.acceptButton.focus();
}
}
open(): Promise<T | undefined> {
if (this.resolve) {
return Promise.reject(new Error('The dialog is already opened.'));
}
this.activeElement = window.document.activeElement as HTMLElement;
return new Promise<T | undefined>((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
this.toDisposeOnDetach.push(Disposable.create(() => {
this.resolve = undefined;
this.reject = undefined;
}));
Widget.attach(this, document.body);
this.activate();
});
}
override close(): void {
if (this.resolve) {
if (this.activeElement) {
this.activeElement.focus({ preventScroll: true });
}
this.resolve(undefined);
}
this.activeElement = undefined;
super.close();
}
protected override onUpdateRequest(msg: Message): void {
super.onUpdateRequest(msg);
this.validate();
}
protected validateCancellationSource = new CancellationTokenSource();
protected async validate(): Promise<void> {
if (!this.resolve) {
return;
}
this.validateCancellationSource.cancel();
this.validateCancellationSource = new CancellationTokenSource();
const token = this.validateCancellationSource.token;
const value = this.value;
const error = await this.isValid(value, 'preview');
if (token.isCancellationRequested) {
return;
}
this.setErrorMessage(error);
}
protected acceptCancellationSource = new CancellationTokenSource();
protected async accept(): Promise<void> {
if (!this.resolve) {
return;
}
this.acceptCancellationSource.cancel();
this.acceptCancellationSource = new CancellationTokenSource();
const token = this.acceptCancellationSource.token;
const value = this.value;
const error = await this.isValid(value, 'open');
if (token.isCancellationRequested) {
return;
}
if (!DialogError.getResult(error)) {
this.setErrorMessage(error);
} else {
this.resolve(value);
Widget.detach(this);
}
}
abstract get value(): T;
/**
* Return a string of zero-length or true if valid.
*/
protected isValid(value: T, mode: DialogMode): MaybePromise<DialogError> {
return '';
}
protected setErrorMessage(error: DialogError): void {
if (this.acceptButton) {
this.acceptButton.disabled = !DialogError.getResult(error);
}
this.errorMessageNode.innerText = DialogError.getMessage(error);
}
protected addAction<K extends keyof HTMLElementEventMap>(element: HTMLElement, callback: () => void, ...additionalEventTypes: K[]): void {
this.addKeyListener(element, Key.ENTER, callback, ...additionalEventTypes);
}
protected addCloseAction<K extends keyof HTMLElementEventMap>(element: HTMLElement, ...additionalEventTypes: K[]): void {
this.addAction(element, () => this.close(), ...additionalEventTypes);
}
protected addAcceptAction<K extends keyof HTMLElementEventMap>(element: HTMLElement, ...additionalEventTypes: K[]): void {
this.addAction(element, () => this.accept(), ...additionalEventTypes);
}
}
@injectable()
export class ConfirmDialogProps extends DialogProps {
readonly msg: string | HTMLElement;
readonly cancel?: string;
readonly ok?: string;
}
export class ConfirmDialog extends AbstractDialog<boolean> {
protected confirmed = true;
constructor(
@inject(ConfirmDialogProps) protected override readonly props: ConfirmDialogProps
) {
super(props);
this.contentNode.appendChild(this.createMessageNode(this.props.msg));
this.appendCloseButton(props.cancel);
this.appendAcceptButton(props.ok);
}
protected override onCloseRequest(msg: Message): void {
super.onCloseRequest(msg);
this.confirmed = false;
this.accept();
}
get value(): boolean {
return this.confirmed;
}
protected createMessageNode(msg: string | HTMLElement): HTMLElement {
if (typeof msg === 'string') {
const messageNode = document.createElement('div');
messageNode.textContent = msg;
return messageNode;
}
return msg;
}
}
export async function confirmExit(): Promise<boolean> {
const safeToExit = await new ConfirmDialog({
title: nls.localizeByDefault('Are you sure you want to quit?'),
msg: nls.localize('theia/core/quitMessage', 'Any unsaved changes will not be saved.'),
ok: Dialog.YES,
cancel: Dialog.NO,
}).open();
return safeToExit === true;
}
export class ConfirmSaveDialogProps extends ConfirmDialogProps {
readonly save: string;
performSave: () => Promise<void>;
}
export class ConfirmSaveDialog extends ConfirmDialog {
protected saveButton: HTMLButtonElement | undefined;
constructor(
@inject(ConfirmSaveDialogProps) protected override readonly props: ConfirmSaveDialogProps
) {
super(props);
this.contentNode.appendChild(this.createMessageNode(this.props.msg));
// reorder buttons
this.controlPanel.childNodes.forEach(child => this.controlPanel.removeChild(child));
[this.acceptButton, this.closeButton].forEach(child => {
if (typeof child !== 'undefined') {
this.controlPanel.appendChild(child);
}
});
this.appendSaveButton(props.save).addEventListener('click', async () => {
await props.performSave();
this.acceptButton?.click();
});
}
protected appendSaveButton(text: string = Dialog.OK): HTMLButtonElement {
this.saveButton = this.createButton(text);
this.controlPanel.appendChild(this.saveButton);
this.saveButton.classList.add('main');
return this.saveButton;
}
protected override onActivateRequest(msg: Message): void {
super.onActivateRequest(msg);
if (this.saveButton) {
this.saveButton.focus();
}
}
}
export async function confirmExitWithOrWithoutSaving(captionsToSave: string[], performSave: () => Promise<void>): Promise<boolean> {
const div: HTMLElement = document.createElement('div');
div.innerText = nls.localizeByDefault("Your changes will be lost if you don't save them.");
if (captionsToSave.length > 0) {
const span = document.createElement('span');
span.appendChild(document.createElement('br'));
captionsToSave.forEach(cap => {
const b = document.createElement('b');
b.innerText = cap;
span.appendChild(b);
span.appendChild(document.createElement('br'));
});
span.appendChild(document.createElement('br'));
div.appendChild(span);
const safeToExit = await new ConfirmSaveDialog({
title: nls.localizeByDefault('Do you want to save the changes to the following {0} files?', captionsToSave.length),
msg: div,
ok: nls.localizeByDefault("Don't Save"),
save: nls.localizeByDefault('Save All'),
cancel: Dialog.CANCEL,
performSave: performSave
}).open();
return safeToExit === true;
} else {
// fallback if not passed with an empty caption-list.
return confirmExit();
}
}
@injectable()
export class SingleTextInputDialogProps extends DialogProps {
readonly confirmButtonLabel?: string;
readonly initialValue?: string;
readonly placeholder?: string;
readonly initialSelectionRange?: {
start: number
end: number
direction?: 'forward' | 'backward' | 'none'
};
readonly validate?: (input: string, mode: DialogMode) => MaybePromise<DialogError>;
}
export class SingleTextInputDialog extends AbstractDialog<string> {
protected readonly inputField: HTMLInputElement;
constructor(
@inject(SingleTextInputDialogProps) protected override props: SingleTextInputDialogProps
) {
super(props);
this.inputField = document.createElement('input');
this.inputField.type = 'text';
this.inputField.className = 'theia-input';
this.inputField.spellcheck = false;
this.inputField.setAttribute('style', 'flex: 0;');
this.inputField.placeholder = props.placeholder || '';
this.inputField.value = props.initialValue || '';
if (props.initialSelectionRange) {
this.inputField.setSelectionRange(
props.initialSelectionRange.start,
props.initialSelectionRange.end,
props.initialSelectionRange.direction
);
} else {
this.inputField.select();
}
this.contentNode.appendChild(this.inputField);
this.appendAcceptButton(props.confirmButtonLabel);
}
get value(): string {
return this.inputField.value;
}
protected override isValid(value: string, mode: DialogMode): MaybePromise<DialogError> {
if (this.props.validate) {
return this.props.validate(value, mode);
}
return super.isValid(value, mode);
}
protected override onAfterAttach(msg: Message): void {
super.onAfterAttach(msg);
this.addUpdateListener(this.inputField, 'input');
}
protected override onActivateRequest(msg: Message): void {
this.inputField.focus();
}
protected override handleEnter(event: KeyboardEvent): boolean | void {
if (event.target instanceof HTMLInputElement) {
return super.handleEnter(event);
}
return false;
}
}