mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 19:16:41 +07:00
svg buttons (initial)
removed styled-components gradient paths
This commit is contained in:
parent
245b559e2d
commit
7229a48297
22 changed files with 853 additions and 89 deletions
|
@ -1,54 +1,43 @@
|
|||
import React from 'react';
|
||||
|
||||
import { Editor } from '$modules/Editor';
|
||||
|
||||
import { MapScreen } from '$styles/mapScreen';
|
||||
import { ControlsScreen } from '$styles/controlsScreen';
|
||||
import { MODES } from '$constants/modes';
|
||||
import { EditorPanel } from '$components/panels/EditorPanel';
|
||||
import { Fills } from '$components/Fills';
|
||||
|
||||
export class App extends React.Component {
|
||||
state = {
|
||||
mode: 'none',
|
||||
editor: null,
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
const container = 'map';
|
||||
const { mode } = this.state;
|
||||
|
||||
this.editor = new Editor({
|
||||
const editor = new Editor({
|
||||
container,
|
||||
mode,
|
||||
setMode: this.setMode,
|
||||
});
|
||||
|
||||
this.setState({ editor })
|
||||
}
|
||||
|
||||
setMode = mode => {
|
||||
this.setState({ mode });
|
||||
};
|
||||
|
||||
startPolyMode = () => this.editor.changeMode(MODES.POLY);
|
||||
|
||||
startStickerMode = () => this.editor.changeMode(MODES.STICKERS);
|
||||
|
||||
startRouterMode = () => this.editor.changeMode(MODES.ROUTER);
|
||||
|
||||
render() {
|
||||
const { mode } = this.state;
|
||||
const {
|
||||
state: { mode, editor },
|
||||
} = this;
|
||||
|
||||
|
||||
return (
|
||||
<div>
|
||||
<MapScreen />
|
||||
<ControlsScreen>
|
||||
<button onClick={this.startPolyMode}>
|
||||
{mode === MODES.POLY && '-->'}{MODES.POLY}
|
||||
</button>
|
||||
<button onClick={this.startStickerMode}>
|
||||
{mode === MODES.STICKERS && '-->'}{MODES.STICKERS}
|
||||
</button>
|
||||
<button onClick={this.startRouterMode}>
|
||||
{mode === MODES.ROUTER && '-->'}{MODES.ROUTER}
|
||||
</button>
|
||||
</ControlsScreen>
|
||||
<Fills />
|
||||
<div id="map" />
|
||||
<EditorPanel editor={editor} mode={mode} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue