Fixed custom generator by fixing dependencies

This commit is contained in:
Pieter Vander Vennet 2020-11-05 13:34:48 +01:00
parent d326e56b15
commit 9c53fe9868
5 changed files with 88 additions and 78 deletions

23
UI/LanguagePicker.ts Normal file
View file

@ -0,0 +1,23 @@
import {UIElement} from "./UIElement";
import {DropDown} from "./Input/DropDown";
import Locale from "./i18n/Locale";
export default class LanguagePicker {
public static CreateLanguagePicker(
languages : string[] ,
label: string | UIElement = "") {
if (languages.length <= 1) {
return undefined;
}
return new DropDown(label, languages.map(lang => {
return {value: lang, shown: lang}
}
), Locale.language);
}
}