2019-06-01 05:20:13 +08:00
|
|
|
import { Button, Form, Icon, Input, Modal, Select, Upload } from "antd";
|
|
|
|
import { UploadChangeParam } from "antd/lib/upload";
|
|
|
|
import { UploadFile } from "antd/lib/upload/interface";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { observer } from "mobx-react";
|
2019-06-01 05:20:13 +08:00
|
|
|
import React, { ChangeEvent } from "react";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { questEditorStore } from "../../stores/QuestEditorStore";
|
|
|
|
import { EntityInfoComponent } from "./EntityInfoComponent";
|
|
|
|
import './QuestEditorComponent.css';
|
|
|
|
import { QuestInfoComponent } from "./QuestInfoComponent";
|
|
|
|
import { RendererComponent } from "./RendererComponent";
|
|
|
|
|
|
|
|
@observer
|
|
|
|
export class QuestEditorComponent extends React.Component<{}, {
|
|
|
|
filename?: string,
|
|
|
|
saveDialogOpen: boolean,
|
|
|
|
saveDialogFilename: string
|
|
|
|
}> {
|
|
|
|
state = {
|
|
|
|
saveDialogOpen: false,
|
|
|
|
saveDialogFilename: 'Untitled',
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const quest = questEditorStore.currentQuest;
|
|
|
|
const model = questEditorStore.currentModel;
|
|
|
|
const area = questEditorStore.currentArea;
|
|
|
|
|
|
|
|
return (
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestEditorComponent">
|
|
|
|
<Toolbar onSaveAsClicked={this.saveAsClicked} />
|
|
|
|
<div className="qe-QuestEditorComponent-main">
|
2019-05-30 03:43:06 +08:00
|
|
|
<QuestInfoComponent quest={quest} />
|
|
|
|
<RendererComponent
|
|
|
|
quest={quest}
|
|
|
|
area={area}
|
2019-06-01 05:20:13 +08:00
|
|
|
model={model}
|
|
|
|
/>
|
2019-05-30 03:43:06 +08:00
|
|
|
<EntityInfoComponent entity={questEditorStore.selectedEntity} />
|
|
|
|
</div>
|
2019-06-01 05:20:13 +08:00
|
|
|
<SaveAsForm
|
2019-05-30 03:43:06 +08:00
|
|
|
isOpen={this.state.saveDialogOpen}
|
2019-06-01 05:20:13 +08:00
|
|
|
filename={this.state.saveDialogFilename}
|
|
|
|
onFilenameChange={this.saveDialogFilenameChanged}
|
|
|
|
onOk={this.saveDialogAffirmed}
|
|
|
|
onCancel={this.saveDialogCancelled}
|
|
|
|
/>
|
2019-05-30 03:43:06 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:57:27 +08:00
|
|
|
private saveAsClicked = (filename?: string) => {
|
|
|
|
const name = filename
|
|
|
|
? filename.endsWith('.qst') ? filename.slice(0, -4) : filename
|
|
|
|
: this.state.saveDialogFilename;
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
this.setState({
|
|
|
|
saveDialogOpen: true,
|
|
|
|
saveDialogFilename: name
|
|
|
|
});
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
private saveDialogFilenameChanged = (filename: string) => {
|
|
|
|
this.setState({ saveDialogFilename: filename });
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
private saveDialogAffirmed = () => {
|
2019-06-04 03:41:18 +08:00
|
|
|
questEditorStore.saveCurrentQuestToFile(this.state.saveDialogFilename);
|
2019-06-01 05:20:13 +08:00
|
|
|
this.setState({ saveDialogOpen: false });
|
|
|
|
}
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
private saveDialogCancelled = () => {
|
|
|
|
this.setState({ saveDialogOpen: false });
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
@observer
|
2019-06-01 23:57:27 +08:00
|
|
|
class Toolbar extends React.Component<{ onSaveAsClicked: (filename?: string) => void }> {
|
2019-06-01 05:20:13 +08:00
|
|
|
state = {
|
2019-06-01 23:57:27 +08:00
|
|
|
filename: undefined
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
render() {
|
|
|
|
const quest = questEditorStore.currentQuest;
|
2019-06-26 23:47:53 +08:00
|
|
|
const areas = quest && Array.from(quest.area_variants).map(a => a.area);
|
2019-06-01 05:20:13 +08:00
|
|
|
const area = questEditorStore.currentArea;
|
|
|
|
const areaId = area && area.id;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="qe-QuestEditorComponent-toolbar">
|
|
|
|
<Upload
|
|
|
|
accept=".nj, .qst, .xj"
|
|
|
|
showUploadList={false}
|
|
|
|
onChange={this.setFilename}
|
2019-06-22 02:06:55 +08:00
|
|
|
// Make sure it doesn't do a POST:
|
|
|
|
customRequest={() => false}
|
2019-06-01 05:20:13 +08:00
|
|
|
>
|
2019-06-01 23:57:27 +08:00
|
|
|
<Button icon="file">{this.state.filename || 'Choose file...'}</Button>
|
2019-06-01 05:20:13 +08:00
|
|
|
</Upload>
|
|
|
|
{areas && (
|
|
|
|
<Select
|
2019-06-04 03:41:18 +08:00
|
|
|
onChange={questEditorStore.setCurrentAreaId}
|
|
|
|
value={areaId}
|
2019-06-01 05:20:13 +08:00
|
|
|
style={{ width: 200 }}
|
|
|
|
>
|
|
|
|
{areas.map(area =>
|
|
|
|
<Select.Option key={area.id} value={area.id}>{area.name}</Select.Option>
|
|
|
|
)}
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
{quest && (
|
|
|
|
<Button
|
|
|
|
icon="save"
|
|
|
|
onClick={this.saveAsClicked}
|
|
|
|
>Save as...</Button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private setFilename = (info: UploadChangeParam<UploadFile>) => {
|
|
|
|
if (info.file.originFileObj) {
|
|
|
|
this.setState({ filename: info.file.name });
|
2019-06-04 03:41:18 +08:00
|
|
|
questEditorStore.loadFile(info.file.originFileObj);
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
private saveAsClicked = () => {
|
|
|
|
this.props.onSaveAsClicked(this.state.filename);
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
class SaveAsForm extends React.Component<{
|
|
|
|
isOpen: boolean,
|
|
|
|
filename: string,
|
|
|
|
onFilenameChange: (name: string) => void,
|
|
|
|
onOk: () => void,
|
|
|
|
onCancel: () => void
|
|
|
|
}> {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
title={<><Icon type="save" /> Save as...</>}
|
|
|
|
visible={this.props.isOpen}
|
|
|
|
onOk={this.props.onOk}
|
|
|
|
onCancel={this.props.onCancel}
|
|
|
|
>
|
|
|
|
<Form layout="vertical">
|
|
|
|
<Form.Item label="Name">
|
|
|
|
<Input
|
|
|
|
autoFocus={true}
|
|
|
|
maxLength={12}
|
|
|
|
value={this.props.filename}
|
|
|
|
onChange={this.nameChanged}
|
|
|
|
/>
|
|
|
|
</Form.Item>
|
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private nameChanged = (e: ChangeEvent<HTMLInputElement>) => {
|
|
|
|
this.props.onFilenameChange(e.currentTarget.value);
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|