adminFront/src/pages/dashboard/Header/index.tsx
2023-03-13 15:22:54 +03:00

75 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as React from "react";
import {Box, IconButton, Typography} from "@mui/material";
import theme from "../../../theme";
import ExitToAppOutlinedIcon from '@mui/icons-material/ExitToAppOutlined';
import Logo from "../../Logo";
import makeRequest from "@kitUI/makeRequest";
const Header: React.FC = () => {
return (
<React.Fragment>
<Box sx={{
backgroundColor: theme.palette.menu.main,
width: "100%",
minHeight: "85px",
display: "flex",
justifyContent: "space-between",
flexWrap: 'wrap',
paddingLeft: '5px'
}}>
<Box sx={{
width: "150px",
display: "flex",
justifyContent: "right",
alignItems: "center"
}}>
<Logo />
</Box>
<Box sx={{
display: "flex"
}}>
<Typography
variant="h6"
sx={{
maxWidth: "230px",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
fontWeight: "normal"
}}
>
Добро пожаловать, Администратор сервиса
</Typography>
<IconButton
onClick={()=>{
makeRequest({
url: "https://admin.pena.digital/auth/logout",
contentType: true
})
.then(()=>localStorage.setItem('AT', ""))
}}
sx={{
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
cursor: "pointer",
padding: '0 31px'
}}>
<ExitToAppOutlinedIcon sx={{
color: theme.palette.golden.main,
transform: "scale(1.3)"
}} />
</IconButton>
</Box>
</Box>
</React.Fragment>
);
}
export default Header;