2019-08-23 23:00:39 +08:00
|
|
|
import { create_element } from "./dom";
|
2019-08-21 21:19:44 +08:00
|
|
|
import "./FileButton.css";
|
2019-08-20 05:49:40 +08:00
|
|
|
import "./Button.css";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { property } from "../observable";
|
2019-08-20 21:02:58 +08:00
|
|
|
import { Property } from "../observable/Property";
|
2019-08-23 04:45:01 +08:00
|
|
|
import { Control } from "./Control";
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
export class FileButton extends Control {
|
2019-08-23 23:00:39 +08:00
|
|
|
readonly element: HTMLLabelElement = create_element("label", {
|
2019-08-23 04:45:01 +08:00
|
|
|
class: "core_FileButton core_Button",
|
|
|
|
});
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-08-21 21:19:44 +08:00
|
|
|
private readonly _files = property<File[]>([]);
|
|
|
|
readonly files: Property<File[]> = this._files;
|
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
private input: HTMLInputElement = create_element("input", {
|
2019-08-23 04:45:01 +08:00
|
|
|
class: "core_FileButton_input core_Button_inner",
|
|
|
|
});
|
2019-08-20 05:49:40 +08:00
|
|
|
|
|
|
|
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) {
|
2019-08-23 04:45:01 +08:00
|
|
|
this._files.val = [...this.input.files!];
|
2019-08-20 21:02:58 +08:00
|
|
|
} else {
|
2019-08-23 04:45:01 +08:00
|
|
|
this._files.val = [];
|
2019-08-20 05:49:40 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
this.element.append(
|
2019-08-23 23:00:39 +08:00
|
|
|
create_element("span", {
|
2019-08-23 04:45:01 +08:00
|
|
|
class: "core_FileButton_inner core_Button_inner",
|
|
|
|
text,
|
|
|
|
}),
|
|
|
|
this.input,
|
|
|
|
);
|
2019-08-22 04:04:08 +08:00
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
this.enabled.observe(enabled => {
|
|
|
|
this.input.disabled = !enabled;
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
this.element.classList.remove("disabled");
|
|
|
|
} else {
|
|
|
|
this.element.classList.add("disabled");
|
|
|
|
}
|
|
|
|
});
|
2019-08-20 05:49:40 +08:00
|
|
|
}
|
|
|
|
}
|