phantasmal-world/src/application/gui/NavigationView.ts
2019-08-28 00:50:38 +02:00

74 lines
2.2 KiB
TypeScript

import { create_element } from "../../core/gui/dom";
import "./NavigationView.css";
import { gui_store, GuiTool } from "../../core/stores/GuiStore";
import { Widget } from "../../core/gui/Widget";
const TOOLS: [GuiTool, string][] = [
[GuiTool.Viewer, "Viewer"],
[GuiTool.QuestEditor, "Quest Editor"],
[GuiTool.HuntOptimizer, "Hunt Optimizer"],
];
export class NavigationView extends Widget {
readonly element = create_element("div", { class: "application_NavigationView" });
readonly height = 30;
private buttons = new Map<GuiTool, ToolButton>(
TOOLS.map(([value, text]) => [value, this.disposable(new ToolButton(value, text))]),
);
constructor() {
super();
this.element.style.height = `${this.height}px`;
this.element.onmousedown = this.mousedown;
for (const button of this.buttons.values()) {
this.element.append(button.element);
}
this.mark_tool_button(gui_store.tool.val);
this.disposable(gui_store.tool.observe(({ value }) => this.mark_tool_button(value)));
}
private mousedown(e: MouseEvent): void {
if (e.target instanceof HTMLLabelElement && e.target.control instanceof HTMLInputElement) {
gui_store.tool.val = (GuiTool as any)[e.target.control.value];
}
}
private mark_tool_button = (tool: GuiTool) => {
const button = this.buttons.get(tool);
if (button) button.checked = true;
};
}
class ToolButton extends Widget {
element: HTMLElement = create_element("span");
private input: HTMLInputElement = create_element("input");
private label: HTMLLabelElement = create_element("label");
constructor(tool: GuiTool, text: string) {
super();
const tool_str = GuiTool[tool];
this.input.type = "radio";
this.input.name = "application_ToolButton";
this.input.value = tool_str;
this.input.id = `application_ToolButton_${tool_str}`;
this.label.append(text);
this.label.htmlFor = `application_ToolButton_${tool_str}`;
this.element.className = "application_ToolButton";
this.element.append(this.input, this.label);
}
set checked(checked: boolean) {
this.input.checked = checked;
}
}