This commit is contained in:
tamaina 2022-01-28 15:49:58 +09:00
parent 57534be253
commit f126676c29
1 changed files with 5 additions and 9 deletions

View File

@ -1,8 +1,8 @@
export class I18n<T extends Record<string, any>> { export class I18n<T extends Record<string, any>> {
public locale: T; public ts: T;
constructor(locale: T) { constructor(locale: T) {
this.locale = locale; this.ts = locale;
//#region BIND //#region BIND
this.t = this.t.bind(this); this.t = this.t.bind(this);
@ -11,13 +11,9 @@ export class I18n<T extends Record<string, any>> {
// string にしているのは、ドット区切りでのパス指定を許可するため // string にしているのは、ドット区切りでのパス指定を許可するため
// なるべくこのメソッド使うよりもlocale直接参照の方がvueのキャッシュ効いてパフォーマンスが良いかも // なるべくこのメソッド使うよりもlocale直接参照の方がvueのキャッシュ効いてパフォーマンスが良いかも
public t(key: string, args?: Record<string, any>): string { public t(key: string, args?: Record<string, string>): string {
try { try {
let str = key.split('.').reduce((o, i) => o[i], this.locale as T | any | string); let str = key.split('.').reduce((o, i) => o[i], this.ts) as unknown as string;
if (typeof str !== 'string') {
return key;
}
if (args) { if (args) {
for (const [k, v] of Object.entries(args)) { for (const [k, v] of Object.entries(args)) {
@ -25,7 +21,7 @@ export class I18n<T extends Record<string, any>> {
} }
} }
return str; return str;
} catch (e) { } catch (err) {
console.warn(`missing localization '${key}'`); console.warn(`missing localization '${key}'`);
return key; return key;
} }