2017-05-16 08:00:56 -07:00
|
|
|
/**
|
|
|
|
* Replace i18n texts
|
|
|
|
*/
|
|
|
|
|
|
|
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
|
|
|
|
2017-10-25 04:29:14 -07:00
|
|
|
export default (lang, locale) => {
|
|
|
|
function get(key: string) {
|
|
|
|
let text = locale;
|
|
|
|
|
|
|
|
// Check the key existance
|
|
|
|
const error = key.split('.').some(k => {
|
|
|
|
if (text.hasOwnProperty(k)) {
|
|
|
|
text = text[k];
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
console.warn(`key '${key}' not found in '${lang}'`);
|
|
|
|
return key; // Fallback
|
|
|
|
} else {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
enforce: 'pre',
|
2017-11-14 03:23:12 -08:00
|
|
|
test: /\.(tag|js|ts)$/,
|
2017-10-25 04:29:14 -07:00
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: StringReplacePlugin.replace({
|
|
|
|
replacements: [{
|
2017-12-07 09:48:21 -08:00
|
|
|
pattern: /"%i18n:(.+?)%"/g, replacement: (_, key) =>
|
|
|
|
'"' + get(key).replace(/"/g, '\\"') + '"'
|
2017-10-25 04:29:14 -07:00
|
|
|
}, {
|
2017-12-07 09:48:21 -08:00
|
|
|
pattern: /'%i18n:(.+?)%'/g, replacement: (_, key) =>
|
|
|
|
'\'' + get(key).replace(/'/g, '\\\'') + '\''
|
2017-10-25 04:29:14 -07:00
|
|
|
}, {
|
2017-12-07 09:48:21 -08:00
|
|
|
pattern: /%i18n:(.+?)%/g, replacement: (_, key) =>
|
|
|
|
get(key)
|
2017-10-25 04:29:14 -07:00
|
|
|
}]
|
|
|
|
})
|
|
|
|
};
|
|
|
|
};
|