import clsx from 'clsx' import React, { useEffect, useState } from 'react' import { ENV_CONFIG } from '../../common/envs/constants' import { User } from '../../common/user' import { formatMoney } from '../../common/util/format' import { useUser } from '../hooks/use-user' import { buyLeaderboardSlot } from '../lib/firebase/api-call' import { AmountInput } from './amount-input' import { Avatar } from './avatar' import { Col } from './layout/col' import { Modal } from './layout/modal' import { Row } from './layout/row' import { SiteLink } from './site-link' import { Title } from './title' export function Manaboard(props: { title: string users: User[] className?: string }) { // TODO: Ideally, highlight your own entry on the leaderboard const { title, users, className } = props return (
{users.length === 0 ? ( <div className="ml-2 text-gray-500">None yet</div> ) : ( <div className="overflow-x-auto"> <table className="table-zebra table-compact table w-full text-gray-500"> <thead> <tr className="p-2"> <th> <div className="pl-2">#</div> </th> <th>Name</th> <th>Value</th> <th></th> </tr> </thead> <tbody> {users.map((user, index) => ( <tr key={user.id}> <td> <div className="pl-2">{index + 1}</div> </td> <td className="w-full" style={{ maxWidth: 190 }}> <Row className="items-center gap-4"> <Avatar avatarUrl={user.avatarUrl} size={8} /> <div className="truncate">{user.name}</div> </Row> </td> <td> <Row className="items-center gap-4"> {formatMoney(100 - 5 * index)} <BuySlotModal slot={index + 1} title={`${title}`} holder={user} value={100 - 5 * index} /> </Row> </td> <td></td> </tr> ))} </tbody> </table> </div> )} </div> ) } function Label(props: { children: React.ReactNode }) { return <label className="-mb-3 text-sm">{props.children}</label> } export function BuySlotModal(props: { title: string holder: User slot: number value: number }) { const { slot, title, holder, value } = props const user = useUser() const [open, setOpen] = useState(false) const [newValue, setNewValue] = useState(value) const [message, setMessage] = useState('') useEffect(() => { if (user?.name) { setMessage(user.name) } }, [user]) const onBuy = async () => { // Feel free to change this. - James const slotId = `${title}-${slot}` await buyLeaderboardSlot({ slotId, reassessValue: newValue }) } return ( <> <Modal open={open} setOpen={setOpen}> <Col className="gap-5 rounded-md bg-white p-6 text-gray-500"> <Title text={`Buy #${slot} on ${title}`} className="!mt-0 !text-2xl" /> <Label>Current value: {formatMoney(value)}</Label> {user && ( <Row className="items-center gap-4 rounded-md bg-gray-100 p-2 text-sm"> <div className="pl-2">{slot}</div> <Avatar avatarUrl={user.avatarUrl} size={8} /> <div className="truncate">{message}</div> </Row> )} <Label>(Optional) set message</Label> <input type="text" className="input input-bordered w-full max-w-xs" onChange={(e) => { setMessage(e.target.value) }} value={message} /> <Label>Reassess value</Label> <AmountInput amount={newValue} onChange={(amount) => setNewValue(amount ?? 0)} error="" label={ENV_CONFIG.moneyMoniker} /> <button className="btn btn-primary"> Buy Slot ({formatMoney(value)}) </button> <div className="-mt-2 text-sm"> Additional fees: {formatMoney(newValue / 10)} per hour </div> </Col> </Modal> <button className="btn btn-outline btn-sm normal-case" onClick={() => setOpen(true)} > Buy </button> </> ) }