diff --git a/apps/app/src/components/PageWrapper.tsx b/apps/app/src/components/PageWrapper.tsx index 5e1f904..2a74c80 100644 --- a/apps/app/src/components/PageWrapper.tsx +++ b/apps/app/src/components/PageWrapper.tsx @@ -8,7 +8,11 @@ import { Separator, SidebarTrigger, } from '@boring.tools/ui' +import { useAuth } from '@clerk/clerk-react' import { Link } from '@tanstack/react-router' +import { useEffect } from 'react' + +import { useUser } from '../hooks/useUser' type Breadcrumbs = { name: string @@ -19,6 +23,15 @@ export const PageWrapper = ({ children, breadcrumbs, }: { children: React.ReactNode; breadcrumbs?: Breadcrumbs[] }) => { + const { error } = useUser() + const { signOut } = useAuth() + + useEffect(() => { + if (error) { + signOut() + } + }, [error, signOut]) + return ( <>
diff --git a/apps/app/src/hooks/useUser.ts b/apps/app/src/hooks/useUser.ts new file mode 100644 index 0000000..0a67271 --- /dev/null +++ b/apps/app/src/hooks/useUser.ts @@ -0,0 +1,21 @@ +import type { UserOutput } from '@boring.tools/schema' +import { useAuth } from '@clerk/clerk-react' +import { useQuery } from '@tanstack/react-query' +import type { z } from 'zod' +import { queryFetch } from '../utils/queryFetch' + +type User = z.infer + +export const useUser = () => { + const { getToken } = useAuth() + return useQuery({ + queryKey: ['user'], + queryFn: async (): Promise> => + await queryFetch({ + path: 'user', + method: 'get', + token: await getToken(), + }), + retry: false, + }) +} diff --git a/apps/app/src/utils/queryFetch.ts b/apps/app/src/utils/queryFetch.ts index c7e9978..4b8de04 100644 --- a/apps/app/src/utils/queryFetch.ts +++ b/apps/app/src/utils/queryFetch.ts @@ -12,13 +12,17 @@ const url = import.meta.env.PROD : 'http://localhost:3000' export const queryFetch = async ({ path, method, data, token }: Fetch) => { - const response = await axios({ - method, - url: `${url}/v1/${path}`, - data, - headers: { - Authorization: `Bearer ${token}`, - }, - }) - return response.data + try { + const response = await axios({ + method, + url: `${url}/v1/${path}`, + data, + headers: { + Authorization: `Bearer ${token}`, + }, + }) + return response.data + } catch (error) { + throw new Error('Somethind went wrong.') + } }