forked from live-codes/livecodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
116 lines (104 loc) · 3.34 KB
/
i18n.js
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
const esbuild = require('esbuild');
const fs = require('fs');
const path = require('path');
const prettier = require('prettier');
const prettierConfig = require('./i18n-export').prettierConfig;
const outDir = path.resolve('build/livecodes/');
const i18nDir = path.resolve('src/livecodes/i18n/');
const srcDir = path.join(i18nDir, 'locales');
/**
* @param {string} locale
* @param {string} ns
* @returns string
*/
const i18nFile = (locale, ns) => `i18n-${locale}-${ns}.json`;
const buildI18n = async () => {
const getFilePaths = async (dir = srcDir) => {
let i18nFiles = [];
const locales = (await fs.promises.readdir(dir))
.filter((name) =>
fs.statSync(path.join(dir, name)).isDirectory(),
)
.filter((name) => name !== 'tmp'); // Skip tmp directory
await Promise.all(
locales.map(async (locale) => {
const localeDir = path.join(dir, locale);
i18nFiles.push(
...(await fs.promises.readdir(localeDir))
.filter((name) => !fs.statSync(path.resolve(localeDir, name)).isDirectory())
.filter((name) => name.endsWith('.ts'))
.map((name) => path.join(srcDir, locale, name)),
);
}),
);
return i18nFiles;
};
const getFileInfo = (filePath) => {
const parts = filePath.split(path.sep);
const filename = parts[parts.length - 1];
const locale = parts[parts.length - 2];
return {
locale,
filename,
};
};
const files = await getFilePaths(srcDir);
if (!fs.existsSync(outDir)) {
await fs.promises.mkdir(outDir, { recursive: true });
}
await esbuild
.build({
entryPoints: files,
bundle: true,
format: 'cjs',
platform: 'node',
write: false,
outdir: outDir,
})
.then(async (result) => {
await Promise.all(
result.outputFiles.map(async (file) => {
const js = file.text;
const json = JSON.stringify(eval(js).default, null, 2);
const { locale, filename } = getFileInfo(file.path);
await fs.promises.writeFile(
path.join(outDir, i18nFile(locale, filename.replace('.js', ''))),
json,
'utf8',
);
}),
);
});
};
const buildLocalePathLoader = async () => {
const locales = (await fs.promises.readdir(srcDir)).filter((name) =>
fs.statSync(path.join(srcDir, name)).isDirectory() && name !== 'tmp'
);
const namespaces = (await fs.promises.readdir(path.join(srcDir, 'en')))
.filter((name) => name.endsWith('.ts'))
.map((name) => name.replace('.ts', ''));
let ifStatements = '';
for (const locale of locales) {
for (const ns of namespaces) {
ifStatements += `if (lng === '${locale}' && ns === '${ns}') {
return baseUrl + '{{hash:${i18nFile(locale, ns)}}}';
}\n`;
}
}
const loader = await prettier.format(`// ATTENTION: This file is auto-generated. Do not edit manually!
export const pathLoader = (baseUrl: string) => (lngs: string[], nss: string[]) => {
const lng = lngs[0];
const ns = nss[0];
${ifStatements}return false;
};
`, {
parser: 'typescript',
...prettierConfig,
});
await fs.promises.writeFile(path.join(i18nDir, 'locale-paths.ts'), loader, 'utf8');
};
module.exports = { buildI18n, buildLocalePathLoader };
if (require.main === module) {
buildLocalePathLoader();
buildI18n();
}