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-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
export class ApplicationView extends ResizableWidget {
|
2019-08-20 04:56:40 +08:00
|
|
|
private menu_view = this.disposable(new NavigationView());
|
|
|
|
private main_content_view = this.disposable(new MainContentView());
|
|
|
|
|
2019-09-16 01:32:34 +08:00
|
|
|
readonly element = el.div(
|
|
|
|
{ class: "application_ApplicationView" },
|
|
|
|
this.menu_view.element,
|
|
|
|
this.main_content_view.element,
|
|
|
|
);
|
|
|
|
|
2019-08-20 04:56:40 +08:00
|
|
|
constructor() {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-20 04:56:40 +08:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|