2019-08-28 06:50:38 +08:00
|
|
|
import { Input, InputOptions } from "./Input";
|
2019-08-23 23:00:39 +08:00
|
|
|
import { Property } from "../observable/Property";
|
2019-08-28 06:50:38 +08:00
|
|
|
|
|
|
|
export type TextInputOptions = InputOptions & {
|
|
|
|
max_length?: number | Property<number>;
|
|
|
|
};
|
2019-08-23 23:00:39 +08:00
|
|
|
|
|
|
|
export class TextInput extends Input<string> {
|
|
|
|
readonly preferred_label_position = "left";
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
constructor(value = "", options?: TextInputOptions) {
|
|
|
|
super(value, "core_TextInput", "text", "core_TextInput_inner", options);
|
2019-08-23 23:00:39 +08:00
|
|
|
|
|
|
|
if (options) {
|
|
|
|
const { max_length } = options;
|
|
|
|
this.set_attr("maxLength", max_length);
|
|
|
|
}
|
2019-08-28 06:50:38 +08:00
|
|
|
|
|
|
|
this.set_value(value);
|
2019-08-23 23:00:39 +08:00
|
|
|
}
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
protected get_value(): string {
|
2019-08-23 23:00:39 +08:00
|
|
|
return this.input.value;
|
|
|
|
}
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
protected set_value(value: string): void {
|
2019-08-23 23:00:39 +08:00
|
|
|
this.input.value = value;
|
|
|
|
}
|
|
|
|
}
|