mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
24 lines
792 B
TypeScript
24 lines
792 B
TypeScript
![]() |
import { NavigationView } from "./NavigationView";
|
||
|
import { MainContentView } from "./MainContentView";
|
||
|
import { create_el } from "../../core/gui/dom";
|
||
|
import { ResizableView } from "../../core/gui/ResizableView";
|
||
|
|
||
|
export class ApplicationView extends ResizableView {
|
||
|
element = create_el("div", "application_ApplicationView");
|
||
|
|
||
|
private menu_view = this.disposable(new NavigationView());
|
||
|
private main_content_view = this.disposable(new MainContentView());
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|