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
79
|
import React from 'react';
import {
AppBar,
Tabs,
Tab,
Typography,
Toolbar,
} from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
interface PropTypes {
logo: {
icon: React.ReactNode;
title: string;
};
contents: {
[key: string]: React.ReactNode | null;
};
page: string;
setPage: any;
}
const useStyles = makeStyles((theme: any) => ({
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',
fontSize: '0.8125rem',
'& svg': {
marginRight: theme.spacing(1),
marginBottom: '0 !important',
}
}
}
}));
const Header: React.FC<PropTypes> = ({ logo, contents, page, setPage }) => {
const classes = useStyles();
const handleChange = (event: any, newPage: string) => {
setPage(newPage);
};
return (
<AppBar position="sticky" className={classes.root}>
<Toolbar>
{logo.icon}
<Typography variant="h5" className={classes.logo} color="primary">
{logo.title}
</Typography>
<Tabs onChange={handleChange} value={page}>
{contents && Object.keys(contents).map((item: string) => (
<Tab
label={item}
icon={contents[item] as JSX.Element}
value={item}
className={classes.tab}
key={item}
/>
))}
</Tabs>
</Toolbar>
</AppBar>
);
};
export default Header;
|