mapcomplete/test.ts

27 lines
763 B
TypeScript
Raw Normal View History

/*
2020-09-30 20:22:58 +00:00
import {VariableUiElement} from "./UI/Base/VariableUIElement";
import OpeningHoursPicker from "./UI/Input/OpeningHoursPicker";
let oh = new OpeningHoursPicker();
oh.SetStyle("height:100vh;display:block;").AttachTo('maindiv');
2020-09-30 20:22:58 +00:00
oh.GetValue().addCallback(data => console.log(data))
new VariableUiElement(oh.GetValue().map(oh => {
if(oh === undefined){
return "<no value selected>";
}
return oh.weekdayStart + " " + oh.startHour + ":" + oh.startMinutes + " --> " +
oh.weekdayEnd + " " + oh.endHour + ":" + oh.endMinutes
2020-09-30 21:06:22 +00:00
})).AttachTo("extradiv");
/*/
import {Utils} from "./Utils";
import {FixedUiElement} from "./UI/Base/FixedUiElement";
Utils.generateStats((stats) => {
new FixedUiElement(stats).AttachTo('maindiv')
})
//*/