core/pages/bots/list/votes.tsx
SKINMAKER b421d1ab64
chore: apply prettier (#637)
* chore: apply prettier

* chore: edit ready comment

* chore: move ts comment
2023-11-29 22:04:33 +09:00

73 lines
2.0 KiB
TypeScript

import { NextPage, NextPageContext } from 'next'
import { useRouter } from 'next/router'
import dynamic from 'next/dynamic'
import { ParsedUrlQuery } from 'querystring'
import { Bot, List } from '@types'
import { get } from '@utils/Query'
import NotFound from '../../404'
import { PageCount } from '@utils/Yup'
const Hero = dynamic(() => import('@components/Hero'))
const Advertisement = dynamic(() => import('@components/Advertisement'))
const BotCard = dynamic(() => import('@components/BotCard'))
const ResponsiveGrid = dynamic(() => import('@components/ResponsiveGrid'))
const Container = dynamic(() => import('@components/Container'))
const Paginator = dynamic(() => import('@components/Paginator'))
const Votes: NextPage<VotesProps> = ({ data }) => {
const router = useRouter()
if (!data || data.data.length === 0 || data.totalPage < Number(router.query.page))
return <NotFound />
return (
<>
<Hero type='bots' header='하트 랭킹' description='하트를 많이 받은 봇들의 순위입니다!' />
<section id='list'>
<Container className='pb-10'>
<Advertisement />
<ResponsiveGrid>
{data.data.map((bot) => (
<BotCard key={bot.id} bot={bot} />
))}
</ResponsiveGrid>
<Paginator
totalPage={data.totalPage}
currentPage={data.currentPage}
pathname='/bots/list/votes'
/>
<Advertisement />
</Container>
</section>
</>
)
}
export const getServerSideProps = async (ctx: Context) => {
let data: List<Bot>
if (!ctx.query.page) ctx.query.page = '1'
const validate = await PageCount.validate(ctx.query.page)
.then((el) => el)
.catch(() => null)
if (!validate || isNaN(Number(ctx.query.page))) data = null
else data = await get.list.votes.load(Number(ctx.query.page))
return {
props: {
data,
},
}
}
interface VotesProps {
data: List<Bot>
}
interface Context extends NextPageContext {
query: URLQuery
}
interface URLQuery extends ParsedUrlQuery {
page: string
}
export default Votes