2019-08-21 21:19:44 +08:00
|
|
|
import { property } from "../observable";
|
2019-08-23 23:00:39 +08:00
|
|
|
import { Property } from "../observable/Property";
|
|
|
|
import { Input } from "./Input";
|
|
|
|
import "./NumberInput.css"
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
export class NumberInput extends Input<number> {
|
2019-08-21 21:19:44 +08:00
|
|
|
readonly preferred_label_position = "left";
|
|
|
|
|
|
|
|
constructor(
|
2019-08-23 23:00:39 +08:00
|
|
|
value: number = 0,
|
|
|
|
options?: {
|
|
|
|
label?: string;
|
|
|
|
min?: number | Property<number>;
|
|
|
|
max?: number | Property<number>;
|
|
|
|
step?: number | Property<number>;
|
|
|
|
},
|
2019-08-21 21:19:44 +08:00
|
|
|
) {
|
2019-08-23 23:00:39 +08:00
|
|
|
super(
|
|
|
|
property(value),
|
|
|
|
"core_NumberInput",
|
|
|
|
"number",
|
|
|
|
"core_NumberInput_inner",
|
|
|
|
options && options.label,
|
|
|
|
);
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
if (options) {
|
|
|
|
const { min, max, step } = options;
|
|
|
|
this.set_attr("min", min, String);
|
|
|
|
this.set_attr("max", max, String);
|
|
|
|
this.set_attr("step", step, String);
|
|
|
|
}
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
this.element.style.width = "54px";
|
|
|
|
}
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
protected get_input_value(): number {
|
|
|
|
return this.input.valueAsNumber;
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
protected set_input_value(value: number): void {
|
|
|
|
this.input.valueAsNumber = value;
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
}
|