Add icon marketplace

This commit is contained in:
2026-01-30 20:36:04 -07:00
parent 56cb8af74c
commit a145d8cc2b
3 changed files with 85 additions and 4 deletions

View File

@@ -0,0 +1,66 @@
'use client'
import { useEffect, useState } from 'react'
import { HomeButton } from '@/app/components/HomeButton'
import { DiscordButton } from '@/app/components/DiscordButton'
import axios from 'axios'
interface MarketplaceIcon {
username: string
userId: number
data: string
hash: string
id: string
price: number
buyable: boolean
name: string
}
export default function BerryDashGameInfo () {
const [response, setResponse] = useState<MarketplaceIcon[] | null | -1>(null)
useEffect(() => {
document.title = 'Lncvrt Games - Berry Dash Icon Marketplace'
;(async () => {
try {
const request = await axios.get('/api/berrydash/icon-marketplace')
setResponse(request.data.success ? request.data.data : -1)
} catch {
setResponse(-1)
}
})()
}, [])
return (
<div className='box text-center'>
<HomeButton />
<DiscordButton />
<p className='px-8 -mt-2 mb-4 text-2xl'>Berry Dash Icon Marketplace</p>
<p>A browser for the in game icon marketplace!</p>
<div className='sub-box mt-2 -mx-4 -mb-4 flex flex-row flex-wrap justify-center gap-2 max-w-[95vw]'>
{response == null || response == -1 ? (
<p className='text-2xl'>
{response != -1 ? 'Loading...' : 'Failed to get marketplace icons'}
</p>
) : (
response.map(icon => (
<div className='sub-box2'>
<div className='bg-(--col8) rounded-md w-fit h-fit p-2 mx-auto'>
<img
src={`data:image/png;base64,${icon.data}`}
width={96}
height={96}
draggable={false}
className='pointer-events-none'
/>
</div>
<p>Bird Name: {icon.name}</p>
<p>Price: {icon.price}</p>
<p>Designer Name: {icon.username}</p>
</div>
))
)}
</div>
</div>
)
}