-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.cjs
121 lines (113 loc) · 3.28 KB
/
helpers.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
const fs = require("fs")
const arg = require("arg")
const {join} = require("path")
const PACKAGE_JSON = "package.json"
/**
* @param {object} a1
* @param {string[]} a2
* @return string[]
*/
const arrKeyDiff = (a1, a2) =>
a2.filter(k => !a1[k])
/**
* @param {object} o
* @param {string} key
* @return {Record<string, any>}
*/
const omit = (o, key) => {
const tmp = {...o}
delete tmp[key]
return tmp
}
/**
* @param {string} pth
* @param {object} o
* @returns {void}
*/
const writeJson = (pth, o) => {
console.log(`INFO: Writing file: ${pth}`)
fs.writeFileSync(pth, JSON.stringify(o, null, 2))
}
/**
* @param {string} srcRoot - The root directory to search for message files.
* @param {string} pattern - The file pattern to match for message files.
* @returns {string[]} - An array of message file paths matching the pattern.
*/
const collectMessageFiles = (srcRoot, pattern) => {
/** @type string[] */
const files = fs.readdirSync(srcRoot, {recursive: true})
if (!files.length) {
console.warn(`WARN: ${srcRoot} looks empty. Are you sure this is the targeted directory?`)
process.exit(1)
}
const messageFiles = files.filter(f => f.endsWith(pattern))
if (!messageFiles.length) {
console.warn(`WARN: No message files ending in ${pattern} found in ${srcRoot}. Aborting.`)
process.exit(1)
}
return messageFiles
}
/**
* Checks if a file system item exists.
* @param {string} pth - The path of the file system item to check.
* @param {boolean?} strict=true - Indicates whether to abort the process if the item is not found.
* @returns {true | void} true if the item exists
*/
const exists = (pth, strict = true) => {
if (!fs.existsSync(pth)) {
console.error(`ERROR: File system item not found: ${pth}`)
if (strict) {
console.error("Process aborted")
process.exit(1)
}
return true
}
return true
}
/**
* Replaces a placeholder in a given pattern with a language code.
* @param {string} pattern - The pattern containing the placeholder.
* @param {string} lang - The language code to replace the placeholder with.
* @returns {string} - The modified pattern with the placeholder replaced.
*/
const makeMessagePath = (pattern, lang) =>
pattern.replace(/{(.*?)}/, lang)
/**
* Parses the command line arguments.
*
* @param {Record<string, any>} appArgs - The command line arguments to parse.
* @returns {ConfigOpts & {help?: string, version?: string}} - An object representing the parsed arguments.
*/
const parseArgs = (appArgs) => {
const tmp = {
root: process.cwd()
}
try {
const args = arg(appArgs)
return Object.keys(args).reduce(
(acc, k) => {
if (k !== "_" && args.hasOwnProperty(k)) {
const key = k.replace(/^-+/, "")
acc[key] = args[k]
}
return acc
}, tmp)
} catch (err) {
console.error(`ERROR: Unable to parse.${err}.`)
return tmp
}
}
const getLocalPkg = () => {
const pth = join(__dirname, PACKAGE_JSON)
return exists(pth) && require(pth)
}
module.exports = {
arrKeyDiff,
omit,
collectMessageFiles,
exists,
writeJson,
makeMessagePath,
parseArgs,
getLocalPkg
}