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

78 lines
2.2 KiB
TypeScript
Raw Normal View History

import { create_element, el, icon, Icon } from "./dom";
import "./FileButton.css";
import { property } from "../observable";
import { Property } from "../observable/property/Property";
import { Control, ControlOptions } from "./Control";
import { WritableProperty } from "../observable/property/WritableProperty";
export type FileButtonOptions = ControlOptions & {
accept?: string;
icon_left?: Icon;
};
export class FileButton extends Control {
readonly element = create_element("label", {
class: "core_FileButton core_Button",
});
readonly files: Property<File[]>;
private input: HTMLInputElement = create_element("input", {
class: "core_FileButton_input core_Button_inner",
});
private readonly _files: WritableProperty<File[]> = property<File[]>([]);
constructor(text: string, options?: FileButtonOptions) {
super(options);
this.files = this._files;
this.input.type = "file";
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 = [];
}
};
if (options && options.accept) this.input.accept = options.accept;
const inner_element = el.span({
class: "core_FileButton_inner core_Button_inner",
});
if (options && options.icon_left != undefined) {
inner_element.append(
el.span(
{ class: "core_FileButton_left core_Button_left" },
icon(options.icon_left),
),
);
}
inner_element.append(el.span({ class: "core_Button_center", text }));
this.element.append(inner_element, this.input);
this.disposables(
this.enabled.observe(({ value }) => {
this.input.disabled = !value;
if (value) {
this.element.classList.remove("disabled");
} else {
this.element.classList.add("disabled");
}
}),
);
this.finalize_construction();
}
click(): void {
this.input.click();
}
}