-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathScopeTreeProvider.ts
More file actions
410 lines (368 loc) · 11.8 KB
/
ScopeTreeProvider.ts
File metadata and controls
410 lines (368 loc) · 11.8 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
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
import { isEqual } from "lodash-es";
import type {
Disposable,
Event,
ExtensionContext,
TreeDataProvider,
TreeItemLabel,
TreeView,
TreeViewVisibilityChangeEvent,
} from "vscode";
import {
EventEmitter,
MarkdownString,
ThemeIcon,
TreeItem,
TreeItemCollapsibleState,
extensions,
window,
} from "vscode";
import { URI } from "vscode-uri";
import type {
CursorlessCommandId,
IDE,
ScopeProvider,
ScopeSupportInfo,
ScopeType,
ScopeTypeInfo,
Selection,
TextEditor,
} from "@cursorless/lib-common";
import {
CURSORLESS_SCOPE_TREE_VIEW_ID,
DOCS_URL,
ScopeSupport,
disposableFrom,
serializeScopeType,
uriEncodeHashId,
} from "@cursorless/lib-common";
import { type CustomSpokenFormGenerator } from "@cursorless/lib-engine";
import { type VscodeApi } from "@cursorless/lib-vscode-common";
import type {
ScopeVisualizer,
VisualizationType,
} from "./ScopeVisualizerCommandApi";
export const DONT_SHOW_TALON_UPDATE_MESSAGE_KEY = "dontShowUpdateTalonMessage";
export class ScopeTreeProvider implements TreeDataProvider<MyTreeItem> {
private visibleDisposable: Disposable | undefined;
private treeView: TreeView<MyTreeItem>;
private supportLevels: ScopeSupportInfo[] = [];
private shownUpdateTalonMessage = false;
private _onDidChangeTreeData: EventEmitter<
MyTreeItem | undefined | null | void
> = new EventEmitter<MyTreeItem | undefined | null | void>();
readonly onDidChangeTreeData: Event<MyTreeItem | undefined | null | void> =
this._onDidChangeTreeData.event;
constructor(
private ide: IDE,
private vscodeApi: VscodeApi,
private context: ExtensionContext,
private scopeProvider: ScopeProvider,
private scopeVisualizer: ScopeVisualizer,
private customSpokenFormGenerator: CustomSpokenFormGenerator,
private hasCommandServer: boolean,
) {
this.treeView = vscodeApi.window.createTreeView(
CURSORLESS_SCOPE_TREE_VIEW_ID,
{
treeDataProvider: this,
},
);
this.context.subscriptions.push(
this.treeView,
this.treeView.onDidChangeVisibility(this.onDidChangeVisible, this),
this,
);
if (this.treeView.visible) {
this.registerScopeSupportListener();
}
}
private onDidChangeVisible(e: TreeViewVisibilityChangeEvent) {
if (e.visible) {
if (this.visibleDisposable != null) {
return;
}
this.registerScopeSupportListener();
} else {
if (this.visibleDisposable == null) {
return;
}
this.visibleDisposable.dispose();
this.visibleDisposable = undefined;
}
}
private registerScopeSupportListener() {
this.visibleDisposable = disposableFrom(
this.scopeProvider.onDidChangeScopeSupport((supportLevels) => {
this.supportLevels = supportLevels;
this._onDidChangeTreeData.fire();
}),
this.scopeVisualizer.onDidChangeScopeType(() => {
this._onDidChangeTreeData.fire();
}),
this.vscodeApi.window.onDidChangeTextEditorSelection(() => {
this._onDidChangeTreeData.fire();
}),
);
}
getTreeItem(element: MyTreeItem): MyTreeItem {
return element;
}
getChildren(element?: MyTreeItem): MyTreeItem[] {
if (element == null) {
void this.possiblyShowUpdateTalonMessage();
return getSupportCategories();
}
if (element instanceof SupportCategoryTreeItem) {
return this.getScopeTypesWithSupport(element.scopeSupport);
}
throw new Error("Unexpected element");
}
private async possiblyShowUpdateTalonMessage() {
if (
!this.customSpokenFormGenerator.needsInitialTalonUpdate ||
this.shownUpdateTalonMessage ||
!this.hasCommandServer ||
(await this.context.globalState.get(DONT_SHOW_TALON_UPDATE_MESSAGE_KEY))
) {
return;
}
this.shownUpdateTalonMessage = true;
const HOW_BUTTON_TEXT = "How?";
const DONT_SHOW_AGAIN_BUTTON_TEXT = "Don't show again";
const result = await this.vscodeApi.window.showInformationMessage(
"In order to see your custom spoken forms in the sidebar, you'll need to update your Cursorless Talon files.",
HOW_BUTTON_TEXT,
DONT_SHOW_AGAIN_BUTTON_TEXT,
);
if (result === HOW_BUTTON_TEXT) {
await this.vscodeApi.env.openExternal(
URI.parse(`${DOCS_URL}/user/updating/#updating-the-talon-side`),
);
} else if (result === DONT_SHOW_AGAIN_BUTTON_TEXT) {
await this.context.globalState.update(
DONT_SHOW_TALON_UPDATE_MESSAGE_KEY,
true,
);
}
}
private getScopeTypesWithSupport(
scopeSupport: ScopeSupport,
): ScopeSupportTreeItem[] {
const getContainmentIcon = (() => {
if (scopeSupport !== ScopeSupport.supportedAndPresentInEditor) {
return null;
}
const editor = this.ide.activeTextEditor;
if (editor == null || editor.selections.length !== 1) {
return null;
}
const selection = editor.selections[0];
return (scopeType: ScopeType) => {
return this.getContainmentIcon(editor, selection, scopeType);
};
})();
return this.supportLevels
.filter(
(supportLevel) =>
supportLevel.support === scopeSupport &&
// Skip scope if it doesn't have a spoken form and it's private. That
// is the default state for scopes that are private; we don't want to
// show these to the user.
!(
supportLevel.spokenForm.type === "error" &&
supportLevel.spokenForm.isPrivate
),
)
.map(
(supportLevel) =>
new ScopeSupportTreeItem(
supportLevel,
isEqual(supportLevel.scopeType, this.scopeVisualizer.scopeType),
getContainmentIcon?.(supportLevel.scopeType),
),
)
.sort((a, b) => {
if (
a.scopeTypeInfo.spokenForm.type !== b.scopeTypeInfo.spokenForm.type
) {
// Scopes with no spoken form are sorted to the bottom
return a.scopeTypeInfo.spokenForm.type === "error" ? 1 : -1;
}
if (
a.scopeTypeInfo.isLanguageSpecific !==
b.scopeTypeInfo.isLanguageSpecific
) {
// Then language-specific scopes are sorted to the top
return a.scopeTypeInfo.isLanguageSpecific ? -1 : 1;
}
// Then alphabetical by label
return a.label.label.localeCompare(b.label.label);
});
}
private getContainmentIcon(
editor: TextEditor,
selection: Selection,
scopeType: ScopeType,
): string | undefined {
const scopes = this.scopeProvider.provideScopeRangesForRange(
editor,
scopeType,
selection,
);
for (const scope of scopes) {
for (const target of scope.targets) {
// Scope target exactly matches selection
if (target.contentRange.isRangeEqual(selection)) {
return "🎯";
}
// Scope target contains selection
if (target.contentRange.contains(selection)) {
return "📦";
}
}
}
return undefined;
}
dispose() {
this.visibleDisposable?.dispose();
}
}
function getSupportCategories(): SupportCategoryTreeItem[] {
return [
new SupportCategoryTreeItem(ScopeSupport.supportedAndPresentInEditor),
new SupportCategoryTreeItem(ScopeSupport.supportedButNotPresentInEditor),
new SupportCategoryTreeItem(ScopeSupport.unsupported),
];
}
class ScopeSupportTreeItem extends TreeItem {
declare public readonly label: TreeItemLabel;
public url: string | undefined;
/**
* @param scopeTypeInfo The scope type info
* @param isVisualized Whether the scope type is currently being visualized
with the scope visualizer
*/
constructor(
public readonly scopeTypeInfo: ScopeTypeInfo,
isVisualized: boolean,
containmentIcon: string | undefined,
) {
let label: string;
let tooltip: string;
if (scopeTypeInfo.spokenForm.type === "success") {
label = scopeTypeInfo.spokenForm.spokenForms
.map((spokenForm) => `"${spokenForm}"`)
.join(" | ");
tooltip = label;
} else {
label = "-";
tooltip = scopeTypeInfo.spokenForm.requiresTalonUpdate
? `Requires Talon update; see [update instructions](${DOCS_URL}/user/updating/#updating-the-talon-side)`
: `Spoken form disabled; see [customization docs](${DOCS_URL}/user/customization/#talon-side-settings)`;
}
super(
{
label,
highlights: isVisualized ? [[0, label.length]] : [],
},
TreeItemCollapsibleState.None,
);
this.tooltip = tooltip == null ? tooltip : new MarkdownString(tooltip);
this.description =
containmentIcon != null
? `${containmentIcon} ${scopeTypeInfo.humanReadableName}`
: scopeTypeInfo.humanReadableName;
this.command = isVisualized
? {
command:
"cursorless.hideScopeVisualizer" satisfies CursorlessCommandId,
title: "Hide the scope visualizer",
}
: {
command:
"cursorless.showScopeVisualizer" satisfies CursorlessCommandId,
arguments: [
scopeTypeInfo.scopeType,
"content" satisfies VisualizationType,
],
title: `Visualize ${scopeTypeInfo.humanReadableName}`,
};
if (scopeTypeInfo.isLanguageSpecific) {
const languageId = window.activeTextEditor?.document.languageId;
if (languageId != null) {
const fileExtension =
getLanguageExtensionSampleFromLanguageId(languageId);
if (fileExtension != null) {
this.resourceUri = URI.parse(
"cursorless-dummy://dummy/dummy" + fileExtension,
);
}
this.setUrl(languageId);
}
if (this.resourceUri == null) {
// Fall back to a generic icon
this.iconPath = new ThemeIcon("code");
}
} else {
this.setUrl("plaintext");
}
}
private setUrl(languageId: string) {
const id = uriEncodeHashId(
serializeScopeType(this.scopeTypeInfo.scopeType),
);
this.url = `${DOCS_URL}/user/languages/${languageId}#${id}`;
this.contextValue = "scopeVisualizerTreeItem";
}
}
class SupportCategoryTreeItem extends TreeItem {
constructor(public readonly scopeSupport: ScopeSupport) {
let label: string;
let description: string;
let collapsibleState: TreeItemCollapsibleState;
switch (scopeSupport) {
case ScopeSupport.supportedAndPresentInEditor:
label = "Present";
description = "in active editor";
collapsibleState = TreeItemCollapsibleState.Expanded;
break;
case ScopeSupport.supportedButNotPresentInEditor:
label = "Supported";
description = "but not present in active editor";
collapsibleState = TreeItemCollapsibleState.Expanded;
break;
case ScopeSupport.unsupported:
label = "Unsupported";
description = "unsupported in language of active editor";
collapsibleState = TreeItemCollapsibleState.Collapsed;
break;
}
super(label, collapsibleState);
this.description = description;
}
}
type MyTreeItem = ScopeSupportTreeItem | SupportCategoryTreeItem;
/**
* Get file extension example from vscode [Language Id](https://code.visualstudio.com/docs/languages/identifiers)
* Would've been easier with https://github.com/microsoft/vscode/issues/109919
* Example:
* - 'typescript' => '.ts'
* FIXME: Maybe memoise?
*/
export function getLanguageExtensionSampleFromLanguageId(
languageId: string,
): string | undefined {
for (const extension of extensions.all) {
const languages: { id: string; extensions: string[] }[] | undefined =
extension.packageJSON?.contributes?.languages;
if (!languages) {
continue;
}
for (const contributedLanguage of languages) {
if (contributedLanguage.id === languageId) {
return contributedLanguage.extensions[0];
}
}
}
}