mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
26 lines
624 B
TypeScript
26 lines
624 B
TypeScript
import {Component, Input} from "@angular/core";
|
|
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 {
|
|
|
|
@Input() isDark: boolean;
|
|
languages: string[] = [];
|
|
current: string = null;
|
|
|
|
constructor() {
|
|
this.languages = Config.Client.languages;
|
|
if (Cookie.get(CookieNames.lang) != null) {
|
|
this.current = Cookie.get(CookieNames.lang);
|
|
}
|
|
}
|
|
|
|
}
|
|
|