2019-08-29 03:36:45 +08:00
|
|
|
import { GuiTool } from "../../core/stores/GuiStore";
|
|
|
|
import "./NavigationButton.css";
|
2019-12-27 07:55:32 +08:00
|
|
|
import { input, label, span } from "../../core/gui/dom";
|
2020-01-05 08:07:35 +08:00
|
|
|
import { Control } from "../../core/gui/Control";
|
2019-08-29 03:36:45 +08:00
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
export class NavigationButton extends Control {
|
2019-12-27 07:55:32 +08:00
|
|
|
readonly element = span({ className: "application_NavigationButton" });
|
2019-09-16 01:32:34 +08:00
|
|
|
|
2019-12-27 07:55:32 +08:00
|
|
|
private input: HTMLInputElement = input();
|
|
|
|
private label: HTMLLabelElement = label();
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
constructor(tool: GuiTool, text: string) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-29 03:36:45 +08:00
|
|
|
|
|
|
|
const tool_str = GuiTool[tool];
|
|
|
|
|
|
|
|
this.input.type = "radio";
|
|
|
|
this.input.name = "application_NavigationButton";
|
|
|
|
this.input.value = tool_str;
|
|
|
|
this.input.id = `application_NavigationButton_${tool_str}`;
|
|
|
|
|
|
|
|
this.label.append(text);
|
|
|
|
this.label.htmlFor = `application_NavigationButton_${tool_str}`;
|
|
|
|
|
|
|
|
this.element.append(this.input, this.label);
|
2019-09-14 21:15:59 +08:00
|
|
|
|
2020-07-15 01:46:11 +08:00
|
|
|
this.finalize_construction(NavigationButton);
|
2019-08-29 03:36:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
set checked(checked: boolean) {
|
|
|
|
this.input.checked = checked;
|
|
|
|
}
|
|
|
|
}
|