2020-07-31 04:58:58 +02:00
|
|
|
import {UIElement} from "./UI/UIElement";
|
|
|
|
import {DropDown} from "./UI/Input/DropDown";
|
|
|
|
import {State} from "./State";
|
|
|
|
import Locale from "./UI/i18n/Locale";
|
|
|
|
|
2020-07-24 01:12:57 +02:00
|
|
|
export class Utils {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives a clean float, or undefined if parsing fails
|
|
|
|
* @param str
|
|
|
|
*/
|
|
|
|
static asFloat(str): number {
|
|
|
|
if (str) {
|
|
|
|
const i = parseFloat(str);
|
|
|
|
if (isNaN(i)) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
2020-07-24 14:46:25 +02:00
|
|
|
|
|
|
|
public static Upper(str : string){
|
|
|
|
return str.substr(0,1).toUpperCase() + str.substr(1);
|
|
|
|
}
|
2020-07-31 04:58:58 +02:00
|
|
|
|
|
|
|
static DoEvery(millis: number, f: (() => void)) {
|
2020-07-31 17:11:44 +02:00
|
|
|
if(State.runningFromConsole){
|
|
|
|
return;
|
|
|
|
}
|
2020-07-31 04:58:58 +02:00
|
|
|
window.setTimeout(
|
|
|
|
function () {
|
|
|
|
f();
|
|
|
|
Utils.DoEvery(millis, f);
|
|
|
|
}
|
|
|
|
, millis)
|
|
|
|
}
|
|
|
|
|
|
|
|
public static CreateLanguagePicker(label: string | UIElement = "") {
|
|
|
|
|
|
|
|
return new DropDown(label, State.state.layoutToUse.data.supportedLanguages.map(lang => {
|
|
|
|
return {value: lang, shown: lang}
|
|
|
|
}
|
|
|
|
), Locale.language);
|
|
|
|
}
|
|
|
|
|
2020-07-24 14:46:25 +02:00
|
|
|
}
|