mapcomplete/UI/Input/SimpleDatePicker.ts

39 lines
1 KiB
TypeScript
Raw Normal View History

2022-09-08 21:40:48 +02:00
import { InputElement } from "./InputElement"
import { UIEventSource } from "../../Logic/UIEventSource"
export default class SimpleDatePicker extends InputElement<string> {
2022-09-08 21:40:48 +02:00
IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false)
private readonly value: UIEventSource<string>
2022-09-08 21:40:48 +02:00
private readonly _element: HTMLElement
2022-09-08 21:40:48 +02:00
constructor(value?: UIEventSource<string>) {
super()
this.value = value ?? new UIEventSource<string>(undefined)
const self = this
2021-06-10 01:36:20 +02:00
const el = document.createElement("input")
2022-09-08 21:40:48 +02:00
this._element = el
2021-06-10 01:36:20 +02:00
el.type = "date"
el.oninput = () => {
2022-09-08 21:40:48 +02:00
// Already in YYYY-MM-DD value!
self.value.setData(el.value)
2021-06-10 01:36:20 +02:00
}
2022-09-08 21:40:48 +02:00
this.value.addCallbackAndRunD((v) => {
el.value = v
})
}
GetValue(): UIEventSource<string> {
2022-09-08 21:40:48 +02:00
return this.value
}
IsValid(t: string): boolean {
2022-09-08 21:40:48 +02:00
return !isNaN(new Date(t).getTime())
}
protected InnerConstructElement(): HTMLElement {
return this._element
}
2022-09-08 21:40:48 +02:00
}