2016-11-29 11:42:20 +05:30
|
|
|
/* eslint-env node */
|
2016-07-31 00:46:05 +05:30
|
|
|
/* eslint-disable no-console */
|
2016-05-09 00:58:51 +05:30
|
|
|
import fs from 'fs';
|
|
|
|
import {sync as globSync} from 'glob';
|
|
|
|
import {sync as mkdirpSync} from 'mkdirp';
|
|
|
|
import chalk from 'chalk';
|
|
|
|
import prompt from 'prompt';
|
2018-03-14 17:48:58 +05:30
|
|
|
import localesMap from './../src/i18n/index.json';
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-11-17 04:26:34 +05:30
|
|
|
const MESSAGES_PATTERN = `${__dirname}/../dist/messages/**/*.json`;
|
|
|
|
const LANG_DIR = `${__dirname}/../src/i18n`;
|
2016-05-09 00:58:51 +05:30
|
|
|
const DEFAULT_LOCALE = 'en';
|
2018-03-14 17:48:58 +05:30
|
|
|
const SUPPORTED_LANGS = [DEFAULT_LOCALE, ...Object.keys(localesMap)];
|
2016-05-09 00:58:51 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Aggregates the default messages that were extracted from the app's
|
|
|
|
* React components via the React Intl Babel plugin. An error will be thrown if
|
|
|
|
* there are messages in different components that use the same `id`. The result
|
|
|
|
* is a flat collection of `id: message` pairs for the app's default locale.
|
|
|
|
*/
|
|
|
|
let idToFileMap = {};
|
|
|
|
let duplicateIds = [];
|
2016-07-31 00:46:05 +05:30
|
|
|
const collectedMessages = globSync(MESSAGES_PATTERN)
|
2016-05-09 00:58:51 +05:30
|
|
|
.map((filename) => [filename, JSON.parse(fs.readFileSync(filename, 'utf8'))])
|
|
|
|
.reduce((collection, [file, descriptors]) => {
|
|
|
|
descriptors.forEach(({id, defaultMessage}) => {
|
|
|
|
if (collection.hasOwnProperty(id)) {
|
|
|
|
duplicateIds.push(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
collection[id] = defaultMessage;
|
|
|
|
idToFileMap[id] = (idToFileMap[id] || []).concat(file);
|
|
|
|
});
|
|
|
|
|
|
|
|
return collection;
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
if (duplicateIds.length) {
|
|
|
|
console.log('\nFound duplicated ids:');
|
|
|
|
duplicateIds.forEach((id) => console.log(`${chalk.yellow(id)}:\n - ${idToFileMap[id].join('\n - ')}\n`));
|
|
|
|
console.log(chalk.red('Please correct the errors above to proceed further!'));
|
2017-02-25 15:22:51 +05:30
|
|
|
process.exit();
|
2016-05-09 00:58:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
duplicateIds = null;
|
|
|
|
idToFileMap = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Making a diff with the previous DEFAULT_LOCALE version
|
|
|
|
*/
|
|
|
|
const defaultMessagesPath = `${LANG_DIR}/${DEFAULT_LOCALE}.json`;
|
|
|
|
let keysToUpdate = [];
|
|
|
|
let keysToAdd = [];
|
|
|
|
let keysToRemove = [];
|
2016-07-31 00:46:05 +05:30
|
|
|
const keysToRename = [];
|
2016-05-09 00:58:51 +05:30
|
|
|
const isNotMarked = (value) => value.slice(0, 2) !== '--';
|
2016-07-31 00:46:05 +05:30
|
|
|
|
2016-09-04 14:11:33 +05:30
|
|
|
const prevMessages = readJSON(defaultMessagesPath);
|
|
|
|
const prevMessagesMap = Object.entries(prevMessages).reduce((acc, [key, value]) => {
|
|
|
|
if (acc[value]) {
|
|
|
|
acc[value].push(key);
|
|
|
|
} else {
|
|
|
|
acc[value] = [key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, {});
|
|
|
|
keysToAdd = Object.keys(collectedMessages).filter((key) => !prevMessages[key]);
|
|
|
|
keysToRemove = Object.keys(prevMessages).filter((key) => !collectedMessages[key]).filter(isNotMarked);
|
|
|
|
keysToUpdate = Object.entries(prevMessages).reduce((acc, [key, message]) =>
|
|
|
|
acc.concat(collectedMessages[key] && collectedMessages[key] !== message ? key : [])
|
|
|
|
, []);
|
|
|
|
|
|
|
|
// detect keys to rename, mutating keysToAdd and keysToRemove
|
|
|
|
[].concat(keysToAdd).forEach((toKey) => {
|
|
|
|
const keys = prevMessagesMap[collectedMessages[toKey]] || [];
|
|
|
|
const fromKey = keys.find((fromKey) => keysToRemove.indexOf(fromKey) > -1);
|
|
|
|
|
|
|
|
if (fromKey) {
|
|
|
|
keysToRename.push([fromKey, toKey]);
|
|
|
|
|
|
|
|
keysToRemove.splice(keysToRemove.indexOf(fromKey), 1);
|
|
|
|
keysToAdd.splice(keysToAdd.indexOf(toKey), 1);
|
|
|
|
}
|
|
|
|
});
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-07-31 00:46:05 +05:30
|
|
|
if (!keysToAdd.length && !keysToRemove.length && !keysToUpdate.length && !keysToRename.length) {
|
2017-02-25 15:22:51 +05:30
|
|
|
console.log(chalk.green('Everything is up to date!'));
|
|
|
|
process.exit();
|
2016-05-09 00:58:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
console.log(chalk.magenta(`The diff relative to default locale (${DEFAULT_LOCALE}) is:`));
|
|
|
|
|
|
|
|
if (keysToRemove.length) {
|
|
|
|
console.log('The following keys will be removed:');
|
2016-07-31 00:46:05 +05:30
|
|
|
console.log([chalk.red('\n - '), keysToRemove.join(chalk.red('\n - ')), '\n'].join(''));
|
2016-05-09 00:58:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (keysToAdd.length) {
|
|
|
|
console.log('The following keys will be added:');
|
2016-07-31 00:46:05 +05:30
|
|
|
console.log([chalk.green('\n + '), keysToAdd.join(chalk.green('\n + ')), '\n'].join(''));
|
2016-05-09 00:58:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (keysToUpdate.length) {
|
|
|
|
console.log('The following keys will be updated:');
|
2016-07-31 00:46:05 +05:30
|
|
|
console.log([chalk.yellow('\n @ '), keysToUpdate.join(chalk.yellow('\n @ ')), '\n'].join(''));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keysToRename.length) {
|
|
|
|
console.log('The following keys will be renamed:\n');
|
|
|
|
console.log(keysToRename.reduce((str, pair) =>
|
|
|
|
[str, pair[0], chalk.yellow(' -> '), pair[1], '\n'].join('')
|
|
|
|
, ''));
|
2016-05-09 00:58:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
prompt.start();
|
|
|
|
prompt.get({
|
|
|
|
properties: {
|
|
|
|
apply: {
|
|
|
|
description: 'Apply changes? [Y/n]',
|
|
|
|
pattern: /^y|n$/i,
|
|
|
|
message: 'Please enter "y" or "n"',
|
|
|
|
default: 'y',
|
|
|
|
before: (value) => value.toLowerCase() === 'y'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, (err, resp) => {
|
|
|
|
console.log('\n');
|
|
|
|
|
|
|
|
if (err || !resp.apply) {
|
|
|
|
return console.log(chalk.red('Aborted'));
|
|
|
|
}
|
|
|
|
|
|
|
|
buildLocales();
|
|
|
|
|
|
|
|
console.log(chalk.green('All locales was successfuly built'));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function buildLocales() {
|
|
|
|
mkdirpSync(LANG_DIR);
|
|
|
|
|
|
|
|
SUPPORTED_LANGS.map((lang) => {
|
|
|
|
const destPath = `${LANG_DIR}/${lang}.json`;
|
2016-09-04 14:11:33 +05:30
|
|
|
const newMessages = readJSON(destPath);
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-07-31 00:46:05 +05:30
|
|
|
keysToRename.forEach(([fromKey, toKey]) => {
|
|
|
|
newMessages[toKey] = newMessages[fromKey];
|
|
|
|
delete newMessages[fromKey];
|
|
|
|
});
|
2016-05-09 00:58:51 +05:30
|
|
|
keysToRemove.forEach((key) => {
|
|
|
|
delete newMessages[key];
|
|
|
|
});
|
|
|
|
keysToUpdate.forEach((key) => {
|
|
|
|
newMessages[`--${key}`] = newMessages[key];
|
2016-07-31 00:46:05 +05:30
|
|
|
newMessages[key] = collectedMessages[key];
|
2016-05-09 00:58:51 +05:30
|
|
|
});
|
2016-07-31 00:46:05 +05:30
|
|
|
keysToAdd.forEach((key) => {
|
|
|
|
newMessages[key] = collectedMessages[key];
|
2016-05-09 00:58:51 +05:30
|
|
|
});
|
|
|
|
|
2016-07-31 00:46:05 +05:30
|
|
|
const sortedKeys = Object.keys(newMessages).sort((key1, key2) => {
|
|
|
|
key1 = key1.replace(/^\-+/, '');
|
|
|
|
key2 = key2.replace(/^\-+/, '');
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-07-31 00:46:05 +05:30
|
|
|
return key1 < key2 || !isNotMarked(key1) ? -1 : 1;
|
2016-05-09 00:58:51 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
const sortedNewMessages = sortedKeys.reduce((acc, key) => {
|
|
|
|
acc[key] = newMessages[key];
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
fs.writeFileSync(destPath, JSON.stringify(sortedNewMessages, null, 4) + '\n');
|
|
|
|
});
|
|
|
|
}
|
2016-09-04 14:11:33 +05:30
|
|
|
|
|
|
|
function readJSON(destPath) {
|
|
|
|
try {
|
|
|
|
return JSON.parse(fs.readFileSync(destPath, 'utf8'));
|
|
|
|
} catch (err) {
|
|
|
|
console.log(chalk.yellow(`Can not read ${destPath}. The new file will be created.`), `(${err.message})`);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|