aboutsummaryrefslogtreecommitdiff
path: root/src/containers/Page/Page.tsx
blob: a1d64560dafa850f673db7f6afe53dd94b6f5668 (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
import React, { Suspense, useEffect } from 'react';
import { makeStyles, useTheme } from '@material-ui/core/styles';
import { useMediaQuery } from '@material-ui/core';
import { SnackbarProvider } from 'notistack';
import { ErrorBoundary } from 'react-error-boundary';
import { useHistory } from 'react-router-dom';

import Router from './Router';
import DynoWaiter from './DynoWaiter';
import Loading from '../../components/Loading/Loading';
import EmptyState from '../../components/EmptyState/EmptyState';


const useStyles = makeStyles(theme => ({
  root: {
    [theme.breakpoints.down('sm')]: {
      padding: theme.spacing(10, 0, 12, 0)
    },
    [theme.breakpoints.up('md')]: {
      padding: theme.spacing(15, 5, 8, 5)
    }
  }
}));

const Page: React.FC = () => {
  const classes = useStyles();
  const theme = useTheme();
  const history = useHistory();
  const isMobile = useMediaQuery(theme.breakpoints.down('sm'));

  useEffect(() => {
    return history.listen(() => {
      window.scrollTo(0, 0);
    });
  }, [history]);

  return (
    <ErrorBoundary
      FallbackComponent={() => <EmptyState variant="error" message="Try reloading the page." />}
    >
      <SnackbarProvider
        preventDuplicate
        maxSnack={isMobile ? 1 : 3}
        anchorOrigin={{
          vertical: 'top',
          horizontal: 'right'
        }}
      >
        <div className={classes.root}>
          <Suspense fallback={<Loading />}>
            <DynoWaiter>
              <Router />
            </DynoWaiter>
          </Suspense>
        </div>
      </SnackbarProvider>
    </ErrorBoundary>
  );
};


export default Page;