2019-08-20 04:56:40 +08:00
|
|
|
import { NavigationView } from "./NavigationView";
|
|
|
|
import { MainContentView } from "./MainContentView";
|
2019-12-27 07:55:32 +08:00
|
|
|
import { div } from "../../core/gui/dom";
|
2019-12-27 10:16:52 +08:00
|
|
|
import "./ApplicationView.css";
|
2020-01-05 08:07:35 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
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.
|
|
|
|
*/
|
2020-01-05 08:07:35 +08:00
|
|
|
export class ApplicationView extends ResizableView {
|
2019-12-22 02:40:42 +08:00
|
|
|
readonly element: HTMLElement;
|
2019-09-16 01:32:34 +08:00
|
|
|
|
2020-01-17 21:23:50 +08:00
|
|
|
constructor(
|
|
|
|
private readonly navigation_view: NavigationView,
|
|
|
|
private readonly main_content_view: MainContentView,
|
|
|
|
) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-27 07:55:32 +08:00
|
|
|
this.element = div(
|
|
|
|
{ className: "application_ApplicationView" },
|
2020-01-17 21:23:50 +08:00
|
|
|
this.navigation_view.element,
|
2019-12-22 02:40:42 +08:00
|
|
|
this.main_content_view.element,
|
|
|
|
);
|
2019-08-23 04:45:01 +08:00
|
|
|
this.element.id = "root";
|
|
|
|
|
2020-01-17 21:23:50 +08:00
|
|
|
this.add(navigation_view);
|
|
|
|
this.add(main_content_view);
|
|
|
|
|
2020-07-15 01:46:11 +08:00
|
|
|
this.finalize_construction(ApplicationView);
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
resize(width: number, height: number): this {
|
|
|
|
super.resize(width, height);
|
2020-01-17 21:23:50 +08:00
|
|
|
this.main_content_view.resize(width, height - this.navigation_view.height);
|
2019-08-20 04:56:40 +08:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|