source: src/auth/guard/role-based-guard.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.6 KB
Line 
1import { m } from 'framer-motion';
2// @mui
3import { Theme, SxProps } from '@mui/material/styles';
4import Container from '@mui/material/Container';
5import Typography from '@mui/material/Typography';
6// assets
7import { ForbiddenIllustration } from 'src/assets/illustrations';
8// components
9import { MotionContainer, varBounce } from 'src/components/animate';
10// hooks
11import { useAuthContext } from '../hooks';
12
13// ----------------------------------------------------------------------
14
15type RoleBasedGuardProp = {
16 hasContent?: boolean;
17 roles?: string[];
18 children: React.ReactNode;
19 sx?: SxProps<Theme>;
20};
21
22export default function RoleBasedGuard({ hasContent, roles, children, sx }: RoleBasedGuardProp) {
23 // Logic here to get current user role
24 const { user } = useAuthContext();
25
26 // const currentRole = 'user';
27 const currentRole = user?.role; // admin;
28
29 if (typeof roles !== 'undefined' && !roles.includes(currentRole)) {
30 return hasContent ? (
31 <Container component={MotionContainer} sx={{ textAlign: 'center', ...sx }}>
32 <m.div variants={varBounce().in}>
33 <Typography variant="h3" sx={{ mb: 2 }}>
34 Permission Denied
35 </Typography>
36 </m.div>
37
38 <m.div variants={varBounce().in}>
39 <Typography sx={{ color: 'text.secondary' }}>
40 You do not have permission to access this page
41 </Typography>
42 </m.div>
43
44 <m.div variants={varBounce().in}>
45 <ForbiddenIllustration
46 sx={{
47 height: 260,
48 my: { xs: 5, sm: 10 },
49 }}
50 />
51 </m.div>
52 </Container>
53 ) : null;
54 }
55
56 return <> {children} </>;
57}
Note: See TracBrowser for help on using the repository browser.