2018-01-08 05:22:41 +08:00
|
|
|
import {Component, Input} from "@angular/core";
|
2017-12-25 07:42:25 +08:00
|
|
|
import {Config} from "../../../common/config/public/Config";
|
|
|
|
import {Cookie} from "ng2-cookies";
|
|
|
|
import {CookieNames} from "../../../common/CookieNames";
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'language',
|
|
|
|
templateUrl: './language.component.html',
|
|
|
|
styleUrls: ['./language.component.css'],
|
|
|
|
})
|
|
|
|
export class LanguageComponent {
|
|
|
|
|
2018-01-08 05:22:41 +08:00
|
|
|
@Input() isDark: boolean;
|
2017-12-25 07:42:25 +08:00
|
|
|
languages: string[] = [];
|
|
|
|
current: string = null;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.languages = Config.Client.languages;
|
|
|
|
if (Cookie.get(CookieNames.lang) != null) {
|
|
|
|
this.current = Cookie.get(CookieNames.lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|