import { Col } from 'web/components/layout/col' import { Leaderboard } from 'web/components/leaderboard' import { Page } from 'web/components/page' import { getTopCreators, getTopTraders, getTopFollowed, Period, User, } from 'web/lib/firebase/users' import { formatMoney } from 'common/util/format' import { fromPropz, usePropz } from 'web/hooks/use-propz' import { useEffect, useState } from 'react' import { LoadingIndicator } from 'web/components/loading-indicator' import { Title } from 'web/components/title' import { Tabs } from 'web/components/layout/tabs' import { useTracking } from 'web/hooks/use-tracking' export const getStaticProps = fromPropz(getStaticPropz) export async function getStaticPropz() { return queryLeaderboardUsers('allTime') } const queryLeaderboardUsers = async (period: Period) => { const [topTraders, topCreators, topFollowed] = await Promise.all([ getTopTraders(period).catch(() => {}), getTopCreators(period).catch(() => {}), getTopFollowed().catch(() => {}), ]) return { props: { topTraders, topCreators, topFollowed, }, revalidate: 60, // regenerate after a minute } } export default function Leaderboards(props: { topTraders: User[] topCreators: User[] topFollowed: User[] }) { props = usePropz(props, getStaticPropz) ?? { topTraders: [], topCreators: [], topFollowed: [], } const { topFollowed } = props const [topTradersState, setTopTraders] = useState(props.topTraders) const [topCreatorsState, setTopCreators] = useState(props.topCreators) const [isLoading, setLoading] = useState(false) const [period, setPeriod] = useState('allTime') useEffect(() => { setLoading(true) queryLeaderboardUsers(period).then((res) => { setTopTraders(res.props.topTraders as User[]) setTopCreators(res.props.topCreators as User[]) setLoading(false) }) }, [period]) const LeaderboardWithPeriod = (period: Period) => { return ( <> {!isLoading ? ( <> {period === 'allTime' ? ( //TODO: show other periods once they're available formatMoney(user.profitCached[period]), }, ]} /> ) : ( <> )} formatMoney(user.creatorVolumeCached[period]), }, ]} /> ) : ( )} {period === 'allTime' ? ( user.followerCountCached, }, ]} /> ) : ( <> )} ) } useTracking('view leaderboards') return ( <Tabs defaultIndex={0} onClick={(title, index) => { const period = ['allTime', 'monthly', 'weekly', 'daily'][index] setPeriod(period as Period) }} tabs={[ { title: 'All Time', content: LeaderboardWithPeriod('allTime'), }, { title: 'Monthly', content: LeaderboardWithPeriod('monthly'), }, { title: 'Weekly', content: LeaderboardWithPeriod('weekly'), }, { title: 'Daily', content: LeaderboardWithPeriod('daily'), }, ]} /> </Page> ) }