phantasmal-world/src/core/gui/TextInput.ts

32 lines
828 B
TypeScript

import { Input, InputOptions } from "./Input";
import { Property } from "../observable/property/Property";
export type TextInputOptions = InputOptions & {
max_length?: number | Property<number>;
};
export class TextInput extends Input<string> {
readonly preferred_label_position = "left";
constructor(value = "", options?: TextInputOptions) {
super(value, "core_TextInput", "text", "core_TextInput_inner", options);
if (options) {
const { max_length } = options;
this.set_attr("maxLength", max_length);
}
this.set_value(value);
this.finalize_construction();
}
protected get_value(): string {
return this.input_element.value;
}
protected set_value(value: string): void {
this.input_element.value = value;
}
}