soapbox/webpack/generateLocalePacks.js

51 wiersze
1.8 KiB
JavaScript
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
// To avoid adding a lot of boilerplate, locale packs are
// automatically generated here. These are written into the tmp/
// directory and then used to generate locale_en.js, locale_fr.js, etc.
const fs = require('fs');
const path = require('path');
const rimraf = require('rimraf');
const mkdirp = require('mkdirp');
2020-03-28 00:35:00 +00:00
const localesJsonPath = path.join(__dirname, '../app/gabsocial/locales');
2020-03-27 20:59:38 +00:00
const locales = fs.readdirSync(localesJsonPath).filter(filename => {
return /\.json$/.test(filename) &&
!/defaultMessages/.test(filename) &&
!/whitelist/.test(filename);
}).map(filename => filename.replace(/\.json$/, ''));
2020-03-28 00:35:00 +00:00
const outPath = path.join(__dirname, '..', 'tmp', 'packs');
2020-03-27 20:59:38 +00:00
rimraf.sync(outPath);
mkdirp.sync(outPath);
const outPaths = [];
locales.forEach(locale => {
const localePath = path.join(outPath, `locale_${locale}.js`);
const baseLocale = locale.split('-')[0]; // e.g. 'zh-TW' -> 'zh'
const localeDataPath = [
// first try react-intl
`../../node_modules/react-intl/locale-data/${baseLocale}.js`,
// then check locales/locale-data
2020-03-28 00:35:00 +00:00
`../../app/gabsocial/locales/locale-data/${baseLocale}.js`,
2020-03-27 20:59:38 +00:00
// fall back to English (this is what react-intl does anyway)
'../../node_modules/react-intl/locale-data/en.js',
].filter(filename => fs.existsSync(path.join(outPath, filename)))
.map(filename => filename.replace(/..\/..\/node_modules\//, ''))[0];
const localeContent = `//
// locale_${locale}.js
// automatically generated by generateLocalePacks.js
//
2020-03-28 00:35:00 +00:00
import messages from '../../app/gabsocial/locales/${locale}.json';
2020-03-27 20:59:38 +00:00
import localeData from ${JSON.stringify(localeDataPath)};
2020-03-28 00:35:00 +00:00
import { setLocale } from '../../app/gabsocial/locales';
2020-03-27 20:59:38 +00:00
setLocale({messages, localeData});
`;
fs.writeFileSync(localePath, localeContent, 'utf8');
outPaths.push(localePath);
});
module.exports = outPaths;