1 | import { m } from 'framer-motion';
|
---|
2 | // @mui
|
---|
3 | import { Theme, SxProps } from '@mui/material/styles';
|
---|
4 | import Container from '@mui/material/Container';
|
---|
5 | import Typography from '@mui/material/Typography';
|
---|
6 | // assets
|
---|
7 | import { ForbiddenIllustration } from 'src/assets/illustrations';
|
---|
8 | // components
|
---|
9 | import { MotionContainer, varBounce } from 'src/components/animate';
|
---|
10 | // hooks
|
---|
11 | import { useAuthContext } from '../hooks';
|
---|
12 |
|
---|
13 | // ----------------------------------------------------------------------
|
---|
14 |
|
---|
15 | type RoleBasedGuardProp = {
|
---|
16 | hasContent?: boolean;
|
---|
17 | roles?: string[];
|
---|
18 | children: React.ReactNode;
|
---|
19 | sx?: SxProps<Theme>;
|
---|
20 | };
|
---|
21 |
|
---|
22 | export 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 | }
|
---|