source: src/auth/guard/guest-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: 804 bytes
Line 
1import { useCallback, useEffect } from 'react';
2// routes
3import { paths } from 'src/routes/paths';
4import { useRouter, useSearchParams } from 'src/routes/hooks';
5//
6import { useAuthContext } from '../hooks';
7
8// ----------------------------------------------------------------------
9
10type Props = {
11 children: React.ReactNode;
12};
13
14export default function GuestGuard({ children }: Props) {
15 const router = useRouter();
16
17 const searchParams = useSearchParams();
18
19 const returnTo = searchParams.get('returnTo') || paths.dashboard.root;
20
21 const { authenticated } = useAuthContext();
22
23 const check = useCallback(() => {
24 if (authenticated) {
25 router.replace(returnTo);
26 }
27 }, [authenticated, returnTo, router]);
28
29 useEffect(() => {
30 check();
31 }, [check]);
32
33 return <>{children}</>;
34}
Note: See TracBrowser for help on using the repository browser.