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

52 lines
1.4 KiB
TypeScript
Raw Normal View History

import { el } from "./dom";
import "./FileButton.css";
import "./Button.css";
import { property } from "../observable";
2019-08-20 21:02:58 +08:00
import { Property } from "../observable/Property";
import { Control } from "./Control";
export class FileButton extends Control {
readonly element: HTMLLabelElement = el("label", {
class: "core_FileButton core_Button",
});
private readonly _files = property<File[]>([]);
readonly files: Property<File[]> = this._files;
private input: HTMLInputElement = el("input", {
class: "core_FileButton_input core_Button_inner",
});
constructor(text: string, accept: string = "") {
super();
this.input.type = "file";
this.input.accept = accept;
this.input.onchange = () => {
if (this.input.files && this.input.files.length) {
this._files.val = [...this.input.files!];
2019-08-20 21:02:58 +08:00
} else {
this._files.val = [];
}
};
this.element.append(
el("span", {
class: "core_FileButton_inner core_Button_inner",
text,
}),
this.input,
);
this.enabled.observe(enabled => {
this.input.disabled = !enabled;
if (enabled) {
this.element.classList.remove("disabled");
} else {
this.element.classList.add("disabled");
}
});
}
}