-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.cjs
147 lines (131 loc) · 3.99 KB
/
config.cjs
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
const {join, resolve} = require("path")
const defaults = require("./defaults.json")
const {exists} = require("./helpers.cjs")
const PACKAGE_JSON = "package.json"
const {
SOURCE_ROOT,
DEFAULT_INLANG_PATH,
DEFAULT_SETTINGS_FILE_NAME
} = defaults
const appArgs = {
// Args
"--help": Boolean,
"--version": Boolean,
"--config": String,
"--root": String,
"--srcRoot": String,
"--inlangDir": String,
"--settingsFileName": String,
// Aliases
"-h": "--help",
"-v": "--version",
"-c": "--config",
"-r": "--root",
"-R": "--srcRoot",
"-i": "--inlangDir",
"-s": "--settingsFileName"
}
/**
* @param {Package} pkg
* @return {string}
*/
const helpScreen = (pkg) => `
${pkg.name.toUpperCase()} - ${pkg.description}
Usage:
--help or -h for this help screen
--version or -v for the version of the cli
--config or -c to specify a different host config file
--root or -r to specify a different root dir
--srcRoot or -R to specify a different src root dir
--inlangDir or -i to specify a different paraglide config dir
--settingsFileName or -i to specify a different paraglide settings file
Defaults:
root: cwd
config: ./{host-app-name}.config.json
srcRoot: src
inlangDir: "project.inlang"
settingsFilename: "settings.json"
For more detailed information see the documentation at:
${pkg.repository}
`
/**
* @param {string} root - The root directory of the application.
* @returns {string} - The name of the application.
*/
const getAppName = (root) => {
const pth = join(root, PACKAGE_JSON)
return exists(pth) && require(pth).name
}
/**
* @param {ConfigOpts} opts
* @return {HostConfig}
*/
const getHostConfig = (opts) => {
if (!opts.root) {
console.error("ERROR: No root option specified in: getHostConfig function. Aborting")
process.exit(1)
}
const pth = join(opts.root, opts.config || `${getAppName(opts.root)}.config.json`)
return exists(pth) && require(pth)
}
/**
* @param {string} root - The root directory to use as the base for the full path.
* @param {Partial<ConfigOpts>?} opts - Optional settings object.
* @returns {string} - The full path of the Inlang settings file.
*/
const getInlangSettingsPath = (root, opts = {}) =>
join(root,
opts.inlangDir || DEFAULT_INLANG_PATH,
opts.settingsFileName || DEFAULT_SETTINGS_FILE_NAME)
/**
* @param {string} inlangSettingsPath - The path to the inlang settings file.
* @returns {InlangSettings} - The inlang settings object.
*/
const getInlangSettings = (inlangSettingsPath) =>
exists(inlangSettingsPath) && require(inlangSettingsPath)
/**
* @param {PartialHostConfig} hostConfig - The host configuration object.
* @returns {string[]} - The list of installed language tags.
*/
const getInstalledLangs = hostConfig => [
hostConfig.i118n.sourceLanguageTag,
...hostConfig.i118n.restLanguageTags
]
/**
* @param {HostConfig} hostConfig - The host's configuration object.
* @returns {string} The generated path pattern for messages.
*/
const getMessagesPathPattern = hostConfig =>
`${hostConfig.i118n.messagesPath}/${hostConfig.i118n.messagesFilePattern}`
/**
* @param {ConfigOpts?} opts
* @return {Config}
*/
const getConfig = (opts ) => {
const root = resolve(opts.root)
const hostConfig = getHostConfig(opts)
const inlangSettingsPath = getInlangSettingsPath(root, opts)
const inlangSettings = getInlangSettings(inlangSettingsPath)
const srcRoot = join(root, opts.sourceRoot || SOURCE_ROOT)
const messagesPathPattern = getMessagesPathPattern(hostConfig)
const installedLangs = getInstalledLangs(hostConfig)
return {
root,
...hostConfig,
inlangSettings,
srcRoot,
messagesPathPattern,
installedLangs,
inlangSettingsPath
}
}
module.exports = {
appArgs,
getConfig,
getAppName,
getInlangSettingsPath,
getHostConfig,
getInstalledLangs,
getMessagesPathPattern,
helpScreen
}