@theia/monaco 1.53.0-next.55 → 1.53.0-next.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +100 -100
- package/data/monaco-nls.json +1379 -1379
- package/data/monaco-themes/vscode/dark_plus.json +201 -201
- package/data/monaco-themes/vscode/dark_theia.json +5 -5
- package/data/monaco-themes/vscode/dark_vs.json +393 -393
- package/data/monaco-themes/vscode/hc_black.json +457 -457
- package/data/monaco-themes/vscode/hc_light.json +590 -590
- package/data/monaco-themes/vscode/hc_theia.json +5 -5
- package/data/monaco-themes/vscode/hc_theia_light.json +5 -5
- package/data/monaco-themes/vscode/light_plus.json +202 -202
- package/data/monaco-themes/vscode/light_theia.json +10 -10
- package/data/monaco-themes/vscode/light_vs.json +421 -421
- package/lib/browser/monaco-editor-zone-widget.js +1 -1
- package/lib/browser/monaco-frontend-application-contribution.js +25 -25
- package/lib/browser/simple-monaco-editor.d.ts +3 -1
- package/lib/browser/simple-monaco-editor.d.ts.map +1 -1
- package/lib/browser/simple-monaco-editor.js +9 -2
- package/lib/browser/simple-monaco-editor.js.map +1 -1
- package/package.json +8 -8
- package/src/browser/index.ts +17 -17
- package/src/browser/markdown-renderer/monaco-markdown-renderer.ts +109 -109
- package/src/browser/monaco-bulk-edit-service.ts +64 -64
- package/src/browser/monaco-color-registry.ts +73 -73
- package/src/browser/monaco-command-registry.ts +85 -85
- package/src/browser/monaco-command-service.ts +90 -90
- package/src/browser/monaco-command.ts +303 -303
- package/src/browser/monaco-context-key-service.ts +144 -144
- package/src/browser/monaco-context-menu.ts +112 -112
- package/src/browser/monaco-diff-editor.ts +141 -141
- package/src/browser/monaco-diff-navigator-factory.ts +39 -39
- package/src/browser/monaco-editor-model.ts +693 -693
- package/src/browser/monaco-editor-peek-view-widget.ts +233 -233
- package/src/browser/monaco-editor-provider.ts +455 -455
- package/src/browser/monaco-editor-service.ts +152 -152
- package/src/browser/monaco-editor-zone-widget.ts +250 -250
- package/src/browser/monaco-editor.ts +733 -733
- package/src/browser/monaco-formatting-conflicts.ts +116 -116
- package/src/browser/monaco-frontend-application-contribution.ts +182 -182
- package/src/browser/monaco-frontend-module.ts +319 -319
- package/src/browser/monaco-gotoline-quick-access.ts +47 -47
- package/src/browser/monaco-gotosymbol-quick-access.ts +53 -53
- package/src/browser/monaco-icon-registry.ts +49 -49
- package/src/browser/monaco-indexed-db.ts +130 -130
- package/src/browser/monaco-init.ts +134 -134
- package/src/browser/monaco-keybinding.ts +111 -111
- package/src/browser/monaco-keycode-map.ts +171 -171
- package/src/browser/monaco-languages.ts +177 -177
- package/src/browser/monaco-marker-collection.ts +83 -83
- package/src/browser/monaco-menu.ts +147 -147
- package/src/browser/monaco-mime-service.ts +71 -71
- package/src/browser/monaco-outline-contribution.ts +404 -404
- package/src/browser/monaco-outline-decorator.ts +66 -66
- package/src/browser/monaco-quick-access-registry.ts +112 -112
- package/src/browser/monaco-quick-input-service.ts +701 -701
- package/src/browser/monaco-resolved-keybinding.ts +162 -162
- package/src/browser/monaco-snippet-suggest-provider.ts +306 -306
- package/src/browser/monaco-standalone-theme-service.ts +51 -51
- package/src/browser/monaco-status-bar-contribution.ts +110 -110
- package/src/browser/monaco-text-model-service.ts +157 -157
- package/src/browser/monaco-theming-service.ts +204 -204
- package/src/browser/monaco-to-protocol-converter.ts +82 -82
- package/src/browser/monaco-undo-redo-handler.ts +64 -64
- package/src/browser/monaco-workspace.ts +416 -416
- package/src/browser/protocol-to-monaco-converter.ts +158 -158
- package/src/browser/simple-monaco-editor.ts +228 -216
- package/src/browser/style/index.css +266 -266
- package/src/browser/textmate/index.ts +20 -20
- package/src/browser/textmate/monaco-textmate-frontend-bindings.ts +90 -90
- package/src/browser/textmate/monaco-textmate-service.ts +187 -187
- package/src/browser/textmate/monaco-theme-registry.ts +176 -176
- package/src/browser/textmate/monaco-theme-types.ts +37 -37
- package/src/browser/textmate/textmate-contribution.ts +29 -29
- package/src/browser/textmate/textmate-registry.ts +129 -129
- package/src/browser/textmate/textmate-snippet-completion-provider.ts +73 -73
- package/src/browser/textmate/textmate-tokenizer.ts +84 -84
- package/src/browser/workspace-symbol-command.ts +196 -196
- package/src/package.spec.ts +28 -28
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2019 TypeFox and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { injectable } from '@theia/core/shared/inversify';
|
|
18
|
-
import { ColorRegistry } from '@theia/core/lib/browser/color-registry';
|
|
19
|
-
import { Color, ColorDefinition } from '@theia/core/lib/common/color';
|
|
20
|
-
import { Disposable } from '@theia/core/lib/common/disposable';
|
|
21
|
-
import { ColorDefaults, ColorValue, getColorRegistry } from '@theia/monaco-editor-core/esm/vs/platform/theme/common/colorRegistry';
|
|
22
|
-
import { StandaloneServices } from '@theia/monaco-editor-core/esm/vs/editor/standalone/browser/standaloneServices';
|
|
23
|
-
import { IStandaloneThemeService } from '@theia/monaco-editor-core/esm/vs/editor/standalone/common/standaloneTheme';
|
|
24
|
-
import { Color as MonacoColor, HSLA, RGBA } from '@theia/monaco-editor-core/esm/vs/base/common/color';
|
|
25
|
-
import * as Colors from '@theia/monaco-editor-core/esm/vs/platform/theme/common/colorRegistry';
|
|
26
|
-
|
|
27
|
-
@injectable()
|
|
28
|
-
export class MonacoColorRegistry extends ColorRegistry {
|
|
29
|
-
|
|
30
|
-
protected readonly monacoThemeService = StandaloneServices.get(IStandaloneThemeService);
|
|
31
|
-
protected readonly monacoColorRegistry = getColorRegistry();
|
|
32
|
-
|
|
33
|
-
override *getColors(): IterableIterator<string> {
|
|
34
|
-
for (const { id } of this.monacoColorRegistry.getColors()) {
|
|
35
|
-
yield id;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
override getCurrentColor(id: string): string | undefined {
|
|
40
|
-
return this.monacoThemeService.getColorTheme().getColor(id)?.toString();
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
getColor(id: string): MonacoColor | undefined {
|
|
44
|
-
return this.monacoThemeService.getColorTheme().getColor(id);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
protected override doRegister(definition: ColorDefinition): Disposable {
|
|
48
|
-
const defaults: ColorDefaults = {
|
|
49
|
-
dark: this.toColor(definition.defaults?.dark),
|
|
50
|
-
light: this.toColor(definition.defaults?.light),
|
|
51
|
-
hcDark: this.toColor(definition.defaults?.hcDark ?? definition.defaults?.hc),
|
|
52
|
-
hcLight: this.toColor(definition.defaults?.hcLight),
|
|
53
|
-
};
|
|
54
|
-
const identifier = this.monacoColorRegistry.registerColor(definition.id, defaults, definition.description);
|
|
55
|
-
return Disposable.create(() => this.monacoColorRegistry.deregisterColor(identifier));
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
protected toColor(value: Color | undefined): ColorValue | null {
|
|
59
|
-
if (!value || typeof value === 'string') {
|
|
60
|
-
return value ?? null; // eslint-disable-line no-null/no-null
|
|
61
|
-
}
|
|
62
|
-
if ('kind' in value) {
|
|
63
|
-
return Colors[value.kind](value.v, value.f);
|
|
64
|
-
} else if ('r' in value) {
|
|
65
|
-
const { r, g, b, a } = value;
|
|
66
|
-
return new MonacoColor(new RGBA(r, g, b, a));
|
|
67
|
-
} else {
|
|
68
|
-
const { h, s, l, a } = value;
|
|
69
|
-
return new MonacoColor(new HSLA(h, s, l, a));
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2019 TypeFox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { injectable } from '@theia/core/shared/inversify';
|
|
18
|
+
import { ColorRegistry } from '@theia/core/lib/browser/color-registry';
|
|
19
|
+
import { Color, ColorDefinition } from '@theia/core/lib/common/color';
|
|
20
|
+
import { Disposable } from '@theia/core/lib/common/disposable';
|
|
21
|
+
import { ColorDefaults, ColorValue, getColorRegistry } from '@theia/monaco-editor-core/esm/vs/platform/theme/common/colorRegistry';
|
|
22
|
+
import { StandaloneServices } from '@theia/monaco-editor-core/esm/vs/editor/standalone/browser/standaloneServices';
|
|
23
|
+
import { IStandaloneThemeService } from '@theia/monaco-editor-core/esm/vs/editor/standalone/common/standaloneTheme';
|
|
24
|
+
import { Color as MonacoColor, HSLA, RGBA } from '@theia/monaco-editor-core/esm/vs/base/common/color';
|
|
25
|
+
import * as Colors from '@theia/monaco-editor-core/esm/vs/platform/theme/common/colorRegistry';
|
|
26
|
+
|
|
27
|
+
@injectable()
|
|
28
|
+
export class MonacoColorRegistry extends ColorRegistry {
|
|
29
|
+
|
|
30
|
+
protected readonly monacoThemeService = StandaloneServices.get(IStandaloneThemeService);
|
|
31
|
+
protected readonly monacoColorRegistry = getColorRegistry();
|
|
32
|
+
|
|
33
|
+
override *getColors(): IterableIterator<string> {
|
|
34
|
+
for (const { id } of this.monacoColorRegistry.getColors()) {
|
|
35
|
+
yield id;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
override getCurrentColor(id: string): string | undefined {
|
|
40
|
+
return this.monacoThemeService.getColorTheme().getColor(id)?.toString();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
getColor(id: string): MonacoColor | undefined {
|
|
44
|
+
return this.monacoThemeService.getColorTheme().getColor(id);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
protected override doRegister(definition: ColorDefinition): Disposable {
|
|
48
|
+
const defaults: ColorDefaults = {
|
|
49
|
+
dark: this.toColor(definition.defaults?.dark),
|
|
50
|
+
light: this.toColor(definition.defaults?.light),
|
|
51
|
+
hcDark: this.toColor(definition.defaults?.hcDark ?? definition.defaults?.hc),
|
|
52
|
+
hcLight: this.toColor(definition.defaults?.hcLight),
|
|
53
|
+
};
|
|
54
|
+
const identifier = this.monacoColorRegistry.registerColor(definition.id, defaults, definition.description);
|
|
55
|
+
return Disposable.create(() => this.monacoColorRegistry.deregisterColor(identifier));
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
protected toColor(value: Color | undefined): ColorValue | null {
|
|
59
|
+
if (!value || typeof value === 'string') {
|
|
60
|
+
return value ?? null; // eslint-disable-line no-null/no-null
|
|
61
|
+
}
|
|
62
|
+
if ('kind' in value) {
|
|
63
|
+
return Colors[value.kind](value.v, value.f);
|
|
64
|
+
} else if ('r' in value) {
|
|
65
|
+
const { r, g, b, a } = value;
|
|
66
|
+
return new MonacoColor(new RGBA(r, g, b, a));
|
|
67
|
+
} else {
|
|
68
|
+
const { h, s, l, a } = value;
|
|
69
|
+
return new MonacoColor(new HSLA(h, s, l, a));
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
}
|
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { injectable, inject } from '@theia/core/shared/inversify';
|
|
18
|
-
import { Command, CommandHandler, CommandRegistry, SelectionService } from '@theia/core';
|
|
19
|
-
import { TextEditorSelection } from '@theia/editor/lib/browser';
|
|
20
|
-
import { MonacoEditor } from './monaco-editor';
|
|
21
|
-
import { MonacoEditorProvider } from './monaco-editor-provider';
|
|
22
|
-
|
|
23
|
-
export interface MonacoEditorCommandHandler {
|
|
24
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
25
|
-
execute(editor: MonacoEditor, ...args: any[]): any;
|
|
26
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
27
|
-
isEnabled?(editor: MonacoEditor, ...args: any[]): boolean;
|
|
28
|
-
}
|
|
29
|
-
@injectable()
|
|
30
|
-
export class MonacoCommandRegistry {
|
|
31
|
-
|
|
32
|
-
@inject(MonacoEditorProvider)
|
|
33
|
-
protected readonly monacoEditors: MonacoEditorProvider;
|
|
34
|
-
|
|
35
|
-
@inject(CommandRegistry) protected readonly commands: CommandRegistry;
|
|
36
|
-
|
|
37
|
-
@inject(SelectionService) protected readonly selectionService: SelectionService;
|
|
38
|
-
|
|
39
|
-
validate(command: string | undefined): string | undefined {
|
|
40
|
-
if (!command) {
|
|
41
|
-
return undefined;
|
|
42
|
-
}
|
|
43
|
-
return this.commands.commandIds.indexOf(command) !== -1 ? command : undefined;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
registerCommand(command: Command, handler: MonacoEditorCommandHandler): void {
|
|
47
|
-
this.commands.registerCommand({
|
|
48
|
-
...command,
|
|
49
|
-
id: command.id
|
|
50
|
-
}, this.newHandler(handler));
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
registerHandler(command: string, handler: MonacoEditorCommandHandler): void {
|
|
54
|
-
this.commands.registerHandler(command, this.newHandler(handler));
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
protected newHandler(monacoHandler: MonacoEditorCommandHandler): CommandHandler {
|
|
58
|
-
return {
|
|
59
|
-
execute: (...args) => this.execute(monacoHandler, ...args),
|
|
60
|
-
isEnabled: (...args) => this.isEnabled(monacoHandler, ...args),
|
|
61
|
-
isVisible: (...args) => this.isVisible(monacoHandler, ...args)
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
66
|
-
protected execute(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): any {
|
|
67
|
-
const editor = this.monacoEditors.current;
|
|
68
|
-
if (editor) {
|
|
69
|
-
return Promise.resolve(monacoHandler.execute(editor, ...args));
|
|
70
|
-
}
|
|
71
|
-
return Promise.resolve();
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
75
|
-
protected isEnabled(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): boolean {
|
|
76
|
-
const editor = this.monacoEditors.current;
|
|
77
|
-
return !!editor && (!monacoHandler.isEnabled || monacoHandler.isEnabled(editor, ...args));
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
81
|
-
protected isVisible(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): boolean {
|
|
82
|
-
return TextEditorSelection.is(this.selectionService.selection);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { injectable, inject } from '@theia/core/shared/inversify';
|
|
18
|
+
import { Command, CommandHandler, CommandRegistry, SelectionService } from '@theia/core';
|
|
19
|
+
import { TextEditorSelection } from '@theia/editor/lib/browser';
|
|
20
|
+
import { MonacoEditor } from './monaco-editor';
|
|
21
|
+
import { MonacoEditorProvider } from './monaco-editor-provider';
|
|
22
|
+
|
|
23
|
+
export interface MonacoEditorCommandHandler {
|
|
24
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
25
|
+
execute(editor: MonacoEditor, ...args: any[]): any;
|
|
26
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
27
|
+
isEnabled?(editor: MonacoEditor, ...args: any[]): boolean;
|
|
28
|
+
}
|
|
29
|
+
@injectable()
|
|
30
|
+
export class MonacoCommandRegistry {
|
|
31
|
+
|
|
32
|
+
@inject(MonacoEditorProvider)
|
|
33
|
+
protected readonly monacoEditors: MonacoEditorProvider;
|
|
34
|
+
|
|
35
|
+
@inject(CommandRegistry) protected readonly commands: CommandRegistry;
|
|
36
|
+
|
|
37
|
+
@inject(SelectionService) protected readonly selectionService: SelectionService;
|
|
38
|
+
|
|
39
|
+
validate(command: string | undefined): string | undefined {
|
|
40
|
+
if (!command) {
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
return this.commands.commandIds.indexOf(command) !== -1 ? command : undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
registerCommand(command: Command, handler: MonacoEditorCommandHandler): void {
|
|
47
|
+
this.commands.registerCommand({
|
|
48
|
+
...command,
|
|
49
|
+
id: command.id
|
|
50
|
+
}, this.newHandler(handler));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
registerHandler(command: string, handler: MonacoEditorCommandHandler): void {
|
|
54
|
+
this.commands.registerHandler(command, this.newHandler(handler));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
protected newHandler(monacoHandler: MonacoEditorCommandHandler): CommandHandler {
|
|
58
|
+
return {
|
|
59
|
+
execute: (...args) => this.execute(monacoHandler, ...args),
|
|
60
|
+
isEnabled: (...args) => this.isEnabled(monacoHandler, ...args),
|
|
61
|
+
isVisible: (...args) => this.isVisible(monacoHandler, ...args)
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
66
|
+
protected execute(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): any {
|
|
67
|
+
const editor = this.monacoEditors.current;
|
|
68
|
+
if (editor) {
|
|
69
|
+
return Promise.resolve(monacoHandler.execute(editor, ...args));
|
|
70
|
+
}
|
|
71
|
+
return Promise.resolve();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
75
|
+
protected isEnabled(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): boolean {
|
|
76
|
+
const editor = this.monacoEditors.current;
|
|
77
|
+
return !!editor && (!monacoHandler.isEnabled || monacoHandler.isEnabled(editor, ...args));
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
81
|
+
protected isVisible(monacoHandler: MonacoEditorCommandHandler, ...args: any[]): boolean {
|
|
82
|
+
return TextEditorSelection.is(this.selectionService.selection);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
}
|
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { inject, injectable, postConstruct } from '@theia/core/shared/inversify';
|
|
18
|
-
import { CommandRegistry } from '@theia/core/lib/common/command';
|
|
19
|
-
import { Emitter } from '@theia/core/lib/common/event';
|
|
20
|
-
import { Disposable, DisposableCollection } from '@theia/core/lib/common/disposable';
|
|
21
|
-
import { ICommandEvent, ICommandService } from '@theia/monaco-editor-core/esm/vs/platform/commands/common/commands';
|
|
22
|
-
import { StandaloneCommandService, StandaloneServices } from '@theia/monaco-editor-core/esm/vs/editor/standalone/browser/standaloneServices';
|
|
23
|
-
import * as monaco from '@theia/monaco-editor-core';
|
|
24
|
-
import { IInstantiationService } from '@theia/monaco-editor-core/esm/vs/platform/instantiation/common/instantiation';
|
|
25
|
-
|
|
26
|
-
@injectable()
|
|
27
|
-
export class MonacoCommandService implements ICommandService, Disposable {
|
|
28
|
-
declare readonly _serviceBrand: undefined; // Required for type compliance.
|
|
29
|
-
protected readonly onWillExecuteCommandEmitter = new Emitter<ICommandEvent>();
|
|
30
|
-
protected readonly onDidExecuteCommandEmitter = new Emitter<ICommandEvent>();
|
|
31
|
-
protected readonly toDispose = new DisposableCollection(
|
|
32
|
-
this.onWillExecuteCommandEmitter,
|
|
33
|
-
this.onDidExecuteCommandEmitter
|
|
34
|
-
);
|
|
35
|
-
|
|
36
|
-
protected delegate: StandaloneCommandService | undefined;
|
|
37
|
-
|
|
38
|
-
constructor(
|
|
39
|
-
@inject(CommandRegistry) protected readonly commandRegistry: CommandRegistry
|
|
40
|
-
) {
|
|
41
|
-
this.toDispose.push(this.commandRegistry.onWillExecuteCommand(e => this.onWillExecuteCommandEmitter.fire(e)));
|
|
42
|
-
this.toDispose.push(this.commandRegistry.onDidExecuteCommand(e => this.onDidExecuteCommandEmitter.fire(e)));
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@postConstruct()
|
|
46
|
-
init(): void {
|
|
47
|
-
this.delegate = new StandaloneCommandService(StandaloneServices.get(IInstantiationService));
|
|
48
|
-
if (this.delegate) {
|
|
49
|
-
this.toDispose.push(this.delegate.onWillExecuteCommand(event =>
|
|
50
|
-
this.onWillExecuteCommandEmitter.fire(event)
|
|
51
|
-
));
|
|
52
|
-
this.toDispose.push(this.delegate.onDidExecuteCommand(event =>
|
|
53
|
-
this.onDidExecuteCommandEmitter.fire(event)
|
|
54
|
-
));
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
dispose(): void {
|
|
59
|
-
this.toDispose.dispose();
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
get onWillExecuteCommand(): monaco.IEvent<ICommandEvent> {
|
|
63
|
-
return this.onWillExecuteCommandEmitter.event;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
get onDidExecuteCommand(): monaco.IEvent<ICommandEvent> {
|
|
67
|
-
return this.onDidExecuteCommandEmitter.event;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
71
|
-
async executeCommand(commandId: any, ...args: any[]): Promise<any> {
|
|
72
|
-
try {
|
|
73
|
-
await this.commandRegistry.executeCommand(commandId, ...args);
|
|
74
|
-
} catch (e) {
|
|
75
|
-
if (e.code === 'NO_ACTIVE_HANDLER') {
|
|
76
|
-
return this.executeMonacoCommand(commandId, ...args);
|
|
77
|
-
}
|
|
78
|
-
throw e;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
83
|
-
async executeMonacoCommand(commandId: any, ...args: any[]): Promise<any> {
|
|
84
|
-
if (this.delegate) {
|
|
85
|
-
return this.delegate.executeCommand(commandId, ...args);
|
|
86
|
-
}
|
|
87
|
-
throw new Error(`command '${commandId}' not found`);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2017 TypeFox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { inject, injectable, postConstruct } from '@theia/core/shared/inversify';
|
|
18
|
+
import { CommandRegistry } from '@theia/core/lib/common/command';
|
|
19
|
+
import { Emitter } from '@theia/core/lib/common/event';
|
|
20
|
+
import { Disposable, DisposableCollection } from '@theia/core/lib/common/disposable';
|
|
21
|
+
import { ICommandEvent, ICommandService } from '@theia/monaco-editor-core/esm/vs/platform/commands/common/commands';
|
|
22
|
+
import { StandaloneCommandService, StandaloneServices } from '@theia/monaco-editor-core/esm/vs/editor/standalone/browser/standaloneServices';
|
|
23
|
+
import * as monaco from '@theia/monaco-editor-core';
|
|
24
|
+
import { IInstantiationService } from '@theia/monaco-editor-core/esm/vs/platform/instantiation/common/instantiation';
|
|
25
|
+
|
|
26
|
+
@injectable()
|
|
27
|
+
export class MonacoCommandService implements ICommandService, Disposable {
|
|
28
|
+
declare readonly _serviceBrand: undefined; // Required for type compliance.
|
|
29
|
+
protected readonly onWillExecuteCommandEmitter = new Emitter<ICommandEvent>();
|
|
30
|
+
protected readonly onDidExecuteCommandEmitter = new Emitter<ICommandEvent>();
|
|
31
|
+
protected readonly toDispose = new DisposableCollection(
|
|
32
|
+
this.onWillExecuteCommandEmitter,
|
|
33
|
+
this.onDidExecuteCommandEmitter
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
protected delegate: StandaloneCommandService | undefined;
|
|
37
|
+
|
|
38
|
+
constructor(
|
|
39
|
+
@inject(CommandRegistry) protected readonly commandRegistry: CommandRegistry
|
|
40
|
+
) {
|
|
41
|
+
this.toDispose.push(this.commandRegistry.onWillExecuteCommand(e => this.onWillExecuteCommandEmitter.fire(e)));
|
|
42
|
+
this.toDispose.push(this.commandRegistry.onDidExecuteCommand(e => this.onDidExecuteCommandEmitter.fire(e)));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@postConstruct()
|
|
46
|
+
init(): void {
|
|
47
|
+
this.delegate = new StandaloneCommandService(StandaloneServices.get(IInstantiationService));
|
|
48
|
+
if (this.delegate) {
|
|
49
|
+
this.toDispose.push(this.delegate.onWillExecuteCommand(event =>
|
|
50
|
+
this.onWillExecuteCommandEmitter.fire(event)
|
|
51
|
+
));
|
|
52
|
+
this.toDispose.push(this.delegate.onDidExecuteCommand(event =>
|
|
53
|
+
this.onDidExecuteCommandEmitter.fire(event)
|
|
54
|
+
));
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
dispose(): void {
|
|
59
|
+
this.toDispose.dispose();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
get onWillExecuteCommand(): monaco.IEvent<ICommandEvent> {
|
|
63
|
+
return this.onWillExecuteCommandEmitter.event;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
get onDidExecuteCommand(): monaco.IEvent<ICommandEvent> {
|
|
67
|
+
return this.onDidExecuteCommandEmitter.event;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
71
|
+
async executeCommand(commandId: any, ...args: any[]): Promise<any> {
|
|
72
|
+
try {
|
|
73
|
+
await this.commandRegistry.executeCommand(commandId, ...args);
|
|
74
|
+
} catch (e) {
|
|
75
|
+
if (e.code === 'NO_ACTIVE_HANDLER') {
|
|
76
|
+
return this.executeMonacoCommand(commandId, ...args);
|
|
77
|
+
}
|
|
78
|
+
throw e;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
83
|
+
async executeMonacoCommand(commandId: any, ...args: any[]): Promise<any> {
|
|
84
|
+
if (this.delegate) {
|
|
85
|
+
return this.delegate.executeCommand(commandId, ...args);
|
|
86
|
+
}
|
|
87
|
+
throw new Error(`command '${commandId}' not found`);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
}
|