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