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());
|
|
|
|
|
|
|
|
constructor() {
|
2019-08-29 03:36:45 +08:00
|
|
|
super(el.div({ class: "application_ApplicationView" }));
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
this.element.id = "root";
|
|
|
|
|
2019-08-20 04:56:40 +08:00
|
|
|
this.element.append(this.menu_view.element, this.main_content_view.element);
|
2019-09-14 21:15:59 +08:00
|
|
|
|
|
|
|
this.finalize_construction(ApplicationView.prototype);
|
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;
|
|
|
|
}
|
|
|
|
}
|