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-28 06:50:38 +08:00
|
|
|
import { WritableProperty } from "../observable/WritableProperty";
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
export class FileButton extends Control<HTMLElement> {
|
2019-08-28 06:50:38 +08:00
|
|
|
readonly files: Property<File[]>;
|
2019-08-21 21:19:44 +08:00
|
|
|
|
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
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
private readonly _files: WritableProperty<File[]> = property<File[]>([]);
|
|
|
|
|
2019-08-20 05:49:40 +08:00
|
|
|
constructor(text: string, accept: string = "") {
|
2019-08-29 03:36:45 +08:00
|
|
|
super(
|
|
|
|
create_element("label", {
|
|
|
|
class: "core_FileButton core_Button",
|
|
|
|
}),
|
|
|
|
);
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
this.files = this._files;
|
|
|
|
|
2019-08-20 05:49:40 +08:00
|
|
|
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-26 21:42:12 +08:00
|
|
|
this.disposables(
|
|
|
|
this.enabled.observe(({ value }) => {
|
|
|
|
this.input.disabled = !value;
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
this.element.classList.remove("disabled");
|
|
|
|
} else {
|
|
|
|
this.element.classList.add("disabled");
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
);
|
2019-08-20 05:49:40 +08:00
|
|
|
}
|
|
|
|
}
|