-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.ts
72 lines (67 loc) · 2.95 KB
/
page.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
*/
import { Flags, loglevel, orgApiVersionFlagWithDeprecations, SfCommand, Ux } from '@salesforce/sf-plugins-core';
import { CreateOutput, CreateUtil, TemplateType, VisualforcePageOptions } from '@salesforce/templates';
import { Messages } from '@salesforce/core';
import { getCustomTemplates, runGenerator } from '../../../utils/templateCommand.js';
import { outputDirFlag } from '../../../utils/flags.js';
const visualforcePageFileSuffix = /.page$/;
const VF_TYPE = 'Page';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const commonMessages = Messages.loadMessages('@salesforce/plugin-templates', 'messages');
const messages = Messages.loadMessages('@salesforce/plugin-templates', 'vf');
export default class VisualforcePage extends SfCommand<CreateOutput> {
public static readonly summary = messages.getMessage('summary', [VF_TYPE]);
public static readonly description = messages.getMessage('description', [VF_TYPE]);
public static readonly examples = messages.getMessages('examples.page');
public static readonly aliases = ['force:visualforce:page:create'];
public static readonly deprecateAliases = true;
public static readonly flags = {
name: Flags.string({
char: 'n',
summary: messages.getMessage('flags.name.summary', [VF_TYPE]),
description: messages.getMessage('flags.name.description'),
required: true,
aliases: ['pagename'],
deprecateAliases: true,
}),
// there is only one valid template in the interface for VisualforcePageOptions
template: Flags.string({
char: 't',
summary: commonMessages.getMessage('flags.template.summary'),
description: commonMessages.getMessage('flags.template.description'),
default: 'DefaultVFPage',
hidden: true,
options: CreateUtil.getCommandTemplatesForFiletype(visualforcePageFileSuffix, 'visualforcepage'),
}),
'output-dir': outputDirFlag,
'api-version': orgApiVersionFlagWithDeprecations,
label: Flags.string({
char: 'l',
summary: messages.getMessage('flags.label.summary', [VF_TYPE]),
required: true,
}),
loglevel,
};
public async run(): Promise<CreateOutput> {
const { flags } = await this.parse(VisualforcePage);
// translate the new flags to the old ones the generator expects
const flagsAsOptions: VisualforcePageOptions = {
pagename: flags.name,
label: flags.label,
template: 'DefaultVFPage' as VisualforcePageOptions['template'],
outputdir: flags['output-dir'],
apiversion: flags['api-version'],
};
return runGenerator({
templateType: TemplateType.VisualforcePage,
opts: flagsAsOptions,
ux: new Ux({ jsonEnabled: this.jsonEnabled() }),
templates: getCustomTemplates(this.configAggregator),
});
}
}