-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathutils.config.ts
131 lines (112 loc) · 4.36 KB
/
utils.config.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
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
import fs from 'node:fs';
import { writeFile } from 'node:fs/promises';
import path from 'node:path';
import { getVersion } from './utils.version.js';
import { argv, commandName } from './utils.cli.js';
import { DEFAULT_FEATURE_FLAGS } from '../constants.js';
import { printBox } from './utils.console.js';
import { partitionArr } from './utils.helpers.js';
export type FeatureFlags = {
bundleGrafanaUI?: boolean;
// If set to true, the plugin will be scaffolded with React Router v6. Defaults to true.
// (Attention! We always scaffold new projects with React Router v6, so if you are changing this to `false` manually you will need to make changes to the React code as well.)
useReactRouterV6?: boolean;
usePlaywright?: boolean;
useExperimentalRspack?: boolean;
};
export type CreatePluginConfig = UserConfig & {
version: string;
};
export type UserConfig = {
features: FeatureFlags;
};
// TODO: Create a config manager of sorts so we don't call getConfig multiple times rendering multiple warnings.
let hasShownConfigWarnings = false;
export function getConfig(workDir = process.cwd()): CreatePluginConfig {
const rootConfig = getRootConfig(workDir);
const userConfig = getUserConfig(workDir);
return {
...rootConfig,
...userConfig,
version: rootConfig!.version,
features: createFeatureFlags({
...(rootConfig!.features ?? {}),
...(userConfig!.features ?? {}),
}),
};
}
function getRootConfig(workDir = process.cwd()): CreatePluginConfig {
try {
const rootPath = path.resolve(workDir, '.config/.cprc.json');
const rootConfig = readRCFileSync(rootPath);
return {
version: getVersion(),
...rootConfig,
features: rootConfig!.features ?? {},
};
// Most likely this happens because of no ".config/.cprc.json" (root configuration) file.
// (This can both happen for new scaffolds and for existing plugins that have not been updated yet.)
} catch (error) {
return {
version: getVersion(),
features: {},
};
}
}
function getUserConfig(workDir = process.cwd()): UserConfig | undefined {
try {
const userPath = path.resolve(workDir, '.cprc.json');
const userConfig = readRCFileSync(userPath);
return {
...userConfig,
features: userConfig!.features ?? {},
};
// Most likely this happens because of no ".cprc.json" (user configuration) file.
// (This can both happen for new scaffolds and for existing plugins that have not been updated yet.)
} catch (error) {
return {
features: {},
};
}
}
function readRCFileSync(path: string): CreatePluginConfig | undefined {
try {
const data = fs.readFileSync(path);
return JSON.parse(data.toString());
} catch (error) {
return undefined;
}
}
// This function creates feature flags based on the defaults for generate command else flags read from config.
// In all cases it will override the flags with the featureFlag cli arg values.
function createFeatureFlags(flags?: FeatureFlags): FeatureFlags {
const featureFlags = commandName === 'generate' ? DEFAULT_FEATURE_FLAGS : (flags ?? {});
const cliArgFlags = parseFeatureFlagsFromCliArgs();
return { ...featureFlags, ...cliArgFlags };
}
function parseFeatureFlagsFromCliArgs() {
const flagsfromCliArgs: string[] = argv['feature-flags'] ? argv['feature-flags'].split(',') : [];
const availableFeatureFlags = Object.keys(DEFAULT_FEATURE_FLAGS);
const [knownFlags, unknownFlags] = partitionArr(flagsfromCliArgs, (item) => availableFeatureFlags.includes(item));
if (unknownFlags.length > 0 && !hasShownConfigWarnings) {
printBox({
title: 'Warning! Unknown feature flags detected.',
subtitle: ``,
content: `The following feature-flags are unknown: ${unknownFlags.join(
', '
)}.\n\nAvailable feature-flags are: ${availableFeatureFlags.join(', ')}`,
color: 'yellow',
});
hasShownConfigWarnings = true;
}
return knownFlags.reduce((acc, flag) => {
return { ...acc, [flag]: true };
}, {} as FeatureFlags);
}
export async function setRootConfig(configOverride: Partial<CreatePluginConfig> = {}): Promise<CreatePluginConfig> {
const rootConfig = getRootConfig();
const rootConfigPath = path.resolve(process.cwd(), '.config/.cprc.json');
const updatedConfig = { ...rootConfig, ...configOverride };
await writeFile(rootConfigPath, JSON.stringify(updatedConfig, null, 2));
return updatedConfig;
}