44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { UINode } from "./node";
|
|
|
|
export class TextInput extends UINode {
|
|
private id: string;
|
|
private titleElement: HTMLLabelElement;
|
|
private inputElement: HTMLInputElement;
|
|
public constructor(title: string) {
|
|
super(title);
|
|
this.id = Math.random().toString();
|
|
this.titleElement = document.createElement("label");
|
|
this.titleElement.innerText = title;
|
|
this.titleElement.id = `inpt_title_${this.id}`;
|
|
this.inputElement = document.createElement("input");
|
|
this.inputElement.id = `inpt_${this.id}`;
|
|
this.inputElement.type = "text";
|
|
this.titleElement.appendChild(this.inputElement);
|
|
this.element.appendChild(this.titleElement);
|
|
}
|
|
|
|
public focus() {
|
|
this.inputElement.focus();
|
|
}
|
|
|
|
public click() {
|
|
this.inputElement.click();
|
|
}
|
|
|
|
public getElement(): HTMLElement {
|
|
return this.inputElement;
|
|
}
|
|
|
|
public setText(text: string) {
|
|
this.title = text;
|
|
this.titleElement.innerText = text;
|
|
}
|
|
|
|
public getValue(): string {
|
|
return this.inputElement.value;
|
|
}
|
|
|
|
public setValue(value: string) {
|
|
this.inputElement.value = value;
|
|
}
|
|
} |