-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cjs
107 lines (98 loc) · 3.09 KB
/
main.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
const {join} = require("path")
const {getConfig, appArgs, helpScreen} = require("./config.cjs")
const {
writeJson,
collectMessageFiles,
makeMessagePath,
parseArgs,
getLocalPkg
} = require("./helpers.cjs")
const {checkLangFile} = require("./check.cjs")
/**
* @param {Config & {write?: WriteJson} | {}} [opts]
*/
const updateInlangSettings = (opts = {}) => {
console.log("Updating the paraglide settings file...")
const tmp = {
...opts.inlangSettings
}
// transfer default lang
tmp.sourceLanguageTag = opts.i118n.sourceLanguageTag ?? tmp.sourceLanguageTag
// transfer root and messages patter format
tmp["plugin.inlang.messageFormat"] = opts.messagesPathPattern || tmp["plugin.inlang.messageFormat"]
// transfer installed langs
tmp.languageTags = opts.installedLangs || tmp.languageTags
try {
(opts.write || writeJson)(opts.inlangSettingsPath, tmp)
console.log("OK")
} catch (err) {
console.error(`ERROR: Unable to write inlang settings file in: ${opts.inlangSettingsPath}`)
console.error("Reason: ", err)
process.exit(1)
}
}
// create a unique object containing all collected message files
const compactLangContent = fileData =>
fileData.reduce(
(acc, langCont) => {
Object.keys(langCont).forEach(k => {
acc[k] = {
...acc[k],
...langCont[k]
}
})
return acc
}, {}
)
/**
* @description write the resulting language files in to the paraglide expected folder
* @param {object} fileData
* @param {Config} config - write key serves for mock testing only
* @param {WriteJson?} write
* write is present only for testing purposes
*/
const writeMessagesData = (fileData, config, write = writeJson) => {
const messagesData = compactLangContent(fileData)
Object.keys(messagesData).forEach(lang => {
const pth = join(config.root, makeMessagePath(config.messagesPathPattern, lang))
write(pth, messagesData[lang])
})
}
/**
* @param {ConfigOpts} [opts]
* @param {WriteJson?} write
* write is present only for testing purposes
*/
function main(opts, write = writeJson) {
const config = getConfig(opts)
const fileData = collectMessageFiles(config.srcRoot, config.i118n.messagesFileName)
.reduce((acc, f) => {
const pth = join(config.srcRoot, f)
const langCont = require(pth)
if (checkLangFile(langCont, config.i118n.sourceLanguageTag, config.installedLangs, f))
acc.push(langCont)
return acc
}, [])
writeMessagesData(fileData, config, write)
}
const run = () => {
const {help, version, ...opts} = parseArgs(appArgs)
if (help) {
const pkg = getLocalPkg()
console.log(helpScreen(pkg))
process.exit(0)
}
if (version) {
const pkg = getLocalPkg()
console.log(`Version: ${pkg.version}`)
}
main(opts)
}
module.exports = {
updateInlangSettings,
collectMessageFiles,
compactLangContent,
writeMessagesData,
main,
run
}