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";
|
|
|
|
import { ResizableWidget } from "../../core/gui/ResizableWidget";
|
2019-08-26 21:42:12 +08:00
|
|
|
import { ChangeEvent } from "../../core/observable/Observable";
|
2019-12-27 07:55:32 +08:00
|
|
|
import { div } from "../../core/gui/dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
export class MainContentView extends ResizableWidget {
|
2019-12-27 07:55:32 +08:00
|
|
|
readonly element = div({ className: "application_MainContentView" });
|
2019-09-16 01:32:34 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
private tool_views: Map<GuiTool, LazyWidget>;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
constructor(gui_store: GuiStore, tool_views: [GuiTool, () => Promise<ResizableWidget>][]) {
|
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(
|
|
|
|
tool_views.map(([tool, create_view]) => [
|
|
|
|
tool,
|
|
|
|
this.disposable(new LazyWidget(create_view)),
|
|
|
|
]),
|
|
|
|
);
|
|
|
|
|
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-09-14 21:15:59 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
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-10-02 00:30:26 +08:00
|
|
|
private tool_changed = ({ value: new_tool }: ChangeEvent<GuiTool>): void => {
|
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
|
|
|
};
|
|
|
|
}
|