import { m } from 'framer-motion'; // @mui import { Theme, SxProps } from '@mui/material/styles'; import Container from '@mui/material/Container'; import Typography from '@mui/material/Typography'; // assets import { ForbiddenIllustration } from 'src/assets/illustrations'; // components import { MotionContainer, varBounce } from 'src/components/animate'; // hooks import { useAuthContext } from '../hooks'; // ---------------------------------------------------------------------- type RoleBasedGuardProp = { hasContent?: boolean; roles?: string[]; children: React.ReactNode; sx?: SxProps; }; export default function RoleBasedGuard({ hasContent, roles, children, sx }: RoleBasedGuardProp) { // Logic here to get current user role const { user } = useAuthContext(); // const currentRole = 'user'; const currentRole = user?.role; // admin; if (typeof roles !== 'undefined' && !roles.includes(currentRole)) { return hasContent ? ( Permission Denied You do not have permission to access this page ) : null; } return <> {children} ; }