2021-12-15 07:41:50 +00:00
|
|
|
import Link from 'next/link'
|
|
|
|
import _ from 'lodash'
|
|
|
|
import dayjs from 'dayjs'
|
2021-12-16 03:04:38 +00:00
|
|
|
import { useEffect, useState } from 'react'
|
2021-12-15 07:41:50 +00:00
|
|
|
import { useUserBets } from '../hooks/use-user-bets'
|
|
|
|
import { Bet } from '../lib/firebase/bets'
|
|
|
|
import { User } from '../lib/firebase/users'
|
|
|
|
import { formatMoney, formatPercent } from '../lib/util/format'
|
|
|
|
import { Col } from './layout/col'
|
2021-12-15 18:41:18 +00:00
|
|
|
import { Spacer } from './layout/spacer'
|
2021-12-16 03:04:38 +00:00
|
|
|
import { Contract, getContract, path } from '../lib/firebase/contracts'
|
2021-12-15 22:57:40 +00:00
|
|
|
import { Row } from './layout/row'
|
2021-12-16 02:11:29 +00:00
|
|
|
import { UserLink } from './user-page'
|
2021-12-16 02:27:09 +00:00
|
|
|
import {
|
|
|
|
calculatePayout,
|
|
|
|
currentValue,
|
|
|
|
resolvedPayout,
|
|
|
|
} from '../lib/calculation/contract'
|
2021-12-16 04:30:24 +00:00
|
|
|
import clsx from 'clsx'
|
2021-12-15 07:41:50 +00:00
|
|
|
|
|
|
|
export function BetsList(props: { user: User }) {
|
|
|
|
const { user } = props
|
|
|
|
const bets = useUserBets(user?.id ?? '')
|
|
|
|
|
2021-12-16 03:04:38 +00:00
|
|
|
const [contracts, setContracts] = useState<Contract[]>([])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const loadedBets = bets === 'loading' ? [] : bets
|
|
|
|
const contractIds = _.uniq(loadedBets.map((bet) => bet.contractId))
|
|
|
|
|
|
|
|
let disposed = false
|
|
|
|
Promise.all(contractIds.map((id) => getContract(id))).then((contracts) => {
|
|
|
|
if (!disposed) setContracts(contracts.filter(Boolean) as Contract[])
|
|
|
|
})
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
disposed = true
|
|
|
|
}
|
|
|
|
}, [bets])
|
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
if (bets === 'loading') {
|
|
|
|
return <></>
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bets.length === 0) return <div>You have not made any bets yet!</div>
|
|
|
|
|
2021-12-16 04:40:48 +00:00
|
|
|
// Decending creation time.
|
|
|
|
bets.sort((bet1, bet2) => bet2.createdTime - bet1.createdTime)
|
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
const contractBets = _.groupBy(bets, 'contractId')
|
|
|
|
|
2021-12-16 03:04:38 +00:00
|
|
|
const [resolved, unresolved] = _.partition(
|
|
|
|
contracts,
|
|
|
|
(contract) => contract.isResolved
|
|
|
|
)
|
|
|
|
const currentBets = _.sumBy(unresolved, (contract) =>
|
|
|
|
_.sumBy(contractBets[contract.id], (bet) => bet.amount)
|
|
|
|
)
|
|
|
|
|
|
|
|
const currentBetsValue = _.sumBy(unresolved, (contract) =>
|
|
|
|
_.sumBy(contractBets[contract.id], (bet) => currentValue(contract, bet))
|
|
|
|
)
|
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
return (
|
2021-12-15 18:41:18 +00:00
|
|
|
<Col className="mt-6 gap-10">
|
2021-12-16 03:04:38 +00:00
|
|
|
<Row className="px-4 gap-8">
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">Active bets</div>
|
|
|
|
<div>{formatMoney(currentBets)}</div>
|
|
|
|
</Col>
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">Current value</div>
|
|
|
|
<div>{formatMoney(currentBetsValue)}</div>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
{[...unresolved, ...resolved].map((contract) => (
|
2021-12-15 22:57:40 +00:00
|
|
|
<MyContractBets
|
2021-12-16 03:04:38 +00:00
|
|
|
key={contract.id}
|
|
|
|
contract={contract}
|
|
|
|
bets={contractBets[contract.id]}
|
2021-12-15 07:41:50 +00:00
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 03:04:38 +00:00
|
|
|
function MyContractBets(props: { contract: Contract; bets: Bet[] }) {
|
|
|
|
const { bets, contract } = props
|
2021-12-15 22:57:40 +00:00
|
|
|
const { resolution } = contract
|
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
return (
|
2021-12-16 05:10:31 +00:00
|
|
|
<div className="p-6 bg-white card card-body shadow-xl ">
|
2021-12-16 00:52:19 +00:00
|
|
|
<Link href={path(contract)}>
|
2021-12-15 18:41:18 +00:00
|
|
|
<a>
|
2021-12-16 05:10:31 +00:00
|
|
|
<div className="font-medium text-indigo-700 mb-1 hover:underline hover:decoration-indigo-400 hover:decoration-2">
|
2021-12-15 18:41:18 +00:00
|
|
|
{contract.question}
|
2021-12-15 22:57:40 +00:00
|
|
|
</div>
|
2021-12-16 05:10:31 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2021-12-16 05:10:31 +00:00
|
|
|
<Row className="gap-2 text-gray-500 text-sm">
|
|
|
|
<div>
|
|
|
|
<UserLink displayName={contract.creatorName} />
|
|
|
|
</div>
|
|
|
|
{resolution && (
|
|
|
|
<>
|
|
|
|
<div>•</div>
|
2021-12-16 02:04:36 +00:00
|
|
|
<div>
|
2021-12-16 05:10:31 +00:00
|
|
|
Resolved {resolution === 'YES' && <YesLabel />}
|
|
|
|
{resolution === 'NO' && <NoLabel />}
|
|
|
|
{resolution === 'CANCEL' && <CancelLabel />}
|
2021-12-16 02:04:36 +00:00
|
|
|
</div>
|
2021-12-16 05:10:31 +00:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Row>
|
2021-12-15 22:57:40 +00:00
|
|
|
|
|
|
|
<Spacer h={6} />
|
|
|
|
|
2021-12-16 04:30:24 +00:00
|
|
|
<MyBetsSummary contract={contract} bets={bets} />
|
2021-12-15 22:57:40 +00:00
|
|
|
|
|
|
|
<Spacer h={6} />
|
|
|
|
|
|
|
|
<ContractBetsTable contract={contract} bets={bets} />
|
2021-12-15 07:41:50 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 04:30:24 +00:00
|
|
|
export function MyBetsSummary(props: {
|
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
|
|
|
className?: string
|
|
|
|
}) {
|
|
|
|
const { bets, contract, className } = props
|
|
|
|
const { resolution } = contract
|
|
|
|
|
|
|
|
const betsTotal = _.sumBy(bets, (bet) => bet.amount)
|
|
|
|
|
|
|
|
const betsPayout = resolution
|
|
|
|
? _.sumBy(bets, (bet) => resolvedPayout(contract, bet))
|
|
|
|
: 0
|
|
|
|
|
|
|
|
const yesWinnings = _.sumBy(bets, (bet) =>
|
|
|
|
calculatePayout(contract, bet, 'YES')
|
|
|
|
)
|
|
|
|
const noWinnings = _.sumBy(bets, (bet) =>
|
|
|
|
calculatePayout(contract, bet, 'NO')
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Row className={clsx('gap-8', className)}>
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">Total bet</div>
|
|
|
|
<div>{formatMoney(betsTotal)}</div>
|
|
|
|
</Col>
|
|
|
|
{resolution ? (
|
|
|
|
<>
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">Winnings</div>
|
|
|
|
<div>{formatMoney(betsPayout)}</div>
|
|
|
|
</Col>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">
|
|
|
|
If <YesLabel />
|
|
|
|
</div>
|
|
|
|
<div>{formatMoney(yesWinnings)}</div>
|
|
|
|
</Col>
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">
|
|
|
|
If <NoLabel />
|
|
|
|
</div>
|
|
|
|
<div>{formatMoney(noWinnings)}</div>
|
|
|
|
</Col>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ContractBetsTable(props: { contract: Contract; bets: Bet[] }) {
|
2021-12-15 22:57:40 +00:00
|
|
|
const { contract, bets } = props
|
|
|
|
|
2021-12-16 02:27:09 +00:00
|
|
|
const { isResolved } = contract
|
|
|
|
|
2021-12-15 22:57:40 +00:00
|
|
|
return (
|
|
|
|
<div className="overflow-x-auto">
|
|
|
|
<table className="table table-zebra table-compact text-gray-500 w-full">
|
|
|
|
<thead>
|
|
|
|
<tr className="p-2">
|
2021-12-15 23:27:02 +00:00
|
|
|
<th>Date</th>
|
2021-12-15 22:57:40 +00:00
|
|
|
<th>Outcome</th>
|
|
|
|
<th>Bet</th>
|
|
|
|
<th>Probability</th>
|
2021-12-16 02:27:09 +00:00
|
|
|
{!isResolved && <th>Est. max payout</th>}
|
|
|
|
<th>{isResolved ? <>Payout</> : <>Current value</>}</th>
|
2021-12-15 22:57:40 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{bets.map((bet) => (
|
|
|
|
<BetRow key={bet.id} bet={bet} contract={contract} />
|
|
|
|
))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function BetRow(props: { bet: Bet; contract: Contract }) {
|
|
|
|
const { bet, contract } = props
|
2021-12-15 18:41:18 +00:00
|
|
|
const { amount, outcome, createdTime, probBefore, probAfter, dpmWeight } = bet
|
2021-12-16 02:27:09 +00:00
|
|
|
const { isResolved } = contract
|
2021-12-15 07:41:50 +00:00
|
|
|
|
|
|
|
return (
|
2021-12-15 18:41:18 +00:00
|
|
|
<tr>
|
2021-12-15 23:27:02 +00:00
|
|
|
<td>{dayjs(createdTime).format('MMM D, H:mma')}</td>
|
2021-12-15 18:41:18 +00:00
|
|
|
<td>{outcome}</td>
|
|
|
|
<td>{formatMoney(amount)}</td>
|
|
|
|
<td>
|
|
|
|
{formatPercent(probBefore)} → {formatPercent(probAfter)}
|
|
|
|
</td>
|
2021-12-16 02:27:09 +00:00
|
|
|
{!isResolved && <td>{formatMoney(amount + dpmWeight)}</td>}
|
|
|
|
<td>
|
|
|
|
{formatMoney(
|
|
|
|
isResolved
|
|
|
|
? resolvedPayout(contract, bet)
|
|
|
|
: currentValue(contract, bet)
|
|
|
|
)}
|
|
|
|
</td>
|
2021-12-15 18:41:18 +00:00
|
|
|
</tr>
|
2021-12-15 07:41:50 +00:00
|
|
|
)
|
|
|
|
}
|
2021-12-16 02:27:09 +00:00
|
|
|
|
|
|
|
function YesLabel() {
|
|
|
|
return <span className="text-primary">YES</span>
|
|
|
|
}
|
|
|
|
|
|
|
|
function NoLabel() {
|
|
|
|
return <span className="text-red-400">NO</span>
|
|
|
|
}
|
|
|
|
|
|
|
|
function CancelLabel() {
|
|
|
|
return <span className="text-yellow-400">CANCEL</span>
|
|
|
|
}
|