2019-07-24 00:39:47 +08:00
|
|
|
import GoldenLayout from "golden-layout";
|
2019-07-25 00:07:32 +08:00
|
|
|
import Logger from "js-logger";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { observer } from "mobx-react";
|
2019-07-25 00:07:32 +08:00
|
|
|
import React, { Component, createRef, FocusEvent, ReactNode } from "react";
|
|
|
|
import { quest_editor_ui_persister } from "../../persistence/QuestEditorUiPersister";
|
2019-06-28 00:50:22 +08:00
|
|
|
import { quest_editor_store } from "../../stores/QuestEditorStore";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { EntityInfoComponent } from "./EntityInfoComponent";
|
2019-07-22 02:44:34 +08:00
|
|
|
import "./QuestEditorComponent.less";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { QuestInfoComponent } from "./QuestInfoComponent";
|
2019-07-24 00:39:47 +08:00
|
|
|
import { QuestRendererComponent } from "./QuestRendererComponent";
|
2019-07-22 02:44:34 +08:00
|
|
|
import { ScriptEditorComponent } from "./ScriptEditorComponent";
|
2019-07-24 00:39:47 +08:00
|
|
|
import { Toolbar } from "./Toolbar";
|
2019-07-24 22:44:17 +08:00
|
|
|
|
|
|
|
const logger = Logger.get("ui/quest_editor/QuestEditorComponent");
|
|
|
|
|
|
|
|
const DEFAULT_LAYOUT_CONFIG = {
|
|
|
|
settings: {
|
|
|
|
showPopoutIcon: false,
|
|
|
|
},
|
|
|
|
dimensions: {
|
|
|
|
headerHeight: 28,
|
|
|
|
},
|
|
|
|
labels: {
|
|
|
|
close: "Close",
|
|
|
|
maximise: "Maximise",
|
|
|
|
minimise: "Minimise",
|
|
|
|
popout: "Open in new window",
|
|
|
|
},
|
|
|
|
content: [
|
|
|
|
{
|
|
|
|
type: "row",
|
|
|
|
content: [
|
|
|
|
{
|
|
|
|
title: "Info",
|
|
|
|
type: "react-component",
|
|
|
|
component: QuestInfoComponent.name,
|
|
|
|
isClosable: false,
|
|
|
|
width: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "stack",
|
|
|
|
width: 9,
|
|
|
|
content: [
|
|
|
|
{
|
|
|
|
title: "3D View",
|
|
|
|
type: "react-component",
|
|
|
|
component: QuestRendererComponent.name,
|
|
|
|
isClosable: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Script",
|
|
|
|
type: "react-component",
|
|
|
|
component: ScriptEditorComponent.name,
|
|
|
|
isClosable: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "Entity",
|
|
|
|
type: "react-component",
|
|
|
|
component: EntityInfoComponent.name,
|
|
|
|
isClosable: false,
|
|
|
|
width: 2,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
2019-05-30 03:43:06 +08:00
|
|
|
|
|
|
|
@observer
|
2019-07-24 00:39:47 +08:00
|
|
|
export class QuestEditorComponent extends Component {
|
|
|
|
private layout_element = createRef<HTMLDivElement>();
|
|
|
|
private layout?: GoldenLayout;
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-07-18 21:39:23 +08:00
|
|
|
componentDidMount(): void {
|
2019-07-25 00:07:32 +08:00
|
|
|
quest_editor_store.undo_stack.make_current();
|
2019-07-24 00:39:47 +08:00
|
|
|
|
|
|
|
window.addEventListener("resize", this.resize);
|
|
|
|
|
2019-07-24 22:44:17 +08:00
|
|
|
setTimeout(async () => {
|
2019-07-24 00:39:47 +08:00
|
|
|
if (this.layout_element.current && !this.layout) {
|
2019-07-24 22:44:17 +08:00
|
|
|
const config = await quest_editor_ui_persister.load_layout_config(
|
|
|
|
[
|
|
|
|
QuestInfoComponent.name,
|
|
|
|
QuestRendererComponent.name,
|
|
|
|
EntityInfoComponent.name,
|
|
|
|
ScriptEditorComponent.name,
|
|
|
|
],
|
|
|
|
DEFAULT_LAYOUT_CONFIG
|
2019-07-24 00:39:47 +08:00
|
|
|
);
|
2019-07-24 22:44:17 +08:00
|
|
|
|
|
|
|
try {
|
|
|
|
this.layout = new GoldenLayout(config, this.layout_element.current);
|
|
|
|
} catch (e) {
|
|
|
|
logger.warn("Couldn't initialize golden layout with persisted layout.", e);
|
|
|
|
|
|
|
|
this.layout = new GoldenLayout(
|
|
|
|
DEFAULT_LAYOUT_CONFIG,
|
|
|
|
this.layout_element.current
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.layout.registerComponent(QuestInfoComponent.name, QuestInfoComponent);
|
|
|
|
this.layout.registerComponent(QuestRendererComponent.name, QuestRendererComponent);
|
|
|
|
this.layout.registerComponent(EntityInfoComponent.name, EntityInfoComponent);
|
|
|
|
this.layout.registerComponent(ScriptEditorComponent.name, ScriptEditorComponent);
|
|
|
|
this.layout.on("stateChanged", () => {
|
|
|
|
if (this.layout) {
|
|
|
|
quest_editor_ui_persister.persist_layout_config(this.layout.toConfig());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
this.layout.init();
|
|
|
|
}
|
|
|
|
}, 0);
|
2019-07-18 21:39:23 +08:00
|
|
|
}
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
componentWillUnmount(): void {
|
2019-07-25 00:07:32 +08:00
|
|
|
quest_editor_store.undo_stack.ensure_not_current();
|
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
window.removeEventListener("resize", this.resize);
|
|
|
|
|
|
|
|
if (this.layout) {
|
|
|
|
this.layout.destroy();
|
|
|
|
this.layout = undefined;
|
|
|
|
}
|
|
|
|
}
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
render(): ReactNode {
|
2019-05-30 03:43:06 +08:00
|
|
|
return (
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestEditorComponent">
|
2019-07-21 03:18:09 +08:00
|
|
|
<Toolbar />
|
2019-07-25 00:07:32 +08:00
|
|
|
<div
|
|
|
|
className="qe-QuestEditorComponent-main"
|
|
|
|
onFocus={this.focus}
|
|
|
|
ref={this.layout_element}
|
|
|
|
/>
|
2019-05-30 03:43:06 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-07-25 00:07:32 +08:00
|
|
|
private focus = (e: FocusEvent) => {
|
|
|
|
const scrip_editor_element = document.getElementById("qe-ScriptEditorComponent");
|
|
|
|
|
|
|
|
if (
|
|
|
|
scrip_editor_element &&
|
|
|
|
scrip_editor_element.compareDocumentPosition(e.target) &
|
|
|
|
Node.DOCUMENT_POSITION_CONTAINED_BY
|
|
|
|
) {
|
|
|
|
// quest_editor_store.script_undo_stack.make_current();
|
|
|
|
quest_editor_store.undo_stack.ensure_not_current();
|
|
|
|
} else {
|
|
|
|
quest_editor_store.undo_stack.make_current();
|
2019-07-24 00:39:47 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private resize = () => {
|
|
|
|
if (this.layout) {
|
|
|
|
this.layout.updateSize();
|
2019-07-18 21:39:23 +08:00
|
|
|
}
|
|
|
|
};
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|