blob: cddfef088f1759115312f6b49acd712da1559ca7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import * as _ from 'lodash';
import { english } from 'ts/translations/english';
import { Deco, Key, Language } from 'ts/types';
const languageToTranslations = {
[Language.English]: english,
};
interface Translation {
[key: string]: string;
}
export class Translate {
private _selectedLanguage: Language;
private _translation: Translation;
constructor() {
this.setLanguage(Language.English);
}
public setLanguage(language: Language) {
const isLanguageSupported = !_.isUndefined(languageToTranslations[language]);
if (!isLanguageSupported) {
throw new Error(`${language} not supported`);
}
this._selectedLanguage = language;
this._translation = languageToTranslations[language];
}
public get(key: Key, decoration?: Deco) {
let text = this._translation[key];
if (!_.isUndefined(decoration)) {
switch (decoration) {
case Deco.Cap:
text = this._capitalize(text);
break;
case Deco.Upper:
text = text.toUpperCase();
break;
case Deco.CapWords:
const words = text.split(' ');
const capitalizedWords = _.map(words, w => this._capitalize(w));
text = capitalizedWords.join(' ');
break;
default:
throw new Error(`Unrecognized decoration: ${decoration}`);
}
}
return text;
}
private _capitalize(text: string) {
return `${text.charAt(0).toUpperCase()}${text.slice(1)}`;
}
}
|