Grab up to 50 traders

This commit is contained in:
Austin Chen 2022-03-31 22:41:40 -07:00
parent 37d5d5fc93
commit 7ffef0294a
3 changed files with 16 additions and 4 deletions

View File

@ -21,7 +21,14 @@ export function Manaboard(props: {
className?: string className?: string
}) { }) {
// TODO: Ideally, highlight your own entry on the leaderboard // TODO: Ideally, highlight your own entry on the leaderboard
const { title, users, className, values } = props let { title, users, className, values } = props
const [expanded, setExpanded] = useState(false)
if (!expanded) {
users = users.slice(0, 25)
values = values.slice(0, 25)
}
return ( return (
<div className={clsx('w-full px-1', className)}> <div className={clsx('w-full px-1', className)}>
<Title text={title} className="!mt-0" /> <Title text={title} className="!mt-0" />
@ -68,6 +75,12 @@ export function Manaboard(props: {
))} ))}
</tbody> </tbody>
</table> </table>
<button
className="btn btn-sm btn-outline m-2"
onClick={() => setExpanded(!expanded)}
>
{expanded ? 'Hide' : 'Show more'}
</button>
</div> </div>
)} )}
</div> </div>

View File

@ -160,12 +160,12 @@ export function listenForPrivateUsers(
const topTradersQuery = query( const topTradersQuery = query(
collection(db, 'users'), collection(db, 'users'),
orderBy('totalPnLCached', 'desc'), orderBy('totalPnLCached', 'desc'),
limit(21) limit(51)
) )
export async function getTopTraders() { export async function getTopTraders() {
const users = await getValues<User>(topTradersQuery) const users = await getValues<User>(topTradersQuery)
return users.slice(0, 20) return users.slice(0, 50)
} }
const topCreatorsQuery = query( const topCreatorsQuery = query(

View File

@ -98,7 +98,6 @@ function Explanation() {
// [ ] Correctly calculate tax // [ ] Correctly calculate tax
// [ ] List history of purchases at the bottom // [ ] List history of purchases at the bottom
// [ ] Restrict to at most buying one slot per user? // [ ] Restrict to at most buying one slot per user?
// [ ] Set to 50 top traders
// [ ] Deduct amount from user's balance, either in UX or for real // [ ] Deduct amount from user's balance, either in UX or for real
export default function Manaboards(props: { export default function Manaboards(props: {
topTraders: User[] topTraders: User[]