2019-12-22 02:40:42 +08:00
|
|
|
import { GuiStore, GuiTool } from "../../core/stores/GuiStore";
|
2019-08-28 06:50:38 +08:00
|
|
|
import { LazyWidget } from "../../core/gui/LazyWidget";
|
2019-12-27 07:55:32 +08:00
|
|
|
import { div } from "../../core/gui/dom";
|
2020-01-05 08:07:35 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
|
|
|
import { Widget } from "../../core/gui/Widget";
|
|
|
|
import { Resizable } from "../../core/gui/Resizable";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
export class MainContentView extends ResizableView {
|
2019-12-22 02:40:42 +08:00
|
|
|
private tool_views: Map<GuiTool, LazyWidget>;
|
2020-01-05 08:07:35 +08:00
|
|
|
private current_tool_view?: LazyWidget;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
readonly element = div({ className: "application_MainContentView" });
|
|
|
|
|
|
|
|
constructor(gui_store: GuiStore, tool_views: [GuiTool, () => Promise<Widget & Resizable>][]) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
this.tool_views = new Map(
|
2020-01-05 08:07:35 +08:00
|
|
|
tool_views.map(([tool, create_view]) => [tool, this.add(new LazyWidget(create_view))]),
|
2019-12-22 02:40:42 +08:00
|
|
|
);
|
|
|
|
|
2019-08-20 04:56:40 +08:00
|
|
|
for (const tool_view of this.tool_views.values()) {
|
|
|
|
this.element.append(tool_view.element);
|
|
|
|
}
|
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
this.disposables(
|
|
|
|
gui_store.tool.observe(({ value }) => this.set_current_tool(value), { call_now: true }),
|
|
|
|
);
|
2019-09-14 21:15:59 +08:00
|
|
|
|
2020-07-15 01:46:11 +08:00
|
|
|
this.finalize_construction(MainContentView);
|
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;
|
|
|
|
}
|
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
private set_current_tool(tool: GuiTool): void {
|
|
|
|
if (this.current_tool_view) {
|
|
|
|
this.current_tool_view.visible.val = false;
|
|
|
|
this.current_tool_view.deactivate();
|
2019-08-23 04:45:01 +08:00
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2020-01-05 08:07:35 +08:00
|
|
|
this.current_tool_view = this.tool_views.get(tool);
|
|
|
|
|
|
|
|
if (this.current_tool_view) {
|
|
|
|
this.current_tool_view.visible.val = true;
|
|
|
|
this.current_tool_view.activate();
|
|
|
|
}
|
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|