2019-08-29 03:36:45 +08:00
|
|
|
import { el } from "../../core/gui/dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
import { gui_store, GuiTool } from "../../core/stores/GuiStore";
|
2019-08-28 06:50:38 +08:00
|
|
|
import { LazyWidget } from "../../core/gui/LazyWidget";
|
|
|
|
import { ResizableWidget } from "../../core/gui/ResizableWidget";
|
2019-08-26 21:42:12 +08:00
|
|
|
import { ChangeEvent } from "../../core/observable/Observable";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
const TOOLS: [GuiTool, () => Promise<ResizableWidget>][] = [
|
2019-08-20 04:56:40 +08:00
|
|
|
[GuiTool.Viewer, async () => new (await import("../../viewer/gui/ViewerView")).ViewerView()],
|
2019-08-22 04:04:08 +08:00
|
|
|
[
|
|
|
|
GuiTool.QuestEditor,
|
|
|
|
async () => new (await import("../../quest_editor/gui/QuestEditorView")).QuestEditorView(),
|
|
|
|
],
|
2019-09-02 20:41:46 +08:00
|
|
|
[
|
|
|
|
GuiTool.HuntOptimizer,
|
|
|
|
async () =>
|
|
|
|
new (await import("../../hunt_optimizer/gui/HuntOptimizerView")).HuntOptimizerView(),
|
|
|
|
],
|
2019-08-20 04:56:40 +08:00
|
|
|
];
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
export class MainContentView extends ResizableWidget {
|
2019-08-20 04:56:40 +08:00
|
|
|
private tool_views = new Map(
|
2019-08-28 06:50:38 +08:00
|
|
|
TOOLS.map(([tool, create_view]) => [tool, this.disposable(new LazyWidget(create_view))]),
|
2019-08-20 04:56:40 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
constructor() {
|
2019-08-29 03:36:45 +08:00
|
|
|
super(el.div({ class: "application_MainContentView" }));
|
2019-08-20 04:56:40 +08:00
|
|
|
|
|
|
|
for (const tool_view of this.tool_views.values()) {
|
|
|
|
this.element.append(tool_view.element);
|
|
|
|
}
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
const tool_view = this.tool_views.get(gui_store.tool.val);
|
2019-08-23 23:00:39 +08:00
|
|
|
if (tool_view) tool_view.visible.val = true;
|
2019-08-20 21:02:58 +08:00
|
|
|
|
|
|
|
this.disposable(gui_store.tool.observe(this.tool_changed));
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
resize(width: number, height: number): this {
|
|
|
|
super.resize(width, height);
|
|
|
|
|
|
|
|
for (const tool_view of this.tool_views.values()) {
|
|
|
|
tool_view.resize(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2019-08-26 21:42:12 +08:00
|
|
|
private tool_changed = ({ value: new_tool }: ChangeEvent<GuiTool>) => {
|
2019-08-23 04:45:01 +08:00
|
|
|
for (const tool of this.tool_views.values()) {
|
2019-08-23 23:00:39 +08:00
|
|
|
tool.visible.val = false;
|
2019-08-23 04:45:01 +08:00
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
|
|
|
|
const new_view = this.tool_views.get(new_tool);
|
2019-08-23 23:00:39 +08:00
|
|
|
if (new_view) new_view.visible.val = true;
|
2019-08-20 04:56:40 +08:00
|
|
|
};
|
|
|
|
}
|