generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
shape.ts
50 lines (44 loc) · 1.82 KB
/
shape.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
/*
* Copyright (c) 2022, 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, SfCommand, StandardColors } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import utils, { OrgShapeListResult } from '../../../shared/orgShapeListUtils.js';
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-signups', 'shape.list');
export class OrgShapeListCommand extends SfCommand<OrgShapeListResult[]> {
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:org:shape:list'];
public static readonly deprecateAliases = true;
public static readonly flags = {
verbose: Flags.boolean({
summary: messages.getMessage('flags.verbose.summary'),
hidden: true,
}),
loglevel,
};
// there were no flags being used in the original!
// eslint-disable-next-line sf-plugin/should-parse-flags
public async run(): Promise<OrgShapeListResult[]> {
const { orgShapes, errors } = await utils.getAllOrgShapesFromAuthenticatedOrgs();
errors.forEach((e) => this.warn(e));
if (orgShapes.length === 0) {
this.log();
this.info(messages.getMessage('noOrgShapes'));
return orgShapes;
}
this.table({
data: orgShapes.map((shape) => ({
...(shape.status === 'Active' ? { ...shape, status: StandardColors.success(shape.status) } : shape),
})),
title: 'Org Shapes',
overflow: 'wrap',
});
return orgShapes;
}
}