2019-08-20 04:56:40 +08:00
|
|
|
import { NavigationView } from "./NavigationView";
|
|
|
|
import { MainContentView } from "./MainContentView";
|
2019-08-23 23:00:39 +08:00
|
|
|
import { create_element } from "../../core/gui/dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
|
|
|
|
|
|
|
export class ApplicationView extends ResizableView {
|
2019-08-23 23:00:39 +08:00
|
|
|
element = create_element("div", { class: "application_ApplicationView" });
|
2019-08-20 04:56:40 +08:00
|
|
|
|
|
|
|
private menu_view = this.disposable(new NavigationView());
|
|
|
|
private main_content_view = this.disposable(new MainContentView());
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
resize(width: number, height: number): this {
|
|
|
|
super.resize(width, height);
|
|
|
|
this.main_content_view.resize(width, height - this.menu_view.height);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|