-
Notifications
You must be signed in to change notification settings - Fork 442
/
Copy pathindex.ts
47 lines (42 loc) · 1.24 KB
/
index.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
import {
commands,
ConfigurationChangeEvent,
ExtensionContext,
window,
workspace,
} from 'vscode';
import generateSnippets from './helpers/generateSnippets';
import snippetSearch from './helpers/snippetSearch';
import generatedSnippets from './snippets/generated.json';
const showRestartMessage = async ({
affectsConfiguration,
}: ConfigurationChangeEvent) => {
if (affectsConfiguration('reactSnippets')) {
await generateSnippets();
setTimeout(() => {
window
.showWarningMessage(
'React Snippets: Please restart VS Code to apply snippet formatting changes',
'Restart VS Code',
'Ignore',
)
.then((action?: string) => {
if (action === 'Restart VS Code') {
commands.executeCommand('workbench.action.reloadWindow');
}
});
}, 1000);
}
};
export async function activate(context: ExtensionContext) {
workspace.onDidChangeConfiguration(showRestartMessage);
if (JSON.stringify(generatedSnippets).length < 10) {
await generateSnippets();
}
const snippetSearchCommand = commands.registerCommand(
'reactSnippets.search',
snippetSearch,
);
context.subscriptions.push(snippetSearchCommand);
}
export function deactivate() {}