2019-06-17 02:48:13 +08:00
|
|
|
import { Menu, Select } from 'antd';
|
2019-06-01 05:20:13 +08:00
|
|
|
import { ClickParam } from 'antd/lib/menu';
|
2019-05-29 23:04:06 +08:00
|
|
|
import { observer } from 'mobx-react';
|
2019-05-30 03:43:06 +08:00
|
|
|
import React from 'react';
|
2019-06-17 02:48:13 +08:00
|
|
|
import './ApplicationComponent.less';
|
2019-06-26 23:47:53 +08:00
|
|
|
import { with_error_boundary } from './ErrorBoundary';
|
|
|
|
import { HuntOptimizerComponent } from './hunt_optimizer/HuntOptimizerComponent';
|
|
|
|
import { QuestEditorComponent } from './quest_editor/QuestEditorComponent';
|
|
|
|
import { DpsCalcComponent } from './dps_calc/DpsCalcComponent';
|
2019-06-17 02:48:13 +08:00
|
|
|
import { Server } from '../domain';
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-06-26 23:47:53 +08:00
|
|
|
const QuestEditor = with_error_boundary(QuestEditorComponent);
|
|
|
|
const HuntOptimizer = with_error_boundary(HuntOptimizerComponent);
|
|
|
|
const DpsCalc = with_error_boundary(DpsCalcComponent);
|
2019-06-04 23:01:51 +08:00
|
|
|
|
2019-05-29 00:40:29 +08:00
|
|
|
@observer
|
2019-05-30 03:43:06 +08:00
|
|
|
export class ApplicationComponent extends React.Component {
|
2019-06-26 23:47:53 +08:00
|
|
|
state = { tool: this.init_tool() }
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
render() {
|
2019-06-26 23:47:53 +08:00
|
|
|
let tool_component;
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
switch (this.state.tool) {
|
|
|
|
case 'questEditor':
|
2019-06-26 23:47:53 +08:00
|
|
|
tool_component = <QuestEditor />;
|
2019-05-30 03:43:06 +08:00
|
|
|
break;
|
2019-06-01 05:20:13 +08:00
|
|
|
case 'huntOptimizer':
|
2019-06-26 23:47:53 +08:00
|
|
|
tool_component = <HuntOptimizer />;
|
2019-05-30 23:57:31 +08:00
|
|
|
break;
|
2019-06-17 02:31:48 +08:00
|
|
|
case 'dpsCalc':
|
2019-06-26 23:47:53 +08:00
|
|
|
tool_component = <DpsCalc />;
|
2019-06-17 02:31:48 +08:00
|
|
|
break;
|
2019-05-30 03:43:06 +08:00
|
|
|
}
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
return (
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="ApplicationComponent">
|
|
|
|
<div className="ApplicationComponent-navbar">
|
|
|
|
<h1 className="ApplicationComponent-heading">
|
|
|
|
Phantasmal World
|
|
|
|
</h1>
|
|
|
|
<Menu
|
2019-06-17 02:48:13 +08:00
|
|
|
className="ApplicationComponent-heading-menu"
|
2019-06-26 23:47:53 +08:00
|
|
|
onClick={this.menu_clicked}
|
2019-06-01 05:20:13 +08:00
|
|
|
selectedKeys={[this.state.tool]}
|
|
|
|
mode="horizontal"
|
|
|
|
>
|
|
|
|
<Menu.Item key="questEditor">
|
|
|
|
Quest Editor<sup className="ApplicationComponent-beta">(Beta)</sup>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="huntOptimizer">
|
|
|
|
Hunt Optimizer
|
2019-06-05 22:49:00 +08:00
|
|
|
</Menu.Item>
|
2019-06-17 02:31:48 +08:00
|
|
|
{/* <Menu.Item key="dpsCalc">
|
|
|
|
DPS Calculator
|
|
|
|
</Menu.Item> */}
|
2019-06-01 05:20:13 +08:00
|
|
|
</Menu>
|
2019-06-17 02:48:13 +08:00
|
|
|
<div className="ApplicationComponent-server-select">
|
|
|
|
<span>Server:</span>
|
|
|
|
<Select defaultValue={Server.Ephinea} style={{ width: 120 }}>
|
|
|
|
<Select.Option value={Server.Ephinea}>{Server.Ephinea}</Select.Option>
|
|
|
|
</Select>
|
|
|
|
</div>
|
2019-06-01 05:20:13 +08:00
|
|
|
</div>
|
2019-06-04 23:01:51 +08:00
|
|
|
<div className="ApplicationComponent-main">
|
2019-06-26 23:47:53 +08:00
|
|
|
{tool_component}
|
2019-06-04 23:01:51 +08:00
|
|
|
</div>
|
2019-05-29 00:40:29 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:47:53 +08:00
|
|
|
private menu_clicked = (e: ClickParam) => {
|
2019-06-01 05:20:13 +08:00
|
|
|
this.setState({ tool: e.key });
|
|
|
|
};
|
2019-06-17 02:31:48 +08:00
|
|
|
|
2019-06-26 23:47:53 +08:00
|
|
|
private init_tool(): string {
|
2019-06-17 02:31:48 +08:00
|
|
|
const param = window.location.search.slice(1).split('&').find(p => p.startsWith('tool='));
|
|
|
|
return param ? param.slice(5) : 'questEditor';
|
|
|
|
}
|
2019-05-29 00:40:29 +08:00
|
|
|
}
|