import { useEffect, useCallback, useState } from 'react'; // routes import { paths } from 'src/routes/paths'; import { useRouter } from 'src/routes/hooks'; // import { useAuthContext } from '../hooks'; // ---------------------------------------------------------------------- const loginPaths: Record = { firebase: paths.auth.firebase.login, }; // ---------------------------------------------------------------------- type Props = { children: React.ReactNode; }; export default function AuthGuard({ children }: Props) { const router = useRouter(); const { authenticated, method } = useAuthContext(); const [checked, setChecked] = useState(false); const check = useCallback(() => { if (!authenticated) { const searchParams = new URLSearchParams({ returnTo: window.location.pathname, }).toString(); const loginPath = loginPaths[method]; const href = `${loginPath}?${searchParams}`; router.replace(href); } else { setChecked(true); } }, [authenticated, method, router]); useEffect(() => { check(); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); if (!checked) { return null; } return <>{children}; }