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