mapcomplete/UI/LanguagePicker.ts

23 lines
547 B
TypeScript
Raw Normal View History

import {DropDown} from "./Input/DropDown";
import Locale from "./i18n/Locale";
2021-06-12 02:58:32 +02:00
import BaseUIElement from "./BaseUIElement";
export default class LanguagePicker {
public static CreateLanguagePicker(
languages: string[],
2021-06-12 02:58:32 +02:00
label: string | BaseUIElement = "") {
if (languages === undefined || languages.length <= 1) {
return undefined;
}
2021-02-20 03:29:55 +01:00
return new DropDown(label, languages.map(lang => {
return {value: lang, shown: lang}
}
2021-06-14 17:42:26 +02:00
), Locale.language);
}
}