2019-08-21 21:19:44 +08:00
|
|
|
import "./NumberInput.css";
|
|
|
|
import "./Input.css";
|
2019-08-23 04:45:01 +08:00
|
|
|
import { el } from "./dom";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { WritableProperty } from "../observable/WritableProperty";
|
|
|
|
import { property } from "../observable";
|
|
|
|
import { LabelledControl } from "./LabelledControl";
|
2019-08-21 23:56:46 +08:00
|
|
|
import { is_any_property, Property } from "../observable/Property";
|
2019-08-21 21:19:44 +08:00
|
|
|
|
|
|
|
export class NumberInput extends LabelledControl {
|
2019-08-23 04:45:01 +08:00
|
|
|
readonly element = el("span", { class: "core_NumberInput core_Input" });
|
2019-08-21 21:19:44 +08:00
|
|
|
|
|
|
|
readonly value: WritableProperty<number> = property(0);
|
|
|
|
|
|
|
|
readonly preferred_label_position = "left";
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
private readonly input: HTMLInputElement = el("input", {
|
|
|
|
class: "core_NumberInput_inner core_Input_inner",
|
|
|
|
});
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-21 21:19:44 +08:00
|
|
|
constructor(
|
|
|
|
value = 0,
|
|
|
|
label?: string,
|
|
|
|
min: number | Property<number> = -Infinity,
|
|
|
|
max: number | Property<number> = Infinity,
|
|
|
|
step: number | Property<number> = 1,
|
|
|
|
) {
|
|
|
|
super(label);
|
|
|
|
|
2019-08-22 04:04:08 +08:00
|
|
|
this.input.type = "number";
|
|
|
|
this.input.valueAsNumber = value;
|
2019-08-21 21:19:44 +08:00
|
|
|
|
|
|
|
this.set_prop("min", min);
|
|
|
|
this.set_prop("max", max);
|
|
|
|
this.set_prop("step", step);
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
this.input.onchange = () => (this.value.val = this.input.valueAsNumber);
|
2019-08-22 04:04:08 +08:00
|
|
|
|
|
|
|
this.element.append(this.input);
|
2019-08-21 21:19:44 +08:00
|
|
|
|
|
|
|
this.disposables(
|
2019-08-22 04:04:08 +08:00
|
|
|
this.value.observe(value => (this.input.valueAsNumber = value)),
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-22 04:04:08 +08:00
|
|
|
this.enabled.observe(enabled => {
|
|
|
|
this.input.disabled = !enabled;
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
this.element.classList.remove("disabled");
|
|
|
|
} else {
|
|
|
|
this.element.classList.add("disabled");
|
|
|
|
}
|
|
|
|
}),
|
2019-08-21 21:19:44 +08:00
|
|
|
);
|
2019-08-22 04:04:08 +08:00
|
|
|
|
|
|
|
this.element.style.width = "50px";
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private set_prop<T>(prop: "min" | "max" | "step", value: T | Property<T>): void {
|
2019-08-21 23:56:46 +08:00
|
|
|
if (is_any_property(value)) {
|
2019-08-23 04:45:01 +08:00
|
|
|
this.input[prop] = String(value.val);
|
2019-08-22 04:04:08 +08:00
|
|
|
this.disposable(value.observe(v => (this.input[prop] = String(v))));
|
2019-08-21 21:19:44 +08:00
|
|
|
} else {
|
2019-08-22 04:04:08 +08:00
|
|
|
this.input[prop] = String(value);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|