File size: 1,790 Bytes
f5071ca |
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 |
import React from 'react';
import { useDispatch } from 'react-redux';
import { HashRouter, Route } from 'react-router-dom';
import { createMuiTheme } from '@material-ui/core/styles';
import { ThemeProvider } from '@material-ui/styles';
import './App.css';
import Dashboard from '../Dashboard/Dashboard';
import Auth from '../Auth/Auth';
import { signIn } from '../../actions';
import createHashHistory from '../../history';
function App() {
// Dispatch
const dispatch = useDispatch();
// Check local storage if have login info
// Dispatch sign in action with our userId and redirect to dashboard
const checkLocalStorageAuth = () => {
let user = JSON.parse(localStorage.getItem('user')!);
if (user) {
dispatch(signIn(user));
createHashHistory.push('/dashboard');
}
};
return (
<ThemeProvider theme={theme}>
<HashRouter>
{checkLocalStorageAuth()}
<Route path="/dashboard" exact component={Dashboard} />
<Route path="/" exact component={Auth} />
</HashRouter>
</ThemeProvider>
);
}
export default App;
const theme = createMuiTheme({
overrides: {
MuiTooltip: {
tooltip: {
fontSize: '14px',
backgroundColor: 'black'
}
},
MuiSnackbarContent: {
root: {
backgroundColor: '#202225',
color: 'white'
}
},
MuiAppBar: {
colorPrimary: {
backgroundColor: '#36393E',
position: 'absolute'
}
}
},
palette: {
type: 'dark',
primary: {
main: '#7289da'
},
secondary: {
main: '#3ca374'
}
},
typography: {
fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
fontSize: 14,
fontWeightLight: 400,
fontWeightRegular: 500,
fontWeightMedium: 600
}
});
|