1
|
import {Injectable} from '@angular/core';
|
2
|
import {TranslateService} from '@ngx-translate/core';
|
3
|
import {registerLocaleData} from '@angular/common';
|
4
|
import localeEn from '@angular/common/locales/en';
|
5
|
import localeCs from '@angular/common/locales/cs';
|
6
|
import {Subject} from 'rxjs';
|
7
|
import {Languages} from '../enums/common.enum';
|
8
|
|
9
|
@Injectable({
|
10
|
providedIn: 'root'
|
11
|
})
|
12
|
export class LocalizationService {
|
13
|
readonly defaultLocale = 'cs';
|
14
|
|
15
|
currentLocaleSubject: Subject<string>;
|
16
|
|
17
|
private currentLocale = this.defaultLocale;
|
18
|
|
19
|
constructor(private translate: TranslateService) {
|
20
|
this.currentLocaleSubject = new Subject<string>();
|
21
|
|
22
|
registerLocaleData(localeEn);
|
23
|
registerLocaleData(localeCs);
|
24
|
|
25
|
translate.setDefaultLang(this.defaultLocale);
|
26
|
}
|
27
|
|
28
|
switchLocale(locale: string): string {
|
29
|
this.translate.use(locale);
|
30
|
this.currentLocaleSubject.next(locale);
|
31
|
this.currentLocale = locale;
|
32
|
|
33
|
return this.getCurrentLanguage();
|
34
|
}
|
35
|
|
36
|
getCurrentLanguage(): Languages {
|
37
|
switch (this.currentLocale) {
|
38
|
case 'cs':
|
39
|
return Languages.CZECH;
|
40
|
case 'en':
|
41
|
default:
|
42
|
return Languages.ENGLISH;
|
43
|
}
|
44
|
}
|
45
|
|
46
|
getCurrentLocale(): string {
|
47
|
return this.currentLocale;
|
48
|
}
|
49
|
}
|