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
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { useCallback, useEffect } from 'react';
|
---|
| 2 | // routes
|
---|
| 3 | import { paths } from 'src/routes/paths';
|
---|
| 4 | import { useRouter, useSearchParams } from 'src/routes/hooks';
|
---|
| 5 | //
|
---|
| 6 | import { useAuthContext } from '../hooks';
|
---|
| 7 |
|
---|
| 8 | // ----------------------------------------------------------------------
|
---|
| 9 |
|
---|
| 10 | type Props = {
|
---|
| 11 | children: React.ReactNode;
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | export 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.