-
-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathmisc.js
124 lines (116 loc) · 4.04 KB
/
misc.js
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
/**
* Copyright (c) 2017-present PlatformIO <contact@platformio.org>
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
import { CONFLICTED_EXTENSION_IDS } from './constants';
import { extension } from './main';
import vscode from 'vscode';
export async function maybeRateExtension() {
const stateKey = 'rate-extension';
const askAfterSessionNums = 13;
let state = extension.context.globalState.get(stateKey);
if (state && state.done) {
return;
} else if (!state || !state.callCounter) {
state = {
callCounter: 0,
done: false,
};
}
state.callCounter += 1;
if (state.callCounter < askAfterSessionNums) {
extension.context.globalState.update(stateKey, state);
return;
}
const selectedItem = await vscode.window.showInformationMessage(
'If you enjoy using PlatformIO IDE for VSCode, would you mind taking a moment to rate it? ' +
'It will not take more than one minute. Thanks for your support!',
{ title: 'Rate PlatformIO IDE Extension', isCloseAffordance: false },
{ title: 'Remind later', isCloseAffordance: false },
{ title: 'No, Thanks', isCloseAffordance: true },
);
switch (selectedItem ? selectedItem.title : undefined) {
case 'Rate PlatformIO IDE Extension':
vscode.commands.executeCommand(
'vscode.open',
vscode.Uri.parse('http://bit.ly/pio-vscode-rate'),
);
state.done = true;
break;
case 'No, Thanks':
state.done = true;
break;
default:
state.callCounter = 0;
}
extension.context.globalState.update(stateKey, state);
}
export async function warnAboutConflictedExtensions() {
const conflicted = vscode.extensions.all.filter(
(ext) => ext.isActive && CONFLICTED_EXTENSION_IDS.includes(ext.id),
);
if (conflicted.length === 0) {
return;
}
const selectedItem = await vscode.window.showWarningMessage(
`Conflicted extensions with IntelliSense service were detected (${conflicted
.map((ext) => ext.packageJSON.displayName || ext.id)
.join(', ')}). ` +
'Code-completion, linting and navigation will not work properly. ' +
'Please disable or uninstall them (Menu > View > Extensions).',
{ title: 'More details', isCloseAffordance: false },
{ title: 'Uninstall conflicted', isCloseAffordance: false },
{ title: 'Remind later', isCloseAffordance: true },
);
switch (selectedItem ? selectedItem.title : undefined) {
case 'More details':
vscode.commands.executeCommand(
'vscode.open',
vscode.Uri.parse('http://bit.ly/pio-vscode-conflicted-extensions'),
);
break;
case 'Uninstall conflicted':
conflicted.forEach((ext) => {
vscode.commands.executeCommand(
'workbench.extensions.uninstallExtension',
ext.id,
);
});
vscode.commands.executeCommand('workbench.action.reloadWindow');
break;
}
}
export async function warnAboutInoFile(editor) {
if (!editor || !editor.document || !editor.document.fileName) {
return;
}
if (!editor.document.fileName.endsWith('.ino')) {
return;
}
const stateKey = 'ino-warn-disabled';
if (extension.context.globalState.get(stateKey)) {
return;
}
const selectedItem = await vscode.window.showWarningMessage(
'C/C++ IntelliSense service does not support .INO files. ' +
'It might lead to the spurious problems with code completion, linting, and debugging. ' +
'Please convert .INO sketch into the valid .CPP file.',
{ title: 'Show instruction', isCloseAffordance: false },
{ title: 'Do not show again', isCloseAffordance: false },
{ title: 'Remind later', isCloseAffordance: true },
);
switch (selectedItem ? selectedItem.title : undefined) {
case 'Show instruction':
vscode.commands.executeCommand(
'vscode.open',
vscode.Uri.parse('https://bit.ly/convert-ino-to-cpp'),
);
break;
case 'Do not show again':
extension.context.globalState.update(stateKey, 1);
break;
}
}