@salesforce/plugin-org
Version:
Commands to interact with Salesforce orgs
39 lines • 1.21 kB
JavaScript
/*
* Copyright (c) 2020, 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 ansis from 'ansis';
const styledProperties = new Map([
[
'status',
new Map([
['Active', ansis.green],
['else', ansis.red],
]),
],
[
'connectedStatus',
new Map([
['Connected', ansis.green],
['Active', ansis.green],
['else', ansis.red],
]),
],
]);
export const getStyledValue = (key, value) => {
if (!value)
return value;
const prop = styledProperties.get(key);
if (!prop)
return value;
// I'm not sure how to type the inner Map so that it knows else is definitely there
const colorMethod = prop.get(value) ?? prop.get('else');
return colorMethod(value);
};
export const getStyledObject = (objectToStyle) => Object.fromEntries(Object.entries(objectToStyle).map(([key, value]) => [
key,
typeof value === 'string' ? getStyledValue(key, value) : value,
]));
//# sourceMappingURL=orgHighlighter.js.map