21 lines
687 B
TypeScript
21 lines
687 B
TypeScript
import {UIEventSource} from "../UIEventSource";
|
|
import {LocalStorageSource} from "../../Logic/LocalStorageSource";
|
|
import {DropDown} from "../Input/DropDown";
|
|
import {Layout} from "../../Customizations/Layout";
|
|
import {UIElement} from "../UIElement";
|
|
import {State} from "../../State";
|
|
|
|
|
|
export default class Locale {
|
|
public static language: UIEventSource<string> = LocalStorageSource.Get('language', "en");
|
|
|
|
public static CreateLanguagePicker(label: string | UIElement = "") {
|
|
|
|
return new DropDown(label, State.state.layoutToUse.data.supportedLanguages.map(lang => {
|
|
return {value: lang, shown: lang}
|
|
}
|
|
), Locale.language);
|
|
}
|
|
}
|
|
|
|
|