2019-08-20 04:56:40 +08:00
|
|
|
import { NavigationView } from "./NavigationView";
|
|
|
|
import { MainContentView } from "./MainContentView";
|
2019-08-29 03:36:45 +08:00
|
|
|
import { el } from "../../core/gui/dom";
|
2019-08-28 06:50:38 +08:00
|
|
|
import { ResizableWidget } from "../../core/gui/ResizableWidget";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { GuiStore, GuiTool } from "../../core/stores/GuiStore";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
/**
|
|
|
|
* The top-level view which contains all other views.
|
|
|
|
*/
|
2019-08-28 06:50:38 +08:00
|
|
|
export class ApplicationView extends ResizableWidget {
|
2019-12-22 02:40:42 +08:00
|
|
|
private menu_view: NavigationView;
|
|
|
|
private main_content_view: MainContentView;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
readonly element: HTMLElement;
|
2019-09-16 01:32:34 +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.menu_view = this.disposable(new NavigationView(gui_store));
|
|
|
|
this.main_content_view = this.disposable(new MainContentView(gui_store, tool_views));
|
|
|
|
|
|
|
|
this.element = el.div(
|
|
|
|
{ class: "application_ApplicationView" },
|
|
|
|
this.menu_view.element,
|
|
|
|
this.main_content_view.element,
|
|
|
|
);
|
2019-08-23 04:45:01 +08:00
|
|
|
this.element.id = "root";
|
|
|
|
|
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);
|
|
|
|
this.main_content_view.resize(width, height - this.menu_view.height);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|