aboutsummaryrefslogtreecommitdiff
path: root/modern/src/MainPage.js
blob: 6db458ec4771955f0c10c1a41835ecfb15f83e91 (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
import React, { Component } from 'react';
import ContainerDimensions from 'react-container-dimensions';
import MainToobar from './MainToolbar';
import MainMap from './MainMap';
import withStyles from '@material-ui/core/styles/withStyles';

const styles = theme => ({
  root: {
    height: "100vh",
    display: "flex",
    flexDirection: "column"
  },
  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.mapContainer}>
            <ContainerDimensions>
              <MainMap/>
            </ContainerDimensions>
          </div>
        </div>
      );
    }
  }
}

export default withStyles(styles)(MainPage);