@theia/plugin-ext 1.28.0-next.15 → 1.28.0-next.19
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/lib/common/plugin-api-rpc-model.d.ts +1 -0
- package/lib/common/plugin-api-rpc-model.d.ts.map +1 -1
- package/lib/common/plugin-api-rpc-model.js.map +1 -1
- package/lib/common/plugin-protocol.d.ts +2 -0
- package/lib/common/plugin-protocol.d.ts.map +1 -1
- package/lib/common/plugin-protocol.js.map +1 -1
- package/lib/hosted/node/scanners/scanner-theia.d.ts +5 -1
- package/lib/hosted/node/scanners/scanner-theia.d.ts.map +1 -1
- package/lib/hosted/node/scanners/scanner-theia.js +22 -15
- package/lib/hosted/node/scanners/scanner-theia.js.map +1 -1
- package/lib/main/browser/comments/comment-thread-widget.js +5 -5
- package/lib/main/browser/comments/comment-thread-widget.js.map +1 -1
- package/lib/main/browser/menus/menus-contribution-handler.d.ts +24 -88
- package/lib/main/browser/menus/menus-contribution-handler.d.ts.map +1 -1
- package/lib/main/browser/menus/menus-contribution-handler.js +108 -518
- package/lib/main/browser/menus/menus-contribution-handler.js.map +1 -1
- package/lib/main/browser/menus/plugin-menu-command-adapter.d.ts +44 -0
- package/lib/main/browser/menus/plugin-menu-command-adapter.d.ts.map +1 -0
- package/lib/main/browser/menus/plugin-menu-command-adapter.js +272 -0
- package/lib/main/browser/menus/plugin-menu-command-adapter.js.map +1 -0
- package/lib/main/browser/menus/vscode-theia-menu-mappings.d.ts +18 -0
- package/lib/main/browser/menus/vscode-theia-menu-mappings.d.ts.map +1 -0
- package/lib/main/browser/menus/vscode-theia-menu-mappings.js +88 -0
- package/lib/main/browser/menus/vscode-theia-menu-mappings.js.map +1 -0
- package/lib/main/browser/plugin-ext-frontend-module.d.ts.map +1 -1
- package/lib/main/browser/plugin-ext-frontend-module.js +4 -1
- package/lib/main/browser/plugin-ext-frontend-module.js.map +1 -1
- package/lib/main/browser/plugin-shared-style.d.ts.map +1 -1
- package/lib/main/browser/plugin-shared-style.js +0 -1
- package/lib/main/browser/plugin-shared-style.js.map +1 -1
- package/lib/main/browser/view/tree-view-widget.js +2 -2
- package/lib/main/browser/view/tree-view-widget.js.map +1 -1
- package/lib/plugin/languages/signature.d.ts.map +1 -1
- package/lib/plugin/languages/signature.js +5 -1
- package/lib/plugin/languages/signature.js.map +1 -1
- package/lib/plugin/type-converters.d.ts.map +1 -1
- package/lib/plugin/type-converters.js +4 -2
- package/lib/plugin/type-converters.js.map +1 -1
- package/lib/plugin/types-impl.d.ts +1 -0
- package/lib/plugin/types-impl.d.ts.map +1 -1
- package/lib/plugin/types-impl.js.map +1 -1
- package/package.json +24 -24
- package/src/common/plugin-api-rpc-model.ts +1 -0
- package/src/common/plugin-protocol.ts +2 -0
- package/src/hosted/node/scanners/scanner-theia.ts +21 -15
- package/src/main/browser/comments/comment-thread-widget.tsx +5 -5
- package/src/main/browser/menus/menus-contribution-handler.ts +104 -578
- package/src/main/browser/menus/plugin-menu-command-adapter.ts +257 -0
- package/src/main/browser/menus/vscode-theia-menu-mappings.ts +85 -0
- package/src/main/browser/plugin-ext-frontend-module.ts +4 -1
- package/src/main/browser/plugin-shared-style.ts +0 -1
- package/src/main/browser/view/tree-view-widget.tsx +2 -2
- package/src/plugin/languages/signature.ts +3 -1
- package/src/plugin/type-converters.ts +4 -2
- package/src/plugin/types-impl.ts +1 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2022 Ericsson 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 WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { CommandRegistry, Disposable, MenuCommandAdapter, MenuPath, SelectionService, UriSelection } from '@theia/core';
|
|
18
|
+
import { ResourceContextKey } from '@theia/core/lib/browser/resource-context-key';
|
|
19
|
+
import { inject, injectable, postConstruct } from '@theia/core/shared/inversify';
|
|
20
|
+
import { URI as CodeUri } from '@theia/core/shared/vscode-uri';
|
|
21
|
+
import { TreeWidgetSelection } from '@theia/core/lib/browser/tree/tree-widget-selection';
|
|
22
|
+
import { ScmRepository } from '@theia/scm/lib/browser/scm-repository';
|
|
23
|
+
import { ScmService } from '@theia/scm/lib/browser/scm-service';
|
|
24
|
+
import { TimelineItem } from '@theia/timeline/lib/common/timeline-model';
|
|
25
|
+
import { ScmCommandArg, TimelineCommandArg, TreeViewSelection } from '../../../common';
|
|
26
|
+
import { PluginScmProvider, PluginScmResource, PluginScmResourceGroup } from '../scm-main';
|
|
27
|
+
import { TreeViewWidget } from '../view/tree-view-widget';
|
|
28
|
+
import { CodeEditorWidgetUtil, codeToTheiaMappings, ContributionPoint } from './vscode-theia-menu-mappings';
|
|
29
|
+
import { TAB_BAR_TOOLBAR_CONTEXT_MENU } from '@theia/core/lib/browser/shell/tab-bar-toolbar';
|
|
30
|
+
|
|
31
|
+
export type ArgumentAdapter = (...args: unknown[]) => unknown[];
|
|
32
|
+
|
|
33
|
+
export class ReferenceCountingSet<T> {
|
|
34
|
+
protected readonly references: Map<T, number>;
|
|
35
|
+
constructor(initialMembers?: Iterable<T>) {
|
|
36
|
+
this.references = new Map();
|
|
37
|
+
if (initialMembers) {
|
|
38
|
+
for (const member of initialMembers) {
|
|
39
|
+
this.add(member);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
add(newMember: T): ReferenceCountingSet<T> {
|
|
45
|
+
const value = this.references.get(newMember) ?? 0;
|
|
46
|
+
this.references.set(newMember, value + 1);
|
|
47
|
+
return this;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** @returns true if the deletion results in the removal of the element from the set */
|
|
51
|
+
delete(member: T): boolean {
|
|
52
|
+
const value = this.references.get(member);
|
|
53
|
+
if (value === undefined) { } else if (value <= 1) {
|
|
54
|
+
this.references.delete(member);
|
|
55
|
+
return true;
|
|
56
|
+
} else {
|
|
57
|
+
this.references.set(member, value - 1);
|
|
58
|
+
}
|
|
59
|
+
return false;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
has(maybeMember: T): boolean {
|
|
63
|
+
return this.references.has(maybeMember);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@injectable()
|
|
68
|
+
export class PluginMenuCommandAdapter implements MenuCommandAdapter {
|
|
69
|
+
@inject(CommandRegistry) protected readonly commandRegistry: CommandRegistry;
|
|
70
|
+
@inject(CodeEditorWidgetUtil) protected readonly codeEditorUtil: CodeEditorWidgetUtil;
|
|
71
|
+
@inject(ScmService) protected readonly scmService: ScmService;
|
|
72
|
+
@inject(SelectionService) protected readonly selectionService: SelectionService;
|
|
73
|
+
@inject(ResourceContextKey) protected readonly resourceContextKey: ResourceContextKey;
|
|
74
|
+
|
|
75
|
+
protected readonly commands = new ReferenceCountingSet<string>();
|
|
76
|
+
protected readonly argumentAdapters = new Map<string, ArgumentAdapter>();
|
|
77
|
+
protected readonly separator = ':)(:';
|
|
78
|
+
|
|
79
|
+
@postConstruct()
|
|
80
|
+
protected init(): void {
|
|
81
|
+
const toCommentArgs: ArgumentAdapter = (...args) => this.toCommentArgs(...args);
|
|
82
|
+
const firstArgOnly: ArgumentAdapter = (...args) => [args[0]];
|
|
83
|
+
const noArgs: ArgumentAdapter = () => [];
|
|
84
|
+
const toScmArgs: ArgumentAdapter = (...args) => this.toScmArgs(...args);
|
|
85
|
+
const selectedResource = () => this.getSelectedResource();
|
|
86
|
+
const widgetURI: ArgumentAdapter = widget => this.codeEditorUtil.is(widget) ? [this.codeEditorUtil.getResourceUri(widget)] : [];
|
|
87
|
+
(<Array<[ContributionPoint, ArgumentAdapter | undefined]>>[
|
|
88
|
+
['comments/comment/context', toCommentArgs],
|
|
89
|
+
['comments/comment/title', toCommentArgs],
|
|
90
|
+
['comments/commentThread/context', toCommentArgs],
|
|
91
|
+
['debug/callstack/context', firstArgOnly],
|
|
92
|
+
['debug/toolBar', noArgs],
|
|
93
|
+
['editor/context', selectedResource],
|
|
94
|
+
['editor/title', widgetURI],
|
|
95
|
+
['editor/title/context', selectedResource],
|
|
96
|
+
['explorer/context', selectedResource],
|
|
97
|
+
['scm/resourceFolder/context', toScmArgs],
|
|
98
|
+
['scm/resourceGroup/context', toScmArgs],
|
|
99
|
+
['scm/resourceState/context', toScmArgs],
|
|
100
|
+
['scm/title', () => this.toScmArg(this.scmService.selectedRepository)],
|
|
101
|
+
['timeline/item/context', (...args) => this.toTimelineArgs(...args)],
|
|
102
|
+
['view/item/context', (...args) => this.toTreeArgs(...args)],
|
|
103
|
+
['view/title', noArgs],
|
|
104
|
+
]).forEach(([contributionPoint, adapter]) => {
|
|
105
|
+
if (adapter) {
|
|
106
|
+
const paths = codeToTheiaMappings.get(contributionPoint);
|
|
107
|
+
if (paths) {
|
|
108
|
+
paths.forEach(([path]) => this.addArgumentAdapter(path, adapter));
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
});
|
|
112
|
+
this.addArgumentAdapter(TAB_BAR_TOOLBAR_CONTEXT_MENU, widgetURI);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
canHandle(menuPath: MenuPath, command: string, ...commandArgs: unknown[]): number {
|
|
116
|
+
if (this.commands.has(command) && this.getArgumentAdapterForMenu(menuPath)) {
|
|
117
|
+
return 500;
|
|
118
|
+
}
|
|
119
|
+
return -1;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
executeCommand(menuPath: MenuPath, command: string, ...commandArgs: unknown[]): Promise<unknown> {
|
|
123
|
+
const argumentAdapter = this.getAdapterOrThrow(menuPath);
|
|
124
|
+
return this.commandRegistry.executeCommand(command, ...argumentAdapter(...commandArgs));
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
isVisible(menuPath: MenuPath, command: string, ...commandArgs: unknown[]): boolean {
|
|
128
|
+
const argumentAdapter = this.getAdapterOrThrow(menuPath);
|
|
129
|
+
return this.commandRegistry.isVisible(command, ...argumentAdapter(...commandArgs));
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
isEnabled(menuPath: MenuPath, command: string, ...commandArgs: unknown[]): boolean {
|
|
133
|
+
const argumentAdapter = this.getAdapterOrThrow(menuPath);
|
|
134
|
+
return this.commandRegistry.isEnabled(command, ...argumentAdapter(...commandArgs));
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
isToggled(menuPath: MenuPath, command: string, ...commandArgs: unknown[]): boolean {
|
|
138
|
+
const argumentAdapter = this.getAdapterOrThrow(menuPath);
|
|
139
|
+
return this.commandRegistry.isToggled(command, ...argumentAdapter(...commandArgs));
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
protected getAdapterOrThrow(menuPath: MenuPath): ArgumentAdapter {
|
|
143
|
+
const argumentAdapter = this.getArgumentAdapterForMenu(menuPath);
|
|
144
|
+
if (!argumentAdapter) {
|
|
145
|
+
throw new Error('PluginMenuCommandAdapter attempted to execute command for unregistered menu: ' + JSON.stringify(menuPath));
|
|
146
|
+
}
|
|
147
|
+
return argumentAdapter;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
addCommand(commandId: string): Disposable {
|
|
151
|
+
this.commands.add(commandId);
|
|
152
|
+
return Disposable.create(() => this.commands.delete(commandId));
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
protected getArgumentAdapterForMenu(menuPath: MenuPath): ArgumentAdapter | undefined {
|
|
156
|
+
return this.argumentAdapters.get(menuPath.join(this.separator));
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
protected addArgumentAdapter(menuPath: MenuPath, adapter: ArgumentAdapter): void {
|
|
160
|
+
this.argumentAdapters.set(menuPath.join(this.separator), adapter);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
164
|
+
|
|
165
|
+
protected toCommentArgs(...args: any[]): any[] {
|
|
166
|
+
const arg = args[0];
|
|
167
|
+
if ('text' in arg) {
|
|
168
|
+
if ('commentUniqueId' in arg) {
|
|
169
|
+
return [{
|
|
170
|
+
commentControlHandle: arg.thread.controllerHandle,
|
|
171
|
+
commentThreadHandle: arg.thread.commentThreadHandle,
|
|
172
|
+
text: arg.text,
|
|
173
|
+
commentUniqueId: arg.commentUniqueId
|
|
174
|
+
}];
|
|
175
|
+
}
|
|
176
|
+
return [{
|
|
177
|
+
commentControlHandle: arg.thread.controllerHandle,
|
|
178
|
+
commentThreadHandle: arg.thread.commentThreadHandle,
|
|
179
|
+
text: arg.text
|
|
180
|
+
}];
|
|
181
|
+
}
|
|
182
|
+
return [{
|
|
183
|
+
commentControlHandle: arg.thread.controllerHandle,
|
|
184
|
+
commentThreadHandle: arg.thread.commentThreadHandle,
|
|
185
|
+
commentUniqueId: arg.commentUniqueId
|
|
186
|
+
}];
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
protected toScmArgs(...args: any[]): any[] {
|
|
190
|
+
const scmArgs: any[] = [];
|
|
191
|
+
for (const arg of args) {
|
|
192
|
+
const scmArg = this.toScmArg(arg);
|
|
193
|
+
if (scmArg) {
|
|
194
|
+
scmArgs.push(scmArg);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
return scmArgs;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
protected toScmArg(arg: any): ScmCommandArg | undefined {
|
|
201
|
+
if (arg instanceof ScmRepository && arg.provider instanceof PluginScmProvider) {
|
|
202
|
+
return {
|
|
203
|
+
sourceControlHandle: arg.provider.handle
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
if (arg instanceof PluginScmResourceGroup) {
|
|
207
|
+
return {
|
|
208
|
+
sourceControlHandle: arg.provider.handle,
|
|
209
|
+
resourceGroupHandle: arg.handle
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
if (arg instanceof PluginScmResource) {
|
|
213
|
+
return {
|
|
214
|
+
sourceControlHandle: arg.group.provider.handle,
|
|
215
|
+
resourceGroupHandle: arg.group.handle,
|
|
216
|
+
resourceStateHandle: arg.handle
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
protected toTimelineArgs(...args: any[]): any[] {
|
|
222
|
+
const timelineArgs: any[] = [];
|
|
223
|
+
const arg = args[0];
|
|
224
|
+
timelineArgs.push(this.toTimelineArg(arg));
|
|
225
|
+
timelineArgs.push(CodeUri.parse(arg.uri));
|
|
226
|
+
timelineArgs.push(arg.source ?? '');
|
|
227
|
+
return timelineArgs;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
protected toTimelineArg(arg: TimelineItem): TimelineCommandArg {
|
|
231
|
+
return {
|
|
232
|
+
timelineHandle: arg.handle,
|
|
233
|
+
source: arg.source,
|
|
234
|
+
uri: arg.uri
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
protected toTreeArgs(...args: any[]): any[] {
|
|
239
|
+
const treeArgs: any[] = [];
|
|
240
|
+
for (const arg of args) {
|
|
241
|
+
if (TreeViewSelection.is(arg)) {
|
|
242
|
+
treeArgs.push(arg);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
return treeArgs;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
protected getSelectedResource(): [CodeUri | TreeViewSelection | undefined] {
|
|
249
|
+
const selection = this.selectionService.selection;
|
|
250
|
+
if (TreeWidgetSelection.is(selection) && selection.source instanceof TreeViewWidget && selection[0]) {
|
|
251
|
+
return [selection.source.toTreeViewSelection(selection[0])];
|
|
252
|
+
}
|
|
253
|
+
const uri = UriSelection.getUri(selection) ?? this.resourceContextKey.get();
|
|
254
|
+
return [uri ? uri['codeUri'] : undefined];
|
|
255
|
+
}
|
|
256
|
+
/* eslint-enable @typescript-eslint/no-explicit-any */
|
|
257
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2022 Ericsson 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 WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { MenuPath } from '@theia/core';
|
|
18
|
+
import { SHELL_TABBAR_CONTEXT_MENU } from '@theia/core/lib/browser';
|
|
19
|
+
import { Navigatable } from '@theia/core/lib/browser/navigatable';
|
|
20
|
+
import { injectable } from '@theia/core/shared/inversify';
|
|
21
|
+
import { URI as CodeUri } from '@theia/core/shared/vscode-uri';
|
|
22
|
+
import { DebugStackFramesWidget } from '@theia/debug/lib/browser/view/debug-stack-frames-widget';
|
|
23
|
+
import { DebugThreadsWidget } from '@theia/debug/lib/browser/view/debug-threads-widget';
|
|
24
|
+
import { EditorWidget, EDITOR_CONTEXT_MENU } from '@theia/editor/lib/browser';
|
|
25
|
+
import { NAVIGATOR_CONTEXT_MENU } from '@theia/navigator/lib/browser/navigator-contribution';
|
|
26
|
+
import { ScmTreeWidget } from '@theia/scm/lib/browser/scm-tree-widget';
|
|
27
|
+
import { TIMELINE_ITEM_CONTEXT_MENU } from '@theia/timeline/lib/browser/timeline-tree-widget';
|
|
28
|
+
import { COMMENT_CONTEXT, COMMENT_THREAD_CONTEXT, COMMENT_TITLE } from '../comments/comment-thread-widget';
|
|
29
|
+
import { VIEW_ITEM_CONTEXT_MENU } from '../view/tree-view-widget';
|
|
30
|
+
import { WebviewWidget } from '../webview/webview';
|
|
31
|
+
|
|
32
|
+
export const PLUGIN_EDITOR_TITLE_MENU = ['plugin_editor/title'];
|
|
33
|
+
export const PLUGIN_SCM_TITLE_MENU = ['plugin_scm/title'];
|
|
34
|
+
export const PLUGIN_VIEW_TITLE_MENU = ['plugin_view/title'];
|
|
35
|
+
|
|
36
|
+
export const implementedVSCodeContributionPoints = [
|
|
37
|
+
'comments/comment/context',
|
|
38
|
+
'comments/comment/title',
|
|
39
|
+
'comments/commentThread/context',
|
|
40
|
+
'debug/callstack/context',
|
|
41
|
+
'editor/context',
|
|
42
|
+
'editor/title',
|
|
43
|
+
'editor/title/context',
|
|
44
|
+
'explorer/context',
|
|
45
|
+
'scm/resourceFolder/context',
|
|
46
|
+
'scm/resourceGroup/context',
|
|
47
|
+
'scm/resourceState/context',
|
|
48
|
+
'scm/title',
|
|
49
|
+
'timeline/item/context',
|
|
50
|
+
'view/item/context',
|
|
51
|
+
'view/title'
|
|
52
|
+
] as const;
|
|
53
|
+
|
|
54
|
+
export type ContributionPoint = (typeof implementedVSCodeContributionPoints)[number];
|
|
55
|
+
|
|
56
|
+
/** The values are combinations of MenuPath and `when` clause, if any */
|
|
57
|
+
export const codeToTheiaMappings = new Map<ContributionPoint, Array<[MenuPath] | [MenuPath, string]>>([
|
|
58
|
+
['comments/comment/context', [[COMMENT_CONTEXT]]],
|
|
59
|
+
['comments/comment/title', [[COMMENT_TITLE]]],
|
|
60
|
+
['comments/commentThread/context', [[COMMENT_THREAD_CONTEXT]]],
|
|
61
|
+
['debug/callstack/context', [[DebugStackFramesWidget.CONTEXT_MENU], [DebugThreadsWidget.CONTEXT_MENU]]],
|
|
62
|
+
['editor/context', [[EDITOR_CONTEXT_MENU]]],
|
|
63
|
+
['editor/title', [[PLUGIN_EDITOR_TITLE_MENU]]],
|
|
64
|
+
['editor/title/context', [[SHELL_TABBAR_CONTEXT_MENU, 'resourceSet']]],
|
|
65
|
+
['explorer/context', [[NAVIGATOR_CONTEXT_MENU]]],
|
|
66
|
+
['scm/resourceFolder/context', [[ScmTreeWidget.RESOURCE_FOLDER_CONTEXT_MENU]]],
|
|
67
|
+
['scm/resourceGroup/context', [[ScmTreeWidget.RESOURCE_GROUP_CONTEXT_MENU]]],
|
|
68
|
+
['scm/resourceState/context', [[ScmTreeWidget.RESOURCE_CONTEXT_MENU]]],
|
|
69
|
+
['scm/title', [[PLUGIN_SCM_TITLE_MENU]]],
|
|
70
|
+
['timeline/item/context', [[TIMELINE_ITEM_CONTEXT_MENU]]],
|
|
71
|
+
['view/item/context', [[VIEW_ITEM_CONTEXT_MENU]]],
|
|
72
|
+
['view/title', [[PLUGIN_VIEW_TITLE_MENU]]],
|
|
73
|
+
]);
|
|
74
|
+
|
|
75
|
+
type CodeEditorWidget = EditorWidget | WebviewWidget;
|
|
76
|
+
@injectable()
|
|
77
|
+
export class CodeEditorWidgetUtil {
|
|
78
|
+
is(arg: unknown): arg is CodeEditorWidget {
|
|
79
|
+
return arg instanceof EditorWidget || arg instanceof WebviewWidget;
|
|
80
|
+
}
|
|
81
|
+
getResourceUri(editor: CodeEditorWidget): CodeUri | undefined {
|
|
82
|
+
const resourceUri = Navigatable.is(editor) && editor.getResourceUri();
|
|
83
|
+
return resourceUri ? resourceUri['codeUri'] : undefined;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -35,7 +35,7 @@ import { PluginWidget } from './plugin-ext-widget';
|
|
|
35
35
|
import { PluginFrontendViewContribution } from './plugin-frontend-view-contribution';
|
|
36
36
|
import { PluginExtDeployCommandService } from './plugin-ext-deploy-command';
|
|
37
37
|
import { EditorModelService } from './text-editor-model-service';
|
|
38
|
-
import {
|
|
38
|
+
import { MenusContributionPointHandler } from './menus/menus-contribution-handler';
|
|
39
39
|
import { PluginContributionHandler } from './plugin-contribution-handler';
|
|
40
40
|
import { PluginViewRegistry, PLUGIN_VIEW_CONTAINER_FACTORY_ID, PLUGIN_VIEW_FACTORY_ID, PLUGIN_VIEW_DATA_FACTORY_ID } from './view/plugin-view-registry';
|
|
41
41
|
import { TextContentResourceResolver } from './workspace-main';
|
|
@@ -78,6 +78,8 @@ import { WebviewFrontendSecurityWarnings } from './webview/webview-frontend-secu
|
|
|
78
78
|
import { PluginAuthenticationServiceImpl } from './plugin-authentication-service';
|
|
79
79
|
import { AuthenticationService } from '@theia/core/lib/browser/authentication-service';
|
|
80
80
|
import { bindTreeViewDecoratorUtilities, TreeViewDecoratorService } from './view/tree-view-decorator-service';
|
|
81
|
+
import { CodeEditorWidgetUtil } from './menus/vscode-theia-menu-mappings';
|
|
82
|
+
import { PluginMenuCommandAdapter } from './menus/plugin-menu-command-adapter';
|
|
81
83
|
|
|
82
84
|
export default new ContainerModule((bind, unbind, isBound, rebind) => {
|
|
83
85
|
|
|
@@ -213,6 +215,7 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
|
|
|
213
215
|
bind(LabelProviderContribution).toService(PluginIconThemeService);
|
|
214
216
|
|
|
215
217
|
bind(MenusContributionPointHandler).toSelf().inSingletonScope();
|
|
218
|
+
bind(PluginMenuCommandAdapter).toSelf().inSingletonScope();
|
|
216
219
|
bind(CodeEditorWidgetUtil).toSelf().inSingletonScope();
|
|
217
220
|
bind(KeybindingsContributionPointHandler).toSelf().inSingletonScope();
|
|
218
221
|
bind(PluginContributionHandler).toSelf().inSingletonScope();
|
|
@@ -111,7 +111,6 @@ export class PluginSharedStyle {
|
|
|
111
111
|
const iconClass = 'plugin-icon-' + this.iconSequence++;
|
|
112
112
|
const toDispose = new DisposableCollection();
|
|
113
113
|
toDispose.push(this.insertRule('.' + iconClass, theme => `
|
|
114
|
-
display: inline-block;
|
|
115
114
|
background-position: 2px;
|
|
116
115
|
width: ${size}px;
|
|
117
116
|
height: ${size}px;
|
|
@@ -399,14 +399,14 @@ export class TreeViewWidget extends TreeViewWelcomeWidget {
|
|
|
399
399
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
400
400
|
protected renderInlineCommand(node: ActionMenuNode, index: number, tabbable: boolean, arg: any): React.ReactNode {
|
|
401
401
|
const { icon } = node;
|
|
402
|
-
if (!icon || !this.commands.isVisible(node.
|
|
402
|
+
if (!icon || !this.commands.isVisible(node.command, arg) || !node.when || !this.contextKeys.match(node.when)) {
|
|
403
403
|
return false;
|
|
404
404
|
}
|
|
405
405
|
const className = [TREE_NODE_SEGMENT_CLASS, TREE_NODE_TAIL_CLASS, icon, ACTION_ITEM, 'theia-tree-view-inline-action'].join(' ');
|
|
406
406
|
const tabIndex = tabbable ? 0 : undefined;
|
|
407
407
|
return <div key={index} className={className} title={node.label} tabIndex={tabIndex} onClick={e => {
|
|
408
408
|
e.stopPropagation();
|
|
409
|
-
this.commands.executeCommand(node.
|
|
409
|
+
this.commands.executeCommand(node.command, arg);
|
|
410
410
|
}} />;
|
|
411
411
|
}
|
|
412
412
|
|
|
@@ -52,6 +52,7 @@ export class SignatureHelpAdapter {
|
|
|
52
52
|
if (!value) {
|
|
53
53
|
return undefined;
|
|
54
54
|
}
|
|
55
|
+
value.activeParameter = value.signatures[value.activeSignature].activeParameter ?? value.activeParameter;
|
|
55
56
|
const id = this.idSequence++;
|
|
56
57
|
this.cache.set(id, value);
|
|
57
58
|
return Converter.SignatureHelp.from(id, value);
|
|
@@ -65,7 +66,8 @@ export class SignatureHelpAdapter {
|
|
|
65
66
|
if (saved) {
|
|
66
67
|
activeSignatureHelp = saved;
|
|
67
68
|
activeSignatureHelp.activeSignature = revivedSignatureHelp.activeSignature;
|
|
68
|
-
|
|
69
|
+
const { activeSignature } = revivedSignatureHelp;
|
|
70
|
+
activeSignatureHelp.activeParameter = revivedSignatureHelp.signatures[activeSignature].activeParameter ?? revivedSignatureHelp.activeParameter;
|
|
69
71
|
} else {
|
|
70
72
|
activeSignatureHelp = revivedSignatureHelp;
|
|
71
73
|
}
|
|
@@ -482,7 +482,8 @@ export namespace SignatureInformation {
|
|
|
482
482
|
return {
|
|
483
483
|
label: info.label,
|
|
484
484
|
documentation: info.documentation ? fromMarkdown(info.documentation) : undefined,
|
|
485
|
-
parameters: info.parameters && info.parameters.map(ParameterInformation.from)
|
|
485
|
+
parameters: info.parameters && info.parameters.map(ParameterInformation.from),
|
|
486
|
+
activeParameter: info.activeParameter
|
|
486
487
|
};
|
|
487
488
|
}
|
|
488
489
|
|
|
@@ -490,7 +491,8 @@ export namespace SignatureInformation {
|
|
|
490
491
|
return {
|
|
491
492
|
label: info.label,
|
|
492
493
|
documentation: MarkdownStringDTO.is(info.documentation) ? toMarkdown(info.documentation) : info.documentation,
|
|
493
|
-
parameters: info.parameters && info.parameters.map(ParameterInformation.to)
|
|
494
|
+
parameters: info.parameters && info.parameters.map(ParameterInformation.to),
|
|
495
|
+
activeParameter: info.activeParameter
|
|
494
496
|
};
|
|
495
497
|
}
|
|
496
498
|
}
|
package/src/plugin/types-impl.ts
CHANGED
|
@@ -1071,6 +1071,7 @@ export class SignatureInformation {
|
|
|
1071
1071
|
label: string;
|
|
1072
1072
|
documentation?: string | theia.MarkdownString;
|
|
1073
1073
|
parameters: ParameterInformation[];
|
|
1074
|
+
activeParameter?: number;
|
|
1074
1075
|
|
|
1075
1076
|
constructor(label: string, documentation?: string | theia.MarkdownString) {
|
|
1076
1077
|
this.label = label;
|