1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/language/language.component.ts

27 lines
621 B
TypeScript
Raw Normal View History

import {Component} 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 {
languages: string[] = [];
current: string = null;
constructor() {
this.languages = Config.Client.languages;
if (Cookie.get(CookieNames.lang) != null) {
this.current = Cookie.get(CookieNames.lang);
}
console.log(this.current);
}
}