-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added fetching ticket attestation data
- Loading branch information
Showing
1 changed file
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,39 @@ | ||
'use client' | ||
import { useEffect, useState } from 'react' | ||
import { useAccount } from 'wagmi' | ||
import Tickets from '@/components/tickets' | ||
|
||
function TicketPage() { | ||
return <Tickets /> | ||
const { address } = useAccount() | ||
const [data, setData] = useState(null) | ||
const [loading, setLoading] = useState(false) | ||
|
||
useEffect(() => { | ||
async function fetchData() { | ||
try { | ||
setLoading(true) | ||
const response = await fetch(`/api/attestation?recipient=${address}`) | ||
const result = await response.json() | ||
setData(result) | ||
} catch (error) { | ||
console.error('Error fetching attestations:', error) | ||
} finally { | ||
setLoading(false) | ||
} | ||
} | ||
|
||
if (address) { | ||
fetchData() | ||
} | ||
}, []) | ||
|
||
if (loading) return <>Loading...</> | ||
return ( | ||
<> | ||
<Tickets /> | ||
<pre>{JSON.stringify(data, null, 2)}</pre> | ||
</> | ||
) | ||
} | ||
|
||
export default TicketPage |