-
Notifications
You must be signed in to change notification settings - Fork 2
/
component.ts
72 lines (68 loc) · 3 KB
/
component.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
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
/*
* Copyright (c) 2019, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
// tslint:disable:no-unused-expression
import { Flags, loglevel, orgApiVersionFlagWithDeprecations, SfCommand, Ux } from '@salesforce/sf-plugins-core';
import { CreateOutput, LightningComponentOptions, TemplateType } from '@salesforce/templates';
import { Messages } from '@salesforce/core';
import { getCustomTemplates, runGenerator } from '../../../utils/templateCommand.js';
import { internalFlag, outputDirFlagLightning } from '../../../utils/flags.js';
const BUNDLE_TYPE = 'Component';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-templates', 'lightningCmp');
const lightningCommon = Messages.loadMessages('@salesforce/plugin-templates', 'lightning');
export default class LightningComponent extends SfCommand<CreateOutput> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:lightning:component:create'];
public static readonly deprecateAliases = true;
public static readonly flags = {
name: Flags.string({
char: 'n',
summary: lightningCommon.getMessage('flags.name.summary', [BUNDLE_TYPE]),
description: lightningCommon.getMessage('flags.name.description'),
required: true,
aliases: ['componentname'],
deprecateAliases: true,
}),
template: Flags.option({
char: 't',
summary: lightningCommon.getMessage('flags.template.summary'),
description: lightningCommon.getMessage('flags.template.description'),
default: 'default',
// Note: keep this list here and LightningComponentOptions#template in-sync with the
// templates/lightningcomponents/[aura|lwc]/* folders
options: ['default', 'analyticsDashboard', 'analyticsDashboardWithStep'] as const,
})(),
'output-dir': outputDirFlagLightning,
'api-version': orgApiVersionFlagWithDeprecations,
type: Flags.option({
summary: messages.getMessage('flags.type.summary'),
options: ['aura', 'lwc'] as const,
default: 'aura',
})(),
internal: internalFlag,
loglevel,
};
public async run(): Promise<CreateOutput> {
const { flags } = await this.parse(LightningComponent);
const flagsAsOptions: LightningComponentOptions = {
componentname: flags.name,
template: flags.template,
outputdir: flags['output-dir'],
apiversion: flags['api-version'],
internal: flags.internal,
type: flags.type,
};
return runGenerator({
templateType: TemplateType.LightningComponent,
opts: flagsAsOptions,
ux: new Ux({ jsonEnabled: this.jsonEnabled() }),
templates: getCustomTemplates(this.configAggregator),
});
}
}