2019-05-30 03:43:06 +08:00
|
|
|
import { Classes, Navbar, NavbarGroup, NavbarHeading, Button } from '@blueprintjs/core';
|
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-29 23:04:06 +08:00
|
|
|
import './ApplicationComponent.css';
|
2019-05-30 03:43:06 +08:00
|
|
|
import { QuestEditorComponent } from './quest-editor/QuestEditorComponent';
|
|
|
|
import { observable, action } from 'mobx';
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
@observer
|
2019-05-30 03:43:06 +08:00
|
|
|
export class ApplicationComponent extends React.Component {
|
|
|
|
@observable private tool = 'quest-editor';
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
render() {
|
2019-05-30 03:43:06 +08:00
|
|
|
let toolComponent;
|
|
|
|
|
|
|
|
switch (this.tool) {
|
|
|
|
case 'quest-editor':
|
|
|
|
toolComponent = <QuestEditorComponent />;
|
|
|
|
break;
|
|
|
|
}
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
return (
|
2019-05-29 23:59:47 +08:00
|
|
|
<div className={`ApplicationComponent ${Classes.DARK}`}>
|
|
|
|
<Navbar>
|
|
|
|
<NavbarGroup className="ApplicationComponent-button-bar">
|
|
|
|
<NavbarHeading className="ApplicationComponent-heading">
|
|
|
|
Phantasmal World
|
|
|
|
</NavbarHeading>
|
2019-05-30 03:43:06 +08:00
|
|
|
<Button
|
|
|
|
text="Quest Editor (Beta)"
|
|
|
|
minimal={true}
|
|
|
|
onClick={() => this.setTool('quest-editor')}
|
2019-05-29 23:59:47 +08:00
|
|
|
/>
|
|
|
|
</NavbarGroup>
|
|
|
|
</Navbar>
|
2019-05-29 00:40:29 +08:00
|
|
|
<div className="ApplicationComponent-main">
|
2019-05-30 03:43:06 +08:00
|
|
|
{toolComponent}
|
2019-05-29 00:40:29 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-30 03:43:06 +08:00
|
|
|
private setTool = action('setTool', (tool: string) => {
|
|
|
|
this.tool = tool;
|
|
|
|
});
|
2019-05-29 00:40:29 +08:00
|
|
|
}
|