2019-06-01 05:20:13 +08:00
|
|
|
import { Alert, Menu } from 'antd';
|
|
|
|
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-05-30 23:57:31 +08:00
|
|
|
import './ApplicationComponent.css';
|
2019-06-01 05:20:13 +08:00
|
|
|
import { HuntOptimizerComponent } from './hunt-optimizer/HuntOptimizerComponent';
|
|
|
|
import { QuestEditorComponent } from './quest-editor/QuestEditorComponent';
|
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-01 05:20:13 +08:00
|
|
|
state = { tool: 'huntOptimizer' }
|
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-05-30 03:43:06 +08:00
|
|
|
toolComponent = <QuestEditorComponent />;
|
|
|
|
break;
|
2019-06-01 05:20:13 +08:00
|
|
|
case 'huntOptimizer':
|
2019-05-30 23:57:31 +08:00
|
|
|
toolComponent = <HuntOptimizerComponent />;
|
|
|
|
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
|
|
|
|
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
|
|
|
|
</Menu.Item>
|
|
|
|
</Menu>
|
|
|
|
</div>
|
2019-05-30 23:57:31 +08:00
|
|
|
<ErrorBoundary>
|
2019-05-30 03:43:06 +08:00
|
|
|
{toolComponent}
|
2019-05-30 23:57:31 +08:00
|
|
|
</ErrorBoundary>
|
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-05-29 00:40:29 +08:00
|
|
|
}
|
2019-05-30 23:57:31 +08:00
|
|
|
|
|
|
|
class ErrorBoundary extends React.Component {
|
|
|
|
state = {
|
|
|
|
hasError: false
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="ApplicationComponent-main" >
|
|
|
|
{this.state.hasError ? (
|
|
|
|
<div className="ApplicationComponent-error">
|
|
|
|
<div>
|
2019-06-01 05:20:13 +08:00
|
|
|
<Alert type="error" message="Something went wrong." />
|
2019-05-30 23:57:31 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : this.props.children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getDerivedStateFromError(_error: Error) {
|
|
|
|
return { hasError: true };
|
|
|
|
}
|
|
|
|
}
|