2019-08-30 00:24:03 +08:00
|
|
|
import { Property } from "../observable/property/Property";
|
2019-08-28 06:50:38 +08:00
|
|
|
import { Input, InputOptions } from "./Input";
|
2019-08-27 20:50:16 +08:00
|
|
|
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";
|
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
private readonly rounding_factor: number;
|
|
|
|
|
2019-08-21 21:19:44 +08:00
|
|
|
constructor(
|
2019-08-23 23:00:39 +08:00
|
|
|
value: number = 0,
|
2019-08-28 06:50:38 +08:00
|
|
|
options: InputOptions & {
|
2019-08-23 23:00:39 +08:00
|
|
|
label?: string;
|
|
|
|
min?: number | Property<number>;
|
|
|
|
max?: number | Property<number>;
|
|
|
|
step?: number | Property<number>;
|
2019-08-27 20:50:16 +08:00
|
|
|
width?: number;
|
|
|
|
round_to?: number;
|
|
|
|
} = {},
|
2019-08-21 21:19:44 +08:00
|
|
|
) {
|
2019-08-28 06:50:38 +08:00
|
|
|
super(value, "core_NumberInput", "number", "core_NumberInput_inner", options);
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
const { min, max, step } = options;
|
|
|
|
this.set_attr("min", min, String);
|
|
|
|
this.set_attr("max", max, String);
|
2019-08-30 00:24:03 +08:00
|
|
|
this.input_element.step = "any";
|
2019-08-27 20:50:16 +08:00
|
|
|
this.set_attr("step", step, String);
|
|
|
|
|
|
|
|
if (options.round_to != undefined && options.round_to >= 0) {
|
|
|
|
this.rounding_factor = Math.pow(10, options.round_to);
|
|
|
|
} else {
|
|
|
|
this.rounding_factor = 1;
|
2019-08-23 23:00:39 +08:00
|
|
|
}
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
this.element.style.width = `${options.width == undefined ? 54 : options.width}px`;
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
this.set_value(value);
|
2019-09-14 21:15:59 +08:00
|
|
|
|
|
|
|
this.finalize_construction(NumberInput.prototype);
|
2019-08-23 23:00:39 +08:00
|
|
|
}
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
protected get_value(): number {
|
2019-08-30 00:24:03 +08:00
|
|
|
return this.input_element.valueAsNumber;
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
protected set_value(value: number): void {
|
2019-09-02 20:41:46 +08:00
|
|
|
this.input_element.valueAsNumber =
|
|
|
|
Math.round(this.rounding_factor * value) / this.rounding_factor;
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
}
|