@shopify/polaris
Version:
Shopify’s admin product component library
42 lines (38 loc) • 1.63 kB
JavaScript
import { get } from '../get.js';
import { merge } from '../merge.js';
const REPLACE_REGEX = /{([^}]*)}/g;
class I18n {
/**
* @param translation A locale object or array of locale objects that overrides default translations. If specifying an array then your desired language dictionary should come first, followed by your fallback language dictionaries
*/
constructor(translation) {
this.translation = {};
// slice the array to make a shallow copy of it, so we don't accidentally
// modify the original translation array
this.translation = Array.isArray(translation) ? merge(...translation.slice().reverse()) : translation;
}
translate(id, replacements) {
const text = get(this.translation, id, '');
if (!text) {
return '';
}
if (replacements) {
return text.replace(REPLACE_REGEX, match => {
const replacement = match.substring(1, match.length - 1);
if (replacements[replacement] === undefined) {
const replacementData = JSON.stringify(replacements);
throw new Error(`Error in translation for key '${id}'. No replacement found for key '${replacement}'. The following replacements were passed: '${replacementData}'`);
}
// This could be a string or a number, but JS doesn't mind which it gets
// and can handle that cast internally. So let it, to save us calling
// toString() on what's already a string in 90% of cases.
return replacements[replacement];
});
}
return text;
}
translationKeyExists(path) {
return Boolean(get(this.translation, path));
}
}
export { I18n };