forked from SpringRoll/SpringRoll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalizer.js
More file actions
134 lines (120 loc) · 2.96 KB
/
Localizer.js
File metadata and controls
134 lines (120 loc) · 2.96 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* @typedef {{path: string}} Locale
* @typedef {{default: string, locales: { name: Locale }}} Localizer.Config
* @typedef {{language: string, fallback: string}} Localizer.Options
*/
/**
* @export
* @class Localizer
*/
export class Localizer {
/**
* Creates an instance of Localizer.
* @param {Localizer.Config} config
* @param {Localizer.Options} [options={}]
* @memberof Localizer
*/
constructor(config, options = {}) {
this.locales = config.locales;
this.setPrimaryLocale(
options.language || this.getBrowsersLocaleKey() || config.default
);
this.setFallbackLocale(options.fallback || config.default);
}
/**
*
* @param {string} path
* @param {any} [options={}]
* @return {{path: string, language: string}}
* @memberof Localizer
*/
resolve(path, options = {}) {
const language = options.language
? this.getLocaleKey(options.language)
: this.primaryLanguage;
const fallback =
this.getLocaleKey(options.fallback) || this.fallbackLanguage;
const primaryLocale = this.locales[language];
const fallbackLocale = this.locales[fallback];
if (primaryLocale) {
return { path: primaryLocale.path + path, language: language };
}
if (fallbackLocale) {
return { path: fallbackLocale.path + path, language: fallback };
}
}
/**
* @param {string} localeKey
* @return {boolean} True if language is set.
* @memberof Localizer
*/
setPrimaryLocale(localeKey) {
const key = this.getLocaleKey(localeKey);
if (key) {
this.primaryLanguage = key;
return true;
}
return false;
}
/**
* @param {string} localeKey
* @return {boolean} True if fallback is set.
* @memberof Localizer
*/
setFallbackLocale(localeKey) {
const key = this.getLocaleKey(localeKey);
if (key) {
this.fallbackLanguage = key;
return true;
}
return false;
}
/**
*
* @param {string} localeKey
* @return {string}
* @memberof Localizer
*/
getLocaleKey(localeKey) {
if (localeKey) {
let key = localeKey.toLowerCase();
if (this.locales[key]) {
return key;
}
if (key.indexOf('-') > 0) {
key = key.split('-')[0];
return this.getLocaleKey(key);
}
}
return undefined;
}
/**
* @private
* @return {void | string}
* @memberof Localizer
*/
getBrowsersLocaleKey() {
const browserLanguages = this.getBrowserLanguages();
for (let i = 0, length = browserLanguages.length; i < length; i++) {
const key = this.getLocaleKey(browserLanguages[i]);
if (key) {
return key;
}
}
return undefined;
}
/**
*
* @return {ReadonlyArray[*] | []} An array of browser languages.
* @memberof Localizer
*/
getBrowserLanguages() {
if (navigator.languages) {
return navigator.languages;
}
if (navigator.language) {
return [navigator.language || navigator.userLanguage];
}
return [];
}
}