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
|
import React from 'react';
import {
AppBar,
Tabs,
Tab,
Typography,
Toolbar,
} from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
import TimerIcon from '@material-ui/icons/Timer';
import AccountCircleIcon from '@material-ui/icons/AccountCircle';
import AssignmentIcon from '@material-ui/icons/Assignment';
import GitHubIcon from '@material-ui/icons/GitHub';
const useStyles = makeStyles(theme => ({
root: {
background: theme.palette.background.elevation2,
color: theme.palette.text.primary,
},
logo: {
margin: theme.spacing(0, 3, 0, 3),
color: theme.palette.primary.main,
},
tab: {
'& .MuiTab-wrapper': {
padding: theme.spacing(2),
flexDirection: 'row',
'& svg': {
marginRight: theme.spacing(1),
marginBottom: '0 !important',
}
}
}
}));
const Header = ({ page, setPage }) => {
const classes = useStyles();
const handleChange = (event, newPage) => {
setPage(newPage);
};
const icons = {
app: (<TimerIcon />),
profile: (<AccountCircleIcon />),
scoreboard: (<AssignmentIcon />),
contribute: (<GitHubIcon />),
};
return (
<AppBar position="sticky" className={classes.root}>
<Toolbar>
<Typography variant="h4" className={classes.logo}>
ChronoCube
</Typography>
<Tabs onChange={handleChange} value={page}>
{ Object.keys(icons).map(item => (
<Tab
label={item}
icon={icons[item]}
value={item}
className={classes.tab}
key={item}
/>
))}
</Tabs>
</Toolbar>
</AppBar>
);
};
export default Header;
|