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-04 23:01:51 +08:00
|
|
|
import { withErrorBoundary } from './ErrorBoundary';
|
2019-06-01 05:20:13 +08:00
|
|
|
import { HuntOptimizerComponent } from './hunt-optimizer/HuntOptimizerComponent';
|
|
|
|
import { QuestEditorComponent } from './quest-editor/QuestEditorComponent';
|
2019-06-17 02:31:48 +08:00
|
|
|
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-04 23:01:51 +08:00
|
|
|
const QuestEditor = withErrorBoundary(QuestEditorComponent);
|
|
|
|
const HuntOptimizer = withErrorBoundary(HuntOptimizerComponent);
|
2019-06-17 02:31:48 +08:00
|
|
|
const DpsCalc = withErrorBoundary(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-17 02:31:48 +08:00
|
|
|
state = { tool: this.initTool() }
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
render() {
|
2019-05-30 03:43:06 +08:00
|
|
|
let toolComponent;
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
switch (this.state.tool) {
|
|
|
|
case 'questEditor':
|
2019-06-04 23:01:51 +08:00
|
|
|
toolComponent = <QuestEditor />;
|
2019-05-30 03:43:06 +08:00
|
|
|
break;
|
2019-06-01 05:20:13 +08:00
|
|
|
case 'huntOptimizer':
|
2019-06-04 23:01:51 +08:00
|
|
|
toolComponent = <HuntOptimizer />;
|
2019-05-30 23:57:31 +08:00
|
|
|
break;
|
2019-06-17 02:31:48 +08:00
|
|
|
case 'dpsCalc':
|
|
|
|
toolComponent = <DpsCalc />;
|
|
|
|
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-01 05:20:13 +08:00
|
|
|
onClick={this.menuClicked}
|
|
|
|
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-05-30 03:43:06 +08:00
|
|
|
{toolComponent}
|
2019-06-04 23:01:51 +08:00
|
|
|
</div>
|
2019-05-29 00:40:29 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-01 05:20:13 +08:00
|
|
|
private menuClicked = (e: ClickParam) => {
|
|
|
|
this.setState({ tool: e.key });
|
|
|
|
};
|
2019-06-17 02:31:48 +08:00
|
|
|
|
|
|
|
private initTool(): string {
|
|
|
|
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
|
|
|
}
|