29 lines
731 B
TypeScript
29 lines
731 B
TypeScript
'use client'
|
|
|
|
import type { User } from 'payload/auth'
|
|
import type { UIField } from 'payload/types'
|
|
|
|
import { useAuth } from '@payloadcms/ui'
|
|
import React, { useEffect, useState } from 'react'
|
|
|
|
export const AuthDebug: React.FC<UIField> = () => {
|
|
const [state, setState] = useState<User | null | undefined>()
|
|
const { user } = useAuth()
|
|
|
|
useEffect(() => {
|
|
const fetchUser = async () => {
|
|
const userRes = await fetch(`/api/users/${user?.id}`)?.then((res) => res.json())
|
|
setState(userRes)
|
|
}
|
|
|
|
void fetchUser()
|
|
}, [user])
|
|
|
|
return (
|
|
<div id="auth-debug">
|
|
<div id="use-auth-result">{user?.custom as string}</div>
|
|
<div id="users-api-result">{state?.custom as string}</div>
|
|
</div>
|
|
)
|
|
}
|