2019-08-29 03:36:45 +08:00
|
|
|
import { el } from "./dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
import "./Button.css";
|
2019-08-20 21:02:58 +08:00
|
|
|
import { Observable } from "../observable/Observable";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { emitter } from "../observable";
|
2019-08-23 04:45:01 +08:00
|
|
|
import { Control } from "./Control";
|
2019-08-28 06:50:38 +08:00
|
|
|
import { Emitter } from "../observable/Emitter";
|
2019-08-29 03:36:45 +08:00
|
|
|
import { WidgetOptions } from "./Widget";
|
2019-08-20 05:49:40 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
type ButtonOptions = WidgetOptions & {
|
|
|
|
text?: string;
|
|
|
|
};
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
export class Button extends Control<HTMLButtonElement> {
|
2019-08-28 06:50:38 +08:00
|
|
|
readonly click: Observable<MouseEvent>;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
private readonly _click: Emitter<MouseEvent> = emitter<MouseEvent>();
|
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
constructor(text: string, options?: ButtonOptions) {
|
|
|
|
super(
|
|
|
|
el.button({ class: "core_Button" }, el.span({ class: "core_Button_inner", text })),
|
|
|
|
options,
|
|
|
|
);
|
2019-08-28 06:50:38 +08:00
|
|
|
|
|
|
|
this.click = this._click;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-26 21:42:12 +08:00
|
|
|
this.element.onclick = (e: MouseEvent) => this._click.emit({ value: e });
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
2019-08-28 06:50:38 +08:00
|
|
|
|
|
|
|
protected set_enabled(enabled: boolean): void {
|
|
|
|
super.set_enabled(enabled);
|
|
|
|
this.element.disabled = !enabled;
|
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|