-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathtree-views.ts
More file actions
297 lines (248 loc) · 11 KB
/
tree-views.ts
File metadata and controls
297 lines (248 loc) · 11 KB
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
/********************************************************************************
* Copyright (C) 2018 Red Hat, Inc. 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
********************************************************************************/
// tslint:disable:no-any
import * as path from 'path';
import URI from 'vscode-uri';
import { TreeDataProvider, TreeView, TreeViewExpansionEvent, TreeItem2, TreeItemLabel } from '@theia/plugin';
import { Emitter } from '@theia/core/lib/common/event';
import { Disposable, ThemeIcon } from '../types-impl';
import { Plugin, PLUGIN_RPC_CONTEXT, TreeViewsExt, TreeViewsMain, TreeViewItem } from '../../common/plugin-api-rpc';
import { RPCProtocol } from '../../common/rpc-protocol';
import { CommandRegistryImpl } from '../command-registry';
import { TreeViewSelection } from '../../common';
import { PluginPackage } from '../../common/plugin-protocol';
export class TreeViewsExtImpl implements TreeViewsExt {
private proxy: TreeViewsMain;
private treeViews: Map<string, TreeViewExtImpl<any>> = new Map<string, TreeViewExtImpl<any>>();
constructor(rpc: RPCProtocol, commandRegistry: CommandRegistryImpl) {
this.proxy = rpc.getProxy(PLUGIN_RPC_CONTEXT.TREE_VIEWS_MAIN);
commandRegistry.registerArgumentProcessor({
processArgument: arg => {
if (!TreeViewSelection.is(arg)) {
return arg;
}
const { treeViewId, treeItemId } = arg;
const treeView = this.treeViews.get(treeViewId);
return treeView && treeView.getTreeItem(treeItemId);
}
});
}
registerTreeDataProvider<T>(plugin: Plugin, treeViewId: string, treeDataProvider: TreeDataProvider<T>): Disposable {
const treeView = this.createTreeView(plugin, treeViewId, { treeDataProvider });
return Disposable.create(() => {
this.treeViews.delete(treeViewId);
treeView.dispose();
});
}
createTreeView<T>(plugin: Plugin, treeViewId: string, options: { treeDataProvider: TreeDataProvider<T> }): TreeView<T> {
if (!options || !options.treeDataProvider) {
throw new Error('Options with treeDataProvider is mandatory');
}
const treeView = new TreeViewExtImpl(plugin, treeViewId, options.treeDataProvider, this.proxy);
this.treeViews.set(treeViewId, treeView);
return {
// tslint:disable-next-line:typedef
get onDidExpandElement() {
return treeView.onDidExpandElement;
},
// tslint:disable-next-line:typedef
get onDidCollapseElement() {
return treeView.onDidCollapseElement;
},
// tslint:disable-next-line:typedef
get selection() {
return treeView.selectedElements;
},
reveal: (element: T, selectionOptions: { select?: boolean }): Thenable<void> =>
treeView.reveal(element, selectionOptions),
dispose: () => {
this.treeViews.delete(treeViewId);
treeView.dispose();
}
};
}
async $getChildren(treeViewId: string, treeItemId: string): Promise<TreeViewItem[] | undefined> {
const treeView = this.treeViews.get(treeViewId);
if (!treeView) {
throw new Error('No tree view with id' + treeViewId);
}
return treeView.getChildren(treeItemId);
}
async $setExpanded(treeViewId: string, treeItemId: string, expanded: boolean): Promise<any> {
const treeView = this.treeViews.get(treeViewId);
if (!treeView) {
throw new Error('No tree view with id' + treeViewId);
}
if (expanded) {
return treeView.onExpanded(treeItemId);
} else {
return treeView.onCollapsed(treeItemId);
}
}
}
class TreeViewExtImpl<T> extends Disposable {
private onDidExpandElementEmitter: Emitter<TreeViewExpansionEvent<T>> = new Emitter<TreeViewExpansionEvent<T>>();
public readonly onDidExpandElement = this.onDidExpandElementEmitter.event;
private onDidCollapseElementEmitter: Emitter<TreeViewExpansionEvent<T>> = new Emitter<TreeViewExpansionEvent<T>>();
public readonly onDidCollapseElement = this.onDidCollapseElementEmitter.event;
private selection: T[] = [];
get selectedElements(): T[] { return this.selection; }
private cache: Map<string, T> = new Map<string, T>();
constructor(
private plugin: Plugin,
private treeViewId: string,
private treeDataProvider: TreeDataProvider<T>,
private proxy: TreeViewsMain) {
super(() => {
proxy.$unregisterTreeDataProvider(treeViewId);
});
proxy.$registerTreeDataProvider(treeViewId);
if (treeDataProvider.onDidChangeTreeData) {
treeDataProvider.onDidChangeTreeData((e: T) => {
proxy.$refresh(treeViewId);
});
}
}
async reveal(element: T, selectionOptions?: { select?: boolean }): Promise<void> {
// find element id in a cache
let elementId;
this.cache.forEach((el, id) => {
if (Object.is(el, element)) {
elementId = id;
}
});
if (elementId) {
return this.proxy.$reveal(this.treeViewId, elementId);
}
}
getTreeItem(treeItemId: string): T | undefined {
return this.cache.get(treeItemId);
}
async getChildren(parentId: string): Promise<TreeViewItem[] | undefined> {
// get element from a cache
const parent = this.getTreeItem(parentId);
if (parentId && !parent) {
console.error(`No tree item with id '${parentId}' found.`);
return [];
}
// ask data provider for children for cached element
const result = await this.treeDataProvider.getChildren(parent);
if (result) {
const treeItems: TreeViewItem[] = [];
const promises = result.map(async (value, index) => {
// Ask data provider for a tree item for the value
// Data provider must return theia.TreeItem
const treeItem: TreeItem2 = await this.treeDataProvider.getTreeItem(value);
// Convert theia.TreeItem to the TreeViewItem
// Take a label
let label: string | undefined;
const treeItemLabel: string | TreeItemLabel | undefined = treeItem.label;
if (typeof treeItemLabel === 'object' && typeof treeItemLabel.label === 'string') {
label = treeItemLabel.label;
} else {
label = treeItem.label;
}
// Use resource URI if label is not set
if (!label && treeItem.resourceUri) {
label = treeItem.resourceUri.path.toString();
label = decodeURIComponent(label);
if (label.indexOf('/') >= 0) {
label = label.substring(label.lastIndexOf('/') + 1);
}
}
// Generate the ID
// ID is used for caching the element
const id = treeItem.id || `${parentId}/${index}:${label}`;
// Use item ID if item label is still not set
if (!label) {
label = treeItem.id;
}
// Add element to the cache
this.cache.set(id, value);
let icon;
let iconUrl;
let themeIconId;
const { iconPath } = treeItem;
if (iconPath) {
const toUrl = (arg: string | URI) => {
arg = arg instanceof URI && arg.scheme === 'file' ? arg.fsPath : arg;
if (typeof arg !== 'string') {
return arg.toString(true);
}
const { packagePath } = this.plugin.rawModel;
const absolutePath = path.isAbsolute(arg) ? arg : path.join(packagePath, arg);
const normalizedPath = path.normalize(absolutePath);
const relativePath = path.relative(packagePath, normalizedPath);
return PluginPackage.toPluginUrl(this.plugin.rawModel, relativePath);
};
if (typeof iconPath === 'string' && iconPath.indexOf('fa-') !== -1) {
icon = iconPath;
} else if (iconPath instanceof ThemeIcon) {
themeIconId = iconPath.id;
} else if (typeof iconPath === 'string' || iconPath instanceof URI) {
iconUrl = toUrl(iconPath);
} else {
const { light, dark } = iconPath as { light: string | URI, dark: string | URI };
iconUrl = {
light: toUrl(light),
dark: toUrl(dark)
};
}
}
if (treeItem.command) {
treeItem.command.arguments = [id];
}
const treeViewItem = {
id,
label,
icon,
iconUrl,
themeIconId,
resourceUri: treeItem.resourceUri,
tooltip: treeItem.tooltip,
collapsibleState: treeItem.collapsibleState,
contextValue: treeItem.contextValue,
command: treeItem.command
} as TreeViewItem;
treeItems.push(treeViewItem);
});
await Promise.all(promises);
return treeItems;
} else {
return undefined;
}
}
async onExpanded(treeItemId: string): Promise<any> {
// get element from a cache
const cachedElement = this.getTreeItem(treeItemId);
// fire an event
if (cachedElement) {
this.onDidExpandElementEmitter.fire({
element: cachedElement
});
}
}
async onCollapsed(treeItemId: string): Promise<any> {
// get element from a cache
const cachedElement = this.getTreeItem(treeItemId);
// fire an event
if (cachedElement) {
this.onDidCollapseElementEmitter.fire({
element: cachedElement
});
}
}
}