feat(app): improve clerk auth
This commit is contained in:
parent
154df360ac
commit
5ae746346f
@ -8,7 +8,11 @@ import {
|
|||||||
Separator,
|
Separator,
|
||||||
SidebarTrigger,
|
SidebarTrigger,
|
||||||
} from '@boring.tools/ui'
|
} from '@boring.tools/ui'
|
||||||
|
import { useAuth } from '@clerk/clerk-react'
|
||||||
import { Link } from '@tanstack/react-router'
|
import { Link } from '@tanstack/react-router'
|
||||||
|
import { useEffect } from 'react'
|
||||||
|
|
||||||
|
import { useUser } from '../hooks/useUser'
|
||||||
|
|
||||||
type Breadcrumbs = {
|
type Breadcrumbs = {
|
||||||
name: string
|
name: string
|
||||||
@ -19,6 +23,15 @@ export const PageWrapper = ({
|
|||||||
children,
|
children,
|
||||||
breadcrumbs,
|
breadcrumbs,
|
||||||
}: { children: React.ReactNode; breadcrumbs?: Breadcrumbs[] }) => {
|
}: { children: React.ReactNode; breadcrumbs?: Breadcrumbs[] }) => {
|
||||||
|
const { error } = useUser()
|
||||||
|
const { signOut } = useAuth()
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (error) {
|
||||||
|
signOut()
|
||||||
|
}
|
||||||
|
}, [error, signOut])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<header className="flex h-16 shrink-0 items-center gap-2">
|
<header className="flex h-16 shrink-0 items-center gap-2">
|
||||||
|
21
apps/app/src/hooks/useUser.ts
Normal file
21
apps/app/src/hooks/useUser.ts
Normal file
@ -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<typeof UserOutput>
|
||||||
|
|
||||||
|
export const useUser = () => {
|
||||||
|
const { getToken } = useAuth()
|
||||||
|
return useQuery({
|
||||||
|
queryKey: ['user'],
|
||||||
|
queryFn: async (): Promise<Readonly<User>> =>
|
||||||
|
await queryFetch({
|
||||||
|
path: 'user',
|
||||||
|
method: 'get',
|
||||||
|
token: await getToken(),
|
||||||
|
}),
|
||||||
|
retry: false,
|
||||||
|
})
|
||||||
|
}
|
@ -12,13 +12,17 @@ const url = import.meta.env.PROD
|
|||||||
: 'http://localhost:3000'
|
: 'http://localhost:3000'
|
||||||
|
|
||||||
export const queryFetch = async ({ path, method, data, token }: Fetch) => {
|
export const queryFetch = async ({ path, method, data, token }: Fetch) => {
|
||||||
const response = await axios({
|
try {
|
||||||
method,
|
const response = await axios({
|
||||||
url: `${url}/v1/${path}`,
|
method,
|
||||||
data,
|
url: `${url}/v1/${path}`,
|
||||||
headers: {
|
data,
|
||||||
Authorization: `Bearer ${token}`,
|
headers: {
|
||||||
},
|
Authorization: `Bearer ${token}`,
|
||||||
})
|
},
|
||||||
return response.data
|
})
|
||||||
|
return response.data
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error('Somethind went wrong.')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user