2019-08-30 00:24:03 +08:00
|
|
|
import { create_element, el, icon, Icon } from "./dom";
|
2019-08-21 21:19:44 +08:00
|
|
|
import "./FileButton.css";
|
|
|
|
import { property } from "../observable";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { Property } from "../observable/property/Property";
|
2019-09-01 02:01:35 +08:00
|
|
|
import { Control, ControlOptions } from "./Control";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { WritableProperty } from "../observable/property/WritableProperty";
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-09-01 02:01:35 +08:00
|
|
|
export type FileButtonOptions = ControlOptions & {
|
|
|
|
accept?: string;
|
|
|
|
icon_left?: Icon;
|
|
|
|
};
|
|
|
|
|
2019-09-16 01:32:34 +08:00
|
|
|
export class FileButton extends Control {
|
|
|
|
readonly element = create_element("label", {
|
|
|
|
class: "core_FileButton core_Button",
|
|
|
|
});
|
|
|
|
|
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-09-01 02:01:35 +08:00
|
|
|
constructor(text: string, options?: FileButtonOptions) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super(options);
|
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.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-30 00:24:03 +08:00
|
|
|
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),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-03 22:44:13 +08:00
|
|
|
inner_element.append(el.span({ class: "core_Button_center", text }));
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
this.element.append(inner_element, 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-09-14 21:15:59 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
2019-08-20 05:49:40 +08:00
|
|
|
}
|
2019-09-01 02:01:35 +08:00
|
|
|
|
|
|
|
click(): void {
|
|
|
|
this.input.click();
|
|
|
|
}
|
2019-08-20 05:49:40 +08:00
|
|
|
}
|