forked from salesforce/salesforcedx-vscode-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigureLintingToolsCommand.ts
More file actions
308 lines (259 loc) · 11.1 KB
/
configureLintingToolsCommand.ts
File metadata and controls
308 lines (259 loc) · 11.1 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
/*
* Copyright (c) 2024, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
import { commands, l10n, window, workspace, ExtensionContext } from 'vscode';
import * as fs from 'fs';
import * as path from 'path';
import { WorkspaceUtils } from '../../utils/workspaceUtils';
import { JSON_INDENTATION_SPACES } from '../../utils/constants';
import { CoreExtensionService } from '../../services/CoreExtensionService';
const commandName = 'salesforcedx-vscode-offline-app.configure-linting-tools';
enum MetricEvents {
CONFIGURE_LINTING_TOOLS_COMMAND_STARTED = 'configure-linting-tools-command-started',
UPDATED_PACKAGE_JSON = 'updated-package-json',
UPDATED_ESLINTRC_JSON = 'updated-eslintrc-json',
ALREADY_CONFIGURED = 'already-configured',
LWC_FOLDER_DOES_NOT_EXIST = 'lwc-folder-does-not-exist',
PACKAGE_JSON_DOES_NOT_EXIST = 'package-json-does-not-exist',
ERROR_UPDATING_PACKAGE_JSON = 'error-updating-package-json',
ERROR_UPDATING_ESLINTRC_JSON = 'error-updating-eslintrc-json',
GENERAL_ERROR = 'general-error'
}
const config = workspace.getConfiguration();
class EslintDependencyConfig {
readonly name: string;
readonly packageConfigPropertyId: string;
readonly eslintConfigToExtend: string;
constructor(
name: string,
packageConfigPropertyId: string,
eslintConfigToExtend: string
) {
this.name = name;
this.packageConfigPropertyId = packageConfigPropertyId;
this.eslintConfigToExtend = eslintConfigToExtend;
}
getVersion(): string {
return config.get(this.packageConfigPropertyId) as string;
}
}
const eslintDependencies: EslintDependencyConfig[] = [
new EslintDependencyConfig(
'@salesforce/eslint-plugin-lwc-mobile',
'mobileOfflineLinting.eslint-plugin-lwc-mobile',
'plugin:@salesforce/lwc-mobile/recommended'
),
new EslintDependencyConfig(
'@salesforce/eslint-plugin-lwc-graph-analyzer',
'mobileOfflineLinting.eslint-plugin-lwc-graph-analyzer',
'plugin:@salesforce/lwc-graph-analyzer/recommended'
),
new EslintDependencyConfig(
'eslint',
'mobileOfflineLinting.eslint',
'eslint:recommended'
)
];
interface PackageJson {
devDependencies?: Record<string, string>;
}
enum MessageType {
Error,
InformationYesNo,
InformationOk
}
export class ConfigureLintingToolsCommand {
static async configure(): Promise<boolean> {
const telemetryService = CoreExtensionService.getTelemetryService();
// Send marker to record that the command got executed.
telemetryService.sendCommandEvent(commandName, process.hrtime(), {
metricEvents: MetricEvents.CONFIGURE_LINTING_TOOLS_COMMAND_STARTED
});
try {
if (!WorkspaceUtils.lwcFolderExists()) {
const event = `${commandName}.${MetricEvents.LWC_FOLDER_DOES_NOT_EXIST}`;
const message =
'The "force-app/main/default/lwc" folder does not exist in your project. This folder is required to create a configuration file for ESLint.';
await this.showMessage(message);
telemetryService.sendException(event, message);
return false;
}
if (!WorkspaceUtils.packageJsonExists()) {
const event = `${commandName}.${MetricEvents.PACKAGE_JSON_DOES_NOT_EXIST}`;
const message =
'Your project does not contain a "package.json" specification. You must have a package specification to configure these ESLint packages and their dependencies in your project.';
await this.showMessage(message);
telemetryService.sendException(event, message);
return false;
}
// Ask user to add eslint plugin
const result = await this.showMessage(
'Do you want to add Salesforce code linting guidance for Mobile and Offline capabilities? These tools will identify code patterns that cause problems in Mobile and Offline use cases.',
MessageType.InformationYesNo
);
if (!result || result.title === l10n.t('No')) {
return false;
} else {
let modifiedDevDependencies = false;
try {
modifiedDevDependencies = this.updateDevDependencies();
} catch (error) {
const event = `${commandName}.${MetricEvents.ERROR_UPDATING_PACKAGE_JSON}`;
const message = `Error updating package.json: ${error}`;
await this.showMessage(message);
telemetryService.sendException(event, message);
return false;
}
let modifiedEslintrc = false;
try {
modifiedEslintrc = this.updateEslintrc();
} catch (error) {
const event = `${commandName}.${MetricEvents.ERROR_UPDATING_ESLINTRC_JSON}`;
const message = `Error updating .eslintrc.json: ${error}`;
await this.showMessage(message);
telemetryService.sendException(event, message);
return false;
}
if (modifiedDevDependencies) {
telemetryService.sendCommandEvent(
commandName,
process.hrtime(),
{ metricEvents: MetricEvents.UPDATED_PACKAGE_JSON }
);
this.showMessage(
`Updated package.json to include offline linting packages and dependencies.`,
MessageType.InformationOk
);
}
if (modifiedEslintrc) {
telemetryService.sendCommandEvent(
commandName,
process.hrtime(),
{ metricEvents: MetricEvents.UPDATED_ESLINTRC_JSON }
);
this.showMessage(
`Updated .eslintrc.json to include recommended linting rules.`,
MessageType.InformationOk
);
}
if (modifiedDevDependencies || modifiedEslintrc) {
this.showMessage(
`In the Terminal window, be sure to run the install command for your configured package manager, to install the updated dependencies. For example, "npm install" or "yarn install".`,
MessageType.InformationOk
);
}
if (!modifiedDevDependencies && !modifiedEslintrc) {
telemetryService.sendCommandEvent(
commandName,
process.hrtime(),
{ metricEvents: MetricEvents.ALREADY_CONFIGURED }
);
this.showMessage(
`All offline linting packages and dependencies are already configured in your project. No update has been made to package.json.`,
MessageType.InformationOk
);
}
return true;
}
} catch (error) {
const event = `${commandName}.${MetricEvents.GENERAL_ERROR}`;
const message = `There was an error trying to update either the offline linting dependencies or linting configuration: ${error}`;
await this.showMessage(message);
telemetryService.sendException(event, message);
return false;
}
}
static updateDevDependencies(): boolean {
const packageJson: PackageJson = WorkspaceUtils.getPackageJson();
const devDependencies = packageJson.devDependencies;
let modified = false;
if (devDependencies) {
eslintDependencies.forEach((dependencyConfig) => {
const { name } = dependencyConfig;
if (!devDependencies[name]) {
devDependencies[name] = dependencyConfig.getVersion();
modified = true;
}
});
}
if (modified) {
// Save json only if the content was modified.
WorkspaceUtils.setPackageJson(packageJson);
}
return modified;
}
static updateEslintrc(): boolean {
const eslintrcPath = path.join(
WorkspaceUtils.getWorkspaceDir(),
WorkspaceUtils.LWC_PATH,
'.eslintrc.json'
);
if (fs.existsSync(eslintrcPath)) {
const eslintrc = JSON.parse(fs.readFileSync(eslintrcPath, 'utf-8'));
if (!eslintrc.extends) {
eslintrc.extends = [];
}
const eslintrcExtends = eslintrc.extends as Array<string>;
let modified = false;
eslintDependencies.forEach((config) => {
if (!eslintrcExtends.includes(config.eslintConfigToExtend)) {
eslintrcExtends.push(config.eslintConfigToExtend);
modified = true;
}
});
if (modified) {
// Save json only if the content was modified.
fs.writeFileSync(
eslintrcPath,
JSON.stringify(eslintrc, null, JSON_INDENTATION_SPACES)
);
}
return modified;
} else {
// Create eslintrc
const eslintrc = {
extends: eslintDependencies.map((config) => {
return `${config.eslintConfigToExtend}`;
})
};
const jsonString = JSON.stringify(
eslintrc,
null,
JSON_INDENTATION_SPACES
);
fs.writeFileSync(eslintrcPath, jsonString);
return true;
}
}
static async showMessage(
message: string,
messageType: MessageType = MessageType.Error
): Promise<{ title: string } | undefined> {
const localizedMessage = l10n.t(message);
switch (messageType) {
case MessageType.Error:
return await window.showErrorMessage(localizedMessage, {
title: l10n.t('OK')
});
case MessageType.InformationYesNo:
return await window.showInformationMessage(
localizedMessage,
{ title: l10n.t('Yes') },
{ title: l10n.t('No') }
);
case MessageType.InformationOk:
return await window.showInformationMessage(localizedMessage, {
title: l10n.t('OK')
});
}
}
}
export function registerCommand(context: ExtensionContext) {
const disposable = commands.registerCommand(commandName, async () => {
await ConfigureLintingToolsCommand.configure();
});
context.subscriptions.push(disposable);
}