blob: eaf3e40cbd7092e666b5ab29a36d6289771cfcd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
import React, { Component } from 'react';
import ContainerDimensions from 'react-container-dimensions';
import MainToobar from './MainToolbar';
import MainMap from './MainMap';
import Drawer from '@material-ui/core/Drawer';
import withStyles from '@material-ui/core/styles/withStyles';
const styles = theme => ({
root: {
height: "100vh",
display: "flex",
flexDirection: "column"
},
content: {
flexGrow: 1,
overflow: "hidden",
display: "flex",
flexDirection: "row",
[theme.breakpoints.down('xs')]: {
flexDirection: "column-reverse"
}
},
drawerPaper: {
position: 'relative',
[theme.breakpoints.up('sm')]: {
width: 350
},
[theme.breakpoints.down('xs')]: {
height: 250
}
},
mapContainer: {
flexGrow: 1
}
});
class MainPage extends Component {
constructor(props) {
super(props);
this.state = {
loading: true
};
}
componentDidMount() {
fetch('/api/session').then(response => {
if (response.ok) {
this.setState({
loading: false
});
} else {
this.props.history.push('/login');
}
});
}
render() {
const { classes } = this.props;
const { loading } = this.state;
if (loading) {
return (
<div>Loading...</div>
);
} else {
return (
<div className={classes.root}>
<MainToobar history={this.props.history} />
<div className={classes.content}>
<Drawer
variant="permanent"
classes={{ paper: classes.drawerPaper }}>
</Drawer>
<div className={classes.mapContainer}>
<ContainerDimensions>
<MainMap/>
</ContainerDimensions>
</div>
</div>
</div>
);
}
}
}
export default withStyles(styles)(MainPage);
|