import {InputElement} from "./InputElement"; import {UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; import BaseUIElement from "../BaseUIElement"; export default class CombinedInputElement extends InputElement { private readonly _a: InputElement; private readonly _b: InputElement; private readonly _combined: BaseUIElement; private readonly _value: UIEventSource private readonly _split: (x: X) => [T, J]; constructor(a: InputElement, b: InputElement, combine: (t: T, j: J) => X, split: (x: X) => [T, J]) { super(); this._a = a; this._b = b; this._split = split; this._combined = new Combine([this._a, this._b]); this._value = this._a.GetValue().map( t => combine(t, this._b?.GetValue()?.data), [this._b.GetValue()], ) .addCallback(x => { const [t, j] = split(x) this._a.GetValue()?.setData(t) this._b.GetValue()?.setData(j) }) } GetValue(): UIEventSource { return this._value; } IsValid(x: X): boolean { const [t, j] = this._split(x) return this._a.IsValid(t) && this._b.IsValid(j); } protected InnerConstructElement(): HTMLElement { return this._combined.ConstructElement(); } }