2017-12-07 22:07:47 -05:00
|
|
|
// A message from upstream:
|
|
|
|
// ========================
|
2017-05-22 09:06:06 -04: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.
|
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
// Glitch note:
|
|
|
|
// ============
|
|
|
|
// This code has been entirely rewritten to support glitch flavours.
|
|
|
|
// However, the underlying process is exactly the same.
|
|
|
|
|
|
|
|
const { existsSync, readdirSync, writeFileSync } = require('fs');
|
|
|
|
const { join, resolve } = require('path');
|
2017-05-22 09:06:06 -04:00
|
|
|
const rimraf = require('rimraf');
|
|
|
|
const mkdirp = require('mkdirp');
|
2017-12-07 22:07:47 -05:00
|
|
|
const { flavours } = require('./configuration.js');
|
2017-05-22 09:06:06 -04:00
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
module.exports = Object.keys(flavours).reduce(function (map, entry) {
|
|
|
|
const flavour = flavours[entry];
|
|
|
|
if (!flavour.locales) {
|
|
|
|
return map;
|
2017-07-15 19:15:25 -04:00
|
|
|
}
|
2017-12-07 22:07:47 -05:00
|
|
|
const locales = readdirSync(flavour.locales).filter(
|
|
|
|
filename => /\.js(?:on)?$/.test(filename) && !/defaultMessages|whitelist|index/.test(filename)
|
|
|
|
);
|
|
|
|
const outPath = resolve('tmp', 'locales', entry);
|
|
|
|
|
|
|
|
rimraf.sync(outPath);
|
|
|
|
mkdirp.sync(outPath);
|
2017-07-15 19:15:25 -04:00
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
locales.forEach(function (locale) {
|
|
|
|
const localeName = locale.replace(/\.js(?:on)?$/, '');
|
|
|
|
const localePath = join(outPath, `${localeName}.js`);
|
|
|
|
const baseLocale = localeName.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
|
|
|
|
`app/javascript/locales/locale-data/${baseLocale}.js`,
|
|
|
|
// fall back to English (this is what react-intl does anyway)
|
|
|
|
'node_modules/react-intl/locale-data/en.js',
|
|
|
|
].filter(
|
|
|
|
filename => existsSync(filename)
|
|
|
|
).map(
|
|
|
|
filename => filename.replace(/(?:node_modules|app\/javascript)\//, '')
|
|
|
|
)[0];
|
|
|
|
const localeContent = `//
|
|
|
|
// locales/${entry}/${localeName}.js
|
2017-05-22 09:06:06 -04:00
|
|
|
// automatically generated by generateLocalePacks.js
|
|
|
|
//
|
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
import messages from '../../../${flavour.locales}/${locale.replace(/\.js$/, '')}';
|
|
|
|
import localeData from '${localeDataPath}';
|
|
|
|
import { setLocale } from 'locales';
|
2017-05-22 09:06:06 -04:00
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
setLocale({
|
|
|
|
localeData,
|
|
|
|
messages,
|
|
|
|
});
|
|
|
|
`;
|
|
|
|
writeFileSync(localePath, localeContent, 'utf8');
|
|
|
|
map[`locales/${entry}/${localeName}`] = localePath;
|
|
|
|
});
|
2017-05-22 09:06:06 -04:00
|
|
|
|
2017-12-07 22:07:47 -05:00
|
|
|
return map;
|
|
|
|
}, {});
|