2019-08-20 04:56:40 +08:00
|
|
|
import { TabContainer } from "../../core/gui/TabContainer";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { Model3DView } from "./model_3d/Model3DView";
|
|
|
|
import { TextureView } from "./TextureView";
|
2020-01-05 08:07:35 +08:00
|
|
|
import { ResizableView } from "../../core/gui/ResizableView";
|
|
|
|
import { GuiStore } from "../../core/stores/GuiStore";
|
|
|
|
|
|
|
|
export class ViewerView extends ResizableView {
|
|
|
|
private readonly tab_container: TabContainer;
|
|
|
|
|
|
|
|
get element(): HTMLElement {
|
|
|
|
return this.tab_container.element;
|
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
constructor(
|
2020-01-05 08:07:35 +08:00
|
|
|
gui_store: GuiStore,
|
2019-12-22 02:40:42 +08:00
|
|
|
create_model_3d_view: () => Promise<Model3DView>,
|
|
|
|
create_texture_view: () => Promise<TextureView>,
|
|
|
|
) {
|
2020-01-05 08:07:35 +08:00
|
|
|
super();
|
|
|
|
|
|
|
|
this.tab_container = this.add(
|
|
|
|
new TabContainer(gui_store, {
|
|
|
|
class: "viewer_ViewerView",
|
|
|
|
tabs: [
|
|
|
|
{
|
|
|
|
title: "Models",
|
|
|
|
key: "models",
|
|
|
|
path: "/models",
|
|
|
|
create_view: create_model_3d_view,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Textures",
|
|
|
|
key: "textures",
|
|
|
|
path: "/textures",
|
|
|
|
create_view: create_texture_view,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
);
|
2019-09-14 21:20:36 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
2020-01-05 08:07:35 +08:00
|
|
|
|
|
|
|
resize(width: number, height: number): void {
|
|
|
|
this.tab_container.resize(width, height);
|
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|