Sharkey/src/build/i18n.ts

72 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-12-16 21:35:30 -08:00
/**
* Replace i18n texts
*/
2018-06-17 17:54:53 -07:00
import locale, { isAvailableLanguage, LocaleObject } from '../../locales';
2017-12-16 21:35:30 -08:00
export default class Replacer {
private lang: string;
2018-05-20 04:26:38 -07:00
public pattern = /%i18n:([a-z0-9_\-\.\/\|]+?)%/g;
2017-12-16 21:35:30 -08:00
constructor(lang: string) {
this.lang = lang;
this.get = this.get.bind(this);
this.replacement = this.replacement.bind(this);
}
2018-06-17 03:09:24 -07:00
private get(path: string, key: string): string {
if (!isAvailableLanguage(this.lang)) {
2018-02-09 17:27:05 -08:00
console.warn(`lang '${this.lang}' is not supported`);
return key; // Fallback
}
2018-06-17 03:09:24 -07:00
const texts = locale[this.lang];
2018-06-17 17:54:53 -07:00
let text = texts;
2017-12-16 21:35:30 -08:00
2018-04-14 09:20:46 -07:00
if (path) {
if (text.hasOwnProperty(path)) {
2018-06-17 03:09:24 -07:00
text = text[path] as LocaleObject;
2018-04-14 09:20:46 -07:00
} else {
console.warn(`path '${path}' not found in '${this.lang}'`);
return key; // Fallback
}
}
2017-12-16 21:35:30 -08:00
// Check the key existance
const error = key.split('.').some(k => {
2018-02-09 17:32:59 -08:00
if (text.hasOwnProperty(k)) {
2018-06-17 03:09:24 -07:00
text = (text as LocaleObject)[k];
2017-12-16 21:35:30 -08:00
return false;
} else {
return true;
}
});
if (error) {
2018-04-14 09:20:46 -07:00
console.warn(`key '${key}' not found in '${path}' of '${this.lang}'`);
2017-12-16 21:35:30 -08:00
return key; // Fallback
2018-06-17 22:28:43 -07:00
} else if (typeof text !== 'string') {
2018-06-17 03:09:24 -07:00
console.warn(`key '${key}' is not string in '${path}' of '${this.lang}'`);
return key; // Fallback
2017-12-16 21:35:30 -08:00
} else {
return text;
}
}
2018-06-17 03:09:24 -07:00
public replacement(match: string, key: string) {
2018-05-16 17:28:31 -07:00
let path = null;
2018-04-14 09:04:40 -07:00
2018-05-16 17:28:31 -07:00
if (key.indexOf('|') != -1) {
path = key.split('|')[0];
key = key.split('|')[1];
2018-04-14 09:04:40 -07:00
}
2018-05-16 17:28:31 -07:00
const txt = this.get(path, key);
2018-04-15 15:07:32 -07:00
2018-05-20 04:26:38 -07:00
return txt.replace(/'/g, '\\x27').replace(/"/g, '\\x22');
2017-12-16 21:35:30 -08:00
}
}