-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.ts
441 lines (389 loc) · 10.7 KB
/
index.ts
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
// https://www.i18next.com/misc/creating-own-plugins#backend
import { BackendModule, ResourceLanguage } from 'i18next';
const defaultOpts = {
collectionName: 'i18n',
languageFieldName: 'lang',
namespaceFieldName: 'ns',
dataFieldName: 'data',
readOnError: console.error,
readMultiOnError: console.error,
createOnError: console.error,
};
type I18NFirestoreBackendModuleFuncs = {
/**
* the `collection` function from the modular Firestore SDK
*/
collection: Function;
/**
* the `query` function from the modular Firestore SDK
*/
query: Function;
/**
* the `where` function from the modular Firestore SDK
*/
where: Function;
/**
* the `getDocs` function from the modular Firestore SDK
*/
getDocs: Function;
};
type I18NFirestoreBackendModuleOpts = {
/**
* identifies if given `firestore` parameter is modular or namespaced
*/
isModular: boolean;
/**
* if `firestore` is modular, provides the necessary modular functions
*/
functions?: I18NFirestoreBackendModuleFuncs;
};
export type I18NFirestoreBackendOpts = {
/**
* Firestore instance, already initialized and connected
*/
firestore: any;
/**
* identifies if given Firestore is modular, and if so provides the necessary modular functions
*/
firestoreModule: I18NFirestoreBackendModuleOpts;
/**
* whether to enable debug log output
*/
debug?: boolean;
/**
* Collection name for storing i18next data
*/
collectionName: string;
/**
* Field name for language attribute
*/
languageFieldName: string;
/**
* Field name for namespace attribute
*/
namespaceFieldName: string;
/**
* Field name for data attribute
*/
dataFieldName: string;
/**
* Error handler for `read` process
*/
readOnError: (...data: any[]) => void;
/**
* Error handler for `readMulti` process
*/
readMultiOnError: (...data: any[]) => void;
/**
* Error handler for `create` process
*/
createOnError: (...data: any[]) => void;
};
type I18NFirestoreOpts = {
/**
* the backend options to pass for Firestore configuration
*/
backend: I18NFirestoreBackendOpts;
};
/**
* Backend class defined to support storing and retrieving i18next translations from Firestore
*/
export class I18NextFirestoreBackend
implements BackendModule<I18NFirestoreBackendOpts>
{
static type: 'backend';
/**
* @param services `i18next.services` - see i18next documentation
* @param backendOptions Backend Options - see i18next documentation
* @param i18nextOptions i18next Options - see i18next documentation
*/
constructor(
services: any,
backendOptions: object = {},
i18nextOptions: I18NFirestoreOpts
) {
this.services = services;
this.opts = backendOptions;
this.i18nOpts = i18nextOptions;
this.MODNAME = 'i18next-node-firestore-backend';
this.init(services, backendOptions, i18nextOptions);
}
services: any;
opts: Record<string, any>;
i18nOpts: I18NFirestoreOpts;
MODNAME: string;
debug: boolean;
firestore: any;
firestoreModule: I18NFirestoreBackendModuleOpts;
firestoreIsNamespaced: boolean;
init(services: any, opts: object, i18nOpts: I18NFirestoreOpts) {
if (!opts || (typeof opts === 'object' && Object.keys(opts).length === 0)) {
return;
}
this.services = services;
this.i18nOpts = i18nOpts;
this.opts = { ...defaultOpts, ...opts };
let bOpts = i18nOpts.backend;
this.debug = i18nOpts.backend.debug;
if (this.debug) {
console.log(`${this.MODNAME}:: options: ${JSON.stringify(bOpts)}`);
}
this.firestore = bOpts.firestore;
if (!this.firestore) {
throw new Error(
`${this.MODNAME}:: 'backend.firestore' is null or undefined`
);
}
this.firestoreModule = bOpts.firestoreModule;
if (!this.firestoreModule) {
throw new Error(
`${this.MODNAME}:: 'backend.firestoreModule' is null or undefined`
);
}
if (this.firestoreModule.isModular === undefined) {
console.log(
`${this.MODNAME}:: 'backend.firestoreModule.isModular' is undefined`,
bOpts
);
throw new Error(
`${this.MODNAME}:: 'backend.firestoreModule.isModular' is undefined`
);
}
this.firestoreIsNamespaced = !this.firestoreModule.isModular;
/**
* @param funcs array of value to confirm are all functions
* @returns true if all values are functions, false otherwise
*/
const isFunctions = (...funcs: any[]) =>
funcs.every((f) => typeof f === 'function');
if (
this.firestoreModule.isModular &&
!isFunctions(
this.firestoreModule.functions?.collection,
this.firestoreModule.functions?.query,
this.firestoreModule.functions?.where,
this.firestoreModule.functions?.getDocs
)
) {
throw new Error(
`${this.MODNAME}:: 'backend.firestoreModule.functions' is missing one or more functions`
);
}
if (this.debug) {
if (this.firestoreIsNamespaced) {
console.log(`${this.MODNAME}:: using namespaced Firestore`);
} else {
console.log(
`${this.MODNAME}:: using modular Firestore:`,
this.firestoreModule.functions
);
}
}
if (bOpts.collectionName) {
this.opts.collectionName = bOpts.collectionName;
}
if (bOpts.languageFieldName) {
this.opts.languageFieldName = bOpts.languageFieldName;
}
if (bOpts.namespaceFieldName) {
this.opts.namespaceFieldName = bOpts.namespaceFieldName;
}
if (bOpts.dataFieldName) {
this.opts.dataFieldName = bOpts.dataFieldName;
}
if (this.debug) {
console.log(`${this.MODNAME}:: this.opts: ${JSON.stringify(this.opts)}`);
}
}
/**
* @param lang the language code (e.g. "tr" or "en")
* @param ns the namespace code (e.g. "colors", "greetings")
* @returns the document from Firestore with the translations in field `data`
*/
async getDataFromNamedspacedFirestore(
lang: string,
ns: string
): Promise<{
data: { [code: string]: string };
language: string;
namespace: string;
}> {
if (this.debug) {
console.log(
`${this.MODNAME}:: calling namespaced .collection(${this.opts.collectionName})`
);
}
const collRef = this.firestore.collection(this.opts.collectionName);
const q = collRef
.where(this.opts.languageFieldName, '==', lang)
.where(this.opts.namespaceFieldName, '==', ns);
const querySnap = await q.get();
if (this.debug) {
console.log(
`${this.MODNAME}:: (${this.opts.collectionName}) querySnap.size: ${querySnap.size}`
);
}
if (querySnap.empty) {
return null;
}
if (querySnap.size > 1) {
console.warn(
`${this.MODNAME}: Found ${querySnap.size} docs for namespace ${ns}`
);
}
const data = querySnap.docs[0].data();
if (this.debug) {
console.log(`${this.MODNAME}:: collection data:`, data);
}
return data;
}
/**
* @param lang the language code (e.g. "tr" or "en")
* @param ns the namespace code (e.g. "colors", "greetings")
* @returns the document from Firestore with the translations in field `data`
*/
async getDataFromModularFirestore(
lang: string,
ns: string
): Promise<{
data: { [code: string]: string };
language: string;
namespace: string;
}> {
if (this.debug) {
console.log(
`${this.MODNAME}:: calling modular collection(${this.opts.collectionName})`
);
}
const collRef = this.firestoreModule.functions.collection(
this.firestore,
this.opts.collectionName
);
const q = this.firestoreModule.functions.query(
collRef,
this.firestoreModule.functions.where(
this.opts.languageFieldName,
'==',
lang
),
this.firestoreModule.functions.where(
this.opts.namespaceFieldName,
'==',
ns
)
);
const querySnap = await this.firestoreModule.functions.getDocs(q);
if (this.debug) {
console.log(
`${this.MODNAME}:: (${this.opts.collectionName}) querySnap.size:`,
querySnap.size
);
}
if (querySnap.empty) {
return null;
}
if (querySnap.size > 1) {
console.warn(
`${this.MODNAME}: Found ${querySnap.size} docs for namespace ${ns}`
);
}
const data = querySnap.docs[0].data();
if (this.debug) {
console.log(`${this.MODNAME}:: collection data:`, data);
}
return data;
}
/**
* @param lang the language code (e.g. "tr" or "en")
* @param ns the namespace code (e.g. "colors", "greetings")
* @returns the document from Firestore with the translations in field `data`
*/
async getLanguageAndNamespace(
lang: string,
ns: string
): Promise<{
data: { [code: string]: string };
language: string;
namespace: string;
}> {
if (
!this.firestore ||
!this.opts.collectionName ||
!this.opts.languageFieldName ||
!this.opts.namespaceFieldName
) {
return null;
}
return this.firestoreIsNamespaced
? this.getDataFromNamedspacedFirestore(lang, ns)
: this.getDataFromModularFirestore(lang, ns);
}
/**
* @param langs array of languages
* @param nss array of namespaces
* @returns an object with the translations for each language and namespace
*/
async getLanguagesAndNamespaces(
langs: string[],
nss: string[]
): Promise<{
[lang: string]: {
[ns: string]: {
data: { [code: string]: string };
language: string;
namespace: string;
};
};
}> {
let res = {};
for (let i = 0; i < langs.length; i++) {
for (let j = 0; j < nss.length; j++) {
if (!res[langs[i]]) {
res[langs[i]] = {};
}
res[langs[i]][nss[j]] = await this.getLanguageAndNamespace(
langs[i],
nss[j]
);
}
}
return res;
}
async read(lang: string, ns: string, cb: Function) {
if (!cb) return;
try {
const doc = await this.getLanguageAndNamespace(lang, ns);
if (!doc && this.debug) {
console.log(
`${this.MODNAME}: Failed to find data for lang(${lang}), ns(${ns})`
);
}
cb(null, (doc && doc[this.opts.dataFieldName]) || {});
} catch (ex) {
this.opts.readOnError(ex);
}
}
readMulti(langs: string[], nss: string[], cb: Function) {
if (!cb) return;
let x = 'NOT IMPLEMENTED YET';
if (x === 'NOT IMPLEMENTED YET') {
console.error(x);
return;
}
}
create(
langs: readonly string[],
ns: string,
key: string,
fallbackVal: string
) {
let x = 'NOT IMPLEMENTED YET';
if (x === 'NOT IMPLEMENTED YET') {
console.error(x);
return;
}
}
type: 'backend';
}
I18NextFirestoreBackend.type = 'backend';
export default I18NextFirestoreBackend;