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'
|
2022-01-05 18:23:58 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
|
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'
|
2021-12-31 20:13:06 +00:00
|
|
|
import {
|
|
|
|
formatMoney,
|
|
|
|
formatPercent,
|
|
|
|
formatWithCommas,
|
2022-01-30 21:51:30 +00:00
|
|
|
} from '../../common/util/format'
|
2021-12-15 07:41:50 +00:00
|
|
|
import { Col } from './layout/col'
|
2021-12-15 18:41:18 +00:00
|
|
|
import { Spacer } from './layout/spacer'
|
2022-01-12 19:01:04 +00:00
|
|
|
import {
|
|
|
|
Contract,
|
|
|
|
getContractFromId,
|
|
|
|
contractPath,
|
2022-02-17 23:00:19 +00:00
|
|
|
getBinaryProbPercent,
|
2022-01-12 19:01:04 +00:00
|
|
|
} 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 {
|
2022-03-03 03:30:07 +00:00
|
|
|
calculateDpmPayout,
|
|
|
|
calculateDpmSaleAmount,
|
|
|
|
getDpmOutcomeProbability,
|
|
|
|
getDpmProbability,
|
|
|
|
getDpmProbabilityAfterSale,
|
|
|
|
resolvedDpmPayout,
|
2022-03-03 03:20:35 +00:00
|
|
|
} from '../../common/calculate-dpm'
|
2022-01-05 18:23:58 +00:00
|
|
|
import { sellBet } from '../lib/firebase/api-call'
|
2021-12-24 21:06:01 +00:00
|
|
|
import { ConfirmationButton } from './confirmation-button'
|
2022-02-14 02:20:46 +00:00
|
|
|
import { OutcomeLabel, YesLabel, NoLabel } from './outcome-label'
|
2022-02-17 23:00:19 +00:00
|
|
|
import { filterDefined } from '../../common/util/array'
|
2022-02-21 04:26:22 +00:00
|
|
|
import { LoadingIndicator } from './loading-indicator'
|
2022-02-22 22:55:06 +00:00
|
|
|
import { SiteLink } from './site-link'
|
2021-12-15 07:41:50 +00:00
|
|
|
|
2022-02-26 00:57:28 +00:00
|
|
|
type BetSort = 'newest' | 'profit' | 'settled' | 'value'
|
2022-02-09 05:28:20 +00:00
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
export function BetsList(props: { user: User }) {
|
|
|
|
const { user } = props
|
2022-02-04 00:13:04 +00:00
|
|
|
const bets = useUserBets(user.id)
|
2021-12-15 07:41:50 +00:00
|
|
|
|
2022-02-21 04:26:22 +00:00
|
|
|
const [contracts, setContracts] = useState<Contract[] | undefined>()
|
2021-12-16 03:04:38 +00:00
|
|
|
|
2022-02-17 22:44:23 +00:00
|
|
|
const [sort, setSort] = useState<BetSort>('value')
|
2022-02-09 05:28:20 +00:00
|
|
|
|
2021-12-16 03:04:38 +00:00
|
|
|
useEffect(() => {
|
2022-02-21 04:26:22 +00:00
|
|
|
if (bets) {
|
|
|
|
const contractIds = _.uniq(bets.map((bet) => bet.contractId))
|
2021-12-16 03:04:38 +00:00
|
|
|
|
2022-02-21 04:26:22 +00:00
|
|
|
let disposed = false
|
|
|
|
Promise.all(contractIds.map((id) => getContractFromId(id))).then(
|
|
|
|
(contracts) => {
|
|
|
|
if (!disposed) setContracts(filterDefined(contracts))
|
|
|
|
}
|
|
|
|
)
|
2021-12-16 03:04:38 +00:00
|
|
|
|
2022-02-21 04:26:22 +00:00
|
|
|
return () => {
|
|
|
|
disposed = true
|
|
|
|
}
|
2021-12-16 03:04:38 +00:00
|
|
|
}
|
|
|
|
}, [bets])
|
|
|
|
|
2022-02-21 04:26:22 +00:00
|
|
|
if (!bets || !contracts) {
|
|
|
|
return <LoadingIndicator />
|
2021-12-15 07:41:50 +00:00
|
|
|
}
|
|
|
|
|
2022-02-22 22:55:06 +00:00
|
|
|
if (bets.length === 0) return <NoBets />
|
2021-12-15 07:41:50 +00:00
|
|
|
|
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')
|
|
|
|
|
2022-02-09 05:28:20 +00:00
|
|
|
const contractsCurrentValue = _.mapValues(
|
|
|
|
contractBets,
|
|
|
|
(bets, contractId) => {
|
|
|
|
return _.sumBy(bets, (bet) => {
|
|
|
|
if (bet.isSold || bet.sale) return 0
|
2021-12-24 21:06:01 +00:00
|
|
|
|
2022-02-09 05:28:20 +00:00
|
|
|
const contract = contracts.find((c) => c.id === contractId)
|
2022-03-03 03:30:07 +00:00
|
|
|
const payout = contract ? calculateDpmPayout(contract, bet, 'MKT') : 0
|
2022-03-02 05:07:22 +00:00
|
|
|
return payout - (bet.loanAmount ?? 0)
|
2022-02-09 05:28:20 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
const contractsInvestment = _.mapValues(contractBets, (bets) => {
|
|
|
|
return _.sumBy(bets, (bet) => {
|
2021-12-24 21:06:01 +00:00
|
|
|
if (bet.isSold || bet.sale) return 0
|
|
|
|
return bet.amount
|
|
|
|
})
|
2022-02-09 05:28:20 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
let sortedContracts = contracts
|
|
|
|
if (sort === 'profit') {
|
|
|
|
sortedContracts = _.sortBy(
|
|
|
|
contracts,
|
|
|
|
(c) => -1 * (contractsCurrentValue[c.id] - contractsInvestment[c.id])
|
|
|
|
)
|
2022-02-17 22:44:23 +00:00
|
|
|
} else if (sort === 'value') {
|
|
|
|
sortedContracts = _.sortBy(contracts, (c) => -contractsCurrentValue[c.id])
|
2022-02-21 18:42:51 +00:00
|
|
|
} else if (sort === 'newest')
|
|
|
|
sortedContracts = _.sortBy(
|
|
|
|
contracts,
|
|
|
|
(c) => -1 * Math.max(...contractBets[c.id].map((bet) => bet.createdTime))
|
|
|
|
)
|
2022-02-26 00:57:28 +00:00
|
|
|
else if (sort === 'settled')
|
2022-02-21 18:42:51 +00:00
|
|
|
sortedContracts = _.sortBy(contracts, (c) => -1 * (c.resolutionTime ?? 0))
|
2022-02-09 05:28:20 +00:00
|
|
|
|
2022-02-26 00:57:28 +00:00
|
|
|
const [settled, unsettled] = _.partition(
|
2022-02-09 05:28:20 +00:00
|
|
|
sortedContracts,
|
2022-02-26 00:57:28 +00:00
|
|
|
(c) => c.isResolved || contractsInvestment[c.id] === 0
|
2021-12-16 03:04:38 +00:00
|
|
|
)
|
|
|
|
|
2022-02-26 00:57:28 +00:00
|
|
|
const displayedContracts = sort === 'settled' ? settled : unsettled
|
2022-02-16 06:08:16 +00:00
|
|
|
|
2022-02-26 00:57:28 +00:00
|
|
|
const currentInvestment = _.sumBy(unsettled, (c) => contractsInvestment[c.id])
|
2022-02-09 05:28:20 +00:00
|
|
|
|
|
|
|
const currentBetsValue = _.sumBy(
|
2022-02-26 00:57:28 +00:00
|
|
|
unsettled,
|
2022-02-09 05:28:20 +00:00
|
|
|
(c) => contractsCurrentValue[c.id]
|
2021-12-16 03:04:38 +00:00
|
|
|
)
|
|
|
|
|
2022-02-14 19:00:20 +00:00
|
|
|
const totalPortfolio = currentBetsValue + user.balance
|
|
|
|
|
2022-02-14 23:29:29 +00:00
|
|
|
const totalPnl = totalPortfolio - user.totalDeposits
|
|
|
|
const totalProfit = (totalPnl / user.totalDeposits) * 100
|
|
|
|
const investedProfit =
|
|
|
|
((currentBetsValue - currentInvestment) / currentInvestment) * 100
|
2022-02-14 22:00:35 +00:00
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
return (
|
2022-02-14 23:39:59 +00:00
|
|
|
<Col className="mt-6 gap-4 sm:gap-6">
|
2022-02-11 18:40:22 +00:00
|
|
|
<Col className="mx-4 gap-4 sm:flex-row sm:justify-between md:mx-0">
|
2022-02-09 05:28:20 +00:00
|
|
|
<Row className="gap-8">
|
2022-02-14 19:00:20 +00:00
|
|
|
<Col>
|
2022-02-14 23:29:29 +00:00
|
|
|
<div className="text-sm text-gray-500">Invested</div>
|
|
|
|
<div className="text-lg">
|
2022-03-02 05:07:22 +00:00
|
|
|
{formatMoney(currentInvestment)}{' '}
|
2022-02-14 23:29:29 +00:00
|
|
|
<ProfitBadge profitPercent={investedProfit} />
|
2022-02-14 19:00:20 +00:00
|
|
|
</div>
|
|
|
|
</Col>
|
2022-02-09 05:28:20 +00:00
|
|
|
<Col>
|
2022-02-14 23:29:29 +00:00
|
|
|
<div className="text-sm text-gray-500">Total portfolio</div>
|
|
|
|
<div className="text-lg">
|
|
|
|
{formatMoney(totalPortfolio)}{' '}
|
|
|
|
<ProfitBadge profitPercent={totalProfit} />
|
|
|
|
</div>
|
2022-02-09 05:28:20 +00:00
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
<select
|
|
|
|
className="select select-bordered self-start"
|
|
|
|
value={sort}
|
|
|
|
onChange={(e) => setSort(e.target.value as BetSort)}
|
|
|
|
>
|
2022-02-17 22:44:23 +00:00
|
|
|
<option value="value">By value</option>
|
2022-02-09 05:28:20 +00:00
|
|
|
<option value="profit">By profit</option>
|
2022-02-28 00:52:58 +00:00
|
|
|
<option value="newest">Most recent</option>
|
|
|
|
<option value="settled">Resolved</option>
|
2022-02-09 05:28:20 +00:00
|
|
|
</select>
|
|
|
|
</Col>
|
2021-12-16 03:04:38 +00:00
|
|
|
|
2022-02-22 22:55:06 +00:00
|
|
|
{displayedContracts.length === 0 ? (
|
|
|
|
<NoBets />
|
|
|
|
) : (
|
|
|
|
displayedContracts.map((contract) => (
|
|
|
|
<MyContractBets
|
|
|
|
key={contract.id}
|
|
|
|
contract={contract}
|
|
|
|
bets={contractBets[contract.id] ?? []}
|
|
|
|
/>
|
|
|
|
))
|
|
|
|
)}
|
2021-12-15 07:41:50 +00:00
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-02-22 22:55:06 +00:00
|
|
|
const NoBets = () => {
|
|
|
|
return (
|
|
|
|
<div className="mx-4 text-gray-500">
|
|
|
|
You have not made any bets yet.{' '}
|
|
|
|
<SiteLink href="/" className="underline">
|
|
|
|
Find a prediction market!
|
|
|
|
</SiteLink>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 03:04:38 +00:00
|
|
|
function MyContractBets(props: { contract: Contract; bets: Bet[] }) {
|
|
|
|
const { bets, contract } = props
|
2022-02-17 23:00:19 +00:00
|
|
|
const { resolution, outcomeType } = contract
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2021-12-16 21:22:00 +00:00
|
|
|
const [collapsed, setCollapsed] = useState(true)
|
2022-02-17 23:00:19 +00:00
|
|
|
|
|
|
|
const isBinary = outcomeType === 'BINARY'
|
|
|
|
const probPercent = getBinaryProbPercent(contract)
|
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
return (
|
2021-12-16 21:22:00 +00:00
|
|
|
<div
|
|
|
|
tabIndex={0}
|
|
|
|
className={clsx(
|
2022-02-11 18:40:22 +00:00
|
|
|
'card card-body collapse collapse-arrow relative cursor-pointer bg-white p-6 shadow-xl',
|
2021-12-17 04:27:22 +00:00
|
|
|
collapsed ? 'collapse-close' : 'collapse-open pb-2'
|
2021-12-16 21:22:00 +00:00
|
|
|
)}
|
|
|
|
onClick={() => setCollapsed((collapsed) => !collapsed)}
|
|
|
|
>
|
2022-02-14 23:39:59 +00:00
|
|
|
<Row className="flex-wrap gap-2">
|
2021-12-16 21:22:00 +00:00
|
|
|
<Col className="flex-[2] gap-1">
|
2022-02-14 23:39:59 +00:00
|
|
|
<Row className="mr-2 max-w-lg">
|
2022-01-12 19:01:04 +00:00
|
|
|
<Link href={contractPath(contract)}>
|
2021-12-16 21:28:56 +00:00
|
|
|
<a
|
|
|
|
className="font-medium text-indigo-700 hover:underline hover:decoration-indigo-400 hover:decoration-2"
|
|
|
|
onClick={(e) => e.stopPropagation()}
|
|
|
|
>
|
2021-12-16 09:03:41 +00:00
|
|
|
{contract.question}
|
2021-12-16 21:22:00 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
2021-12-18 23:40:39 +00:00
|
|
|
|
|
|
|
{/* Show carrot for collapsing. Hack the positioning. */}
|
|
|
|
<div
|
2022-02-11 18:40:22 +00:00
|
|
|
className="collapse-title absolute h-0 min-h-0 w-0 p-0"
|
2021-12-19 00:11:40 +00:00
|
|
|
style={{ top: -10, right: 4 }}
|
2021-12-18 23:40:39 +00:00
|
|
|
/>
|
|
|
|
</Row>
|
2021-12-16 09:03:41 +00:00
|
|
|
|
2022-02-26 00:57:28 +00:00
|
|
|
<Row className="flex-1 items-center gap-2 text-sm text-gray-500">
|
2022-02-17 23:00:19 +00:00
|
|
|
{isBinary && (
|
|
|
|
<>
|
|
|
|
{resolution ? (
|
|
|
|
<div>
|
|
|
|
Resolved <OutcomeLabel outcome={resolution} />
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="text-primary text-lg">{probPercent}</div>
|
|
|
|
)}
|
|
|
|
<div>•</div>
|
|
|
|
</>
|
2022-02-09 04:52:09 +00:00
|
|
|
)}
|
2022-01-13 21:16:47 +00:00
|
|
|
<UserLink
|
|
|
|
name={contract.creatorName}
|
|
|
|
username={contract.creatorUsername}
|
|
|
|
/>
|
2021-12-16 09:03:41 +00:00
|
|
|
</Row>
|
|
|
|
</Col>
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2021-12-18 23:40:39 +00:00
|
|
|
<MyBetsSummary
|
2022-02-14 23:39:59 +00:00
|
|
|
className="mr-5 justify-end sm:mr-8"
|
2021-12-18 23:40:39 +00:00
|
|
|
contract={contract}
|
|
|
|
bets={bets}
|
2022-02-14 22:00:35 +00:00
|
|
|
onlyMKT
|
2021-12-18 23:40:39 +00:00
|
|
|
/>
|
2021-12-16 09:03:41 +00:00
|
|
|
</Row>
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2021-12-19 05:27:52 +00:00
|
|
|
<div
|
|
|
|
className="collapse-content !px-0"
|
|
|
|
style={{ backgroundColor: 'white' }}
|
|
|
|
>
|
2021-12-16 21:22:00 +00:00
|
|
|
<Spacer h={8} />
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2022-02-14 22:00:35 +00:00
|
|
|
<MyBetsSummary
|
|
|
|
className="mr-5 flex-1 sm:mr-8"
|
|
|
|
contract={contract}
|
|
|
|
bets={bets}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Spacer h={8} />
|
|
|
|
|
2021-12-16 21:22:00 +00:00
|
|
|
<ContractBetsTable contract={contract} bets={bets} />
|
|
|
|
</div>
|
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[]
|
2022-02-14 22:00:35 +00:00
|
|
|
onlyMKT?: boolean
|
2021-12-16 04:30:24 +00:00
|
|
|
className?: string
|
|
|
|
}) {
|
2022-02-14 22:00:35 +00:00
|
|
|
const { bets, contract, onlyMKT, className } = props
|
2022-02-17 23:00:19 +00:00
|
|
|
const { resolution, outcomeType } = contract
|
|
|
|
const isBinary = outcomeType === 'BINARY'
|
2021-12-16 04:30:24 +00:00
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
const excludeSales = bets.filter((b) => !b.isSold && !b.sale)
|
|
|
|
const betsTotal = _.sumBy(excludeSales, (bet) => bet.amount)
|
2021-12-16 04:30:24 +00:00
|
|
|
|
|
|
|
const betsPayout = resolution
|
2022-03-03 03:30:07 +00:00
|
|
|
? _.sumBy(excludeSales, (bet) => resolvedDpmPayout(contract, bet))
|
2021-12-16 04:30:24 +00:00
|
|
|
: 0
|
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
const yesWinnings = _.sumBy(excludeSales, (bet) =>
|
2022-03-03 03:30:07 +00:00
|
|
|
calculateDpmPayout(contract, bet, 'YES')
|
2021-12-16 04:30:24 +00:00
|
|
|
)
|
2021-12-24 21:06:01 +00:00
|
|
|
const noWinnings = _.sumBy(excludeSales, (bet) =>
|
2022-03-03 03:30:07 +00:00
|
|
|
calculateDpmPayout(contract, bet, 'NO')
|
2021-12-16 04:30:24 +00:00
|
|
|
)
|
|
|
|
|
2022-02-17 22:49:00 +00:00
|
|
|
// const p = getProbability(contract.totalShares)
|
|
|
|
// const expectation = p * yesWinnings + (1 - p) * noWinnings
|
2022-02-17 22:44:23 +00:00
|
|
|
|
2022-01-04 05:44:54 +00:00
|
|
|
const marketWinnings = _.sumBy(excludeSales, (bet) =>
|
2022-03-03 03:30:07 +00:00
|
|
|
calculateDpmPayout(contract, bet, 'MKT')
|
2022-01-04 05:44:54 +00:00
|
|
|
)
|
|
|
|
|
2022-02-14 22:00:35 +00:00
|
|
|
const currentValue = resolution ? betsPayout : marketWinnings
|
|
|
|
const pnl = currentValue - betsTotal
|
2022-02-14 23:29:29 +00:00
|
|
|
const profit = (pnl / betsTotal) * 100
|
2022-02-14 22:00:35 +00:00
|
|
|
|
2022-02-14 23:29:29 +00:00
|
|
|
const valueCol = (
|
2022-02-14 22:00:35 +00:00
|
|
|
<Col>
|
2022-02-14 23:29:29 +00:00
|
|
|
<div className="whitespace-nowrap text-right text-lg">
|
|
|
|
{formatMoney(currentValue)}
|
2022-02-14 22:00:35 +00:00
|
|
|
</div>
|
2022-02-14 23:29:29 +00:00
|
|
|
<div className="text-right">
|
|
|
|
<ProfitBadge profitPercent={profit} />
|
2022-02-14 22:00:35 +00:00
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
|
|
|
|
const payoutCol = (
|
|
|
|
<Col>
|
|
|
|
<div className="text-sm text-gray-500">Payout</div>
|
|
|
|
<div className="whitespace-nowrap">
|
2022-02-14 23:29:29 +00:00
|
|
|
{formatMoney(betsPayout)} <ProfitBadge profitPercent={profit} />
|
2022-02-14 22:00:35 +00:00
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
|
2021-12-16 04:30:24 +00:00
|
|
|
return (
|
2022-01-04 05:44:54 +00:00
|
|
|
<Row
|
|
|
|
className={clsx(
|
|
|
|
'gap-4 sm:gap-6',
|
2022-02-14 22:00:35 +00:00
|
|
|
!onlyMKT && 'flex-wrap sm:flex-nowrap',
|
2022-01-04 05:44:54 +00:00
|
|
|
className
|
|
|
|
)}
|
|
|
|
>
|
2022-02-14 22:00:35 +00:00
|
|
|
{onlyMKT ? (
|
2022-02-14 23:29:29 +00:00
|
|
|
<Row className="gap-4 sm:gap-6">{valueCol}</Row>
|
2021-12-16 04:30:24 +00:00
|
|
|
) : (
|
2022-01-04 05:44:54 +00:00
|
|
|
<Row className="gap-4 sm:gap-6">
|
2021-12-16 04:30:24 +00:00
|
|
|
<Col>
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
2022-02-14 22:00:35 +00:00
|
|
|
Invested
|
2021-12-16 04:30:24 +00:00
|
|
|
</div>
|
2022-02-14 22:00:35 +00:00
|
|
|
<div className="whitespace-nowrap">{formatMoney(betsTotal)}</div>
|
2021-12-16 04:30:24 +00:00
|
|
|
</Col>
|
2022-02-14 22:00:35 +00:00
|
|
|
{resolution ? (
|
|
|
|
payoutCol
|
|
|
|
) : (
|
|
|
|
<>
|
2022-02-17 22:49:00 +00:00
|
|
|
{/* <Col>
|
2022-02-17 22:44:23 +00:00
|
|
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
|
|
|
Expectation
|
|
|
|
</div>
|
|
|
|
<div className="whitespace-nowrap">
|
|
|
|
{formatMoney(expectation)}
|
|
|
|
</div>
|
2022-02-17 22:49:00 +00:00
|
|
|
</Col> */}
|
2022-02-28 23:58:13 +00:00
|
|
|
{isBinary && (
|
|
|
|
<>
|
|
|
|
<Col>
|
|
|
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
|
|
|
Payout if <YesLabel />
|
|
|
|
</div>
|
|
|
|
<div className="whitespace-nowrap">
|
|
|
|
{formatMoney(yesWinnings)}
|
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
<Col>
|
|
|
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
|
|
|
Payout if <NoLabel />
|
|
|
|
</div>
|
|
|
|
<div className="whitespace-nowrap">
|
|
|
|
{formatMoney(noWinnings)}
|
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
</>
|
|
|
|
)}
|
2022-02-14 22:00:35 +00:00
|
|
|
<Col>
|
|
|
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
2022-02-17 23:00:19 +00:00
|
|
|
{isBinary ? (
|
|
|
|
<>
|
|
|
|
Payout at{' '}
|
|
|
|
<span className="text-blue-400">
|
2022-03-03 03:30:07 +00:00
|
|
|
{formatPercent(getDpmProbability(contract.totalShares))}
|
2022-02-17 23:00:19 +00:00
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>Current payout</>
|
|
|
|
)}
|
2022-02-14 22:00:35 +00:00
|
|
|
</div>
|
|
|
|
<div className="whitespace-nowrap">
|
|
|
|
{formatMoney(marketWinnings)}
|
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
</>
|
2022-01-04 05:44:54 +00:00
|
|
|
)}
|
|
|
|
</Row>
|
2021-12-16 04:30:24 +00:00
|
|
|
)}
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 21:22:00 +00:00
|
|
|
export function ContractBetsTable(props: {
|
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
|
|
|
className?: string
|
|
|
|
}) {
|
|
|
|
const { contract, bets, className } = props
|
2021-12-15 22:57:40 +00:00
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
const [sales, buys] = _.partition(bets, (bet) => bet.sale)
|
|
|
|
const salesDict = _.fromPairs(
|
|
|
|
sales.map((sale) => [sale.sale?.betId ?? '', sale])
|
|
|
|
)
|
|
|
|
|
2021-12-16 02:27:09 +00:00
|
|
|
const { isResolved } = contract
|
2021-12-15 22:57:40 +00:00
|
|
|
return (
|
2021-12-16 21:22:00 +00:00
|
|
|
<div className={clsx('overflow-x-auto', className)}>
|
2022-02-11 18:40:22 +00:00
|
|
|
<table className="table-zebra table-compact table w-full text-gray-500">
|
2021-12-15 22:57:40 +00:00
|
|
|
<thead>
|
|
|
|
<tr className="p-2">
|
2022-02-21 20:22:36 +00:00
|
|
|
<th></th>
|
2021-12-15 22:57:40 +00:00
|
|
|
<th>Outcome</th>
|
2021-12-24 21:06:01 +00:00
|
|
|
<th>Amount</th>
|
2022-03-01 00:38:09 +00:00
|
|
|
<th>{isResolved ? <>Payout</> : <>Sale price</>}</th>
|
2022-03-01 00:44:25 +00:00
|
|
|
{!isResolved && <th>Payout if chosen</th>}
|
2021-12-15 22:57:40 +00:00
|
|
|
<th>Probability</th>
|
2021-12-31 20:13:06 +00:00
|
|
|
<th>Shares</th>
|
2022-02-21 20:22:36 +00:00
|
|
|
<th>Date</th>
|
2021-12-15 22:57:40 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-12-24 21:06:01 +00:00
|
|
|
{buys.map((bet) => (
|
|
|
|
<BetRow
|
|
|
|
key={bet.id}
|
|
|
|
bet={bet}
|
2022-01-15 22:51:09 +00:00
|
|
|
saleBet={salesDict[bet.id]}
|
2021-12-24 21:06:01 +00:00
|
|
|
contract={contract}
|
|
|
|
/>
|
2021-12-15 22:57:40 +00:00
|
|
|
))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-15 22:51:09 +00:00
|
|
|
function BetRow(props: { bet: Bet; contract: Contract; saleBet?: Bet }) {
|
|
|
|
const { bet, saleBet, contract } = props
|
2021-12-24 21:06:01 +00:00
|
|
|
const {
|
|
|
|
amount,
|
|
|
|
outcome,
|
|
|
|
createdTime,
|
|
|
|
probBefore,
|
|
|
|
probAfter,
|
|
|
|
shares,
|
|
|
|
isSold,
|
2022-01-19 22:36:55 +00:00
|
|
|
isAnte,
|
2022-03-02 03:31:48 +00:00
|
|
|
loanAmount,
|
2021-12-24 21:06:01 +00:00
|
|
|
} = bet
|
2022-01-19 22:36:55 +00:00
|
|
|
|
2022-01-10 16:32:20 +00:00
|
|
|
const { isResolved, closeTime } = contract
|
|
|
|
const isClosed = closeTime && Date.now() > closeTime
|
2021-12-15 07:41:50 +00:00
|
|
|
|
2022-01-19 22:36:55 +00:00
|
|
|
const saleAmount = saleBet?.sale?.amount
|
|
|
|
|
2022-03-02 03:31:48 +00:00
|
|
|
const saleDisplay = isAnte ? (
|
2022-01-19 22:36:55 +00:00
|
|
|
'ANTE'
|
|
|
|
) : saleAmount !== undefined ? (
|
|
|
|
<>{formatMoney(saleAmount)} (sold)</>
|
|
|
|
) : (
|
|
|
|
formatMoney(
|
|
|
|
isResolved
|
2022-03-03 03:30:07 +00:00
|
|
|
? resolvedDpmPayout(contract, bet)
|
|
|
|
: calculateDpmSaleAmount(contract, bet)
|
2022-01-19 22:36:55 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2022-03-01 00:44:25 +00:00
|
|
|
const payoutIfChosenDisplay =
|
|
|
|
bet.outcome === '0' && bet.isAnte
|
|
|
|
? 'N/A'
|
2022-03-03 03:30:07 +00:00
|
|
|
: formatMoney(calculateDpmPayout(contract, bet, bet.outcome))
|
2022-03-01 00:38:09 +00:00
|
|
|
|
2021-12-15 07:41:50 +00:00
|
|
|
return (
|
2021-12-15 18:41:18 +00:00
|
|
|
<tr>
|
2022-02-21 20:22:36 +00:00
|
|
|
<td className="text-neutral">
|
|
|
|
{!isResolved && !isClosed && !isSold && !isAnte && (
|
|
|
|
<SellButton contract={contract} bet={bet} />
|
|
|
|
)}
|
|
|
|
</td>
|
2021-12-16 21:22:00 +00:00
|
|
|
<td>
|
|
|
|
<OutcomeLabel outcome={outcome} />
|
|
|
|
</td>
|
2022-03-02 03:31:48 +00:00
|
|
|
<td>
|
|
|
|
{formatMoney(amount)}
|
|
|
|
{loanAmount ? ` (${formatMoney(loanAmount ?? 0)} loan)` : ''}
|
|
|
|
</td>
|
2022-03-01 00:38:09 +00:00
|
|
|
<td>{saleDisplay}</td>
|
2022-03-01 00:44:25 +00:00
|
|
|
{!isResolved && <td>{payoutIfChosenDisplay}</td>}
|
2021-12-15 18:41:18 +00:00
|
|
|
<td>
|
|
|
|
{formatPercent(probBefore)} → {formatPercent(probAfter)}
|
|
|
|
</td>
|
2021-12-31 20:13:06 +00:00
|
|
|
<td>{formatWithCommas(shares)}</td>
|
2022-02-21 20:22:36 +00:00
|
|
|
<td>{dayjs(createdTime).format('MMM D, h:mma')}</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
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
function SellButton(props: { contract: Contract; bet: Bet }) {
|
2022-01-05 18:23:58 +00:00
|
|
|
useEffect(() => {
|
|
|
|
// warm up cloud function
|
|
|
|
sellBet({}).catch()
|
|
|
|
}, [])
|
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
const { contract, bet } = props
|
2022-03-02 03:31:48 +00:00
|
|
|
const { outcome, shares, loanAmount } = bet
|
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
|
|
|
2022-03-03 03:30:07 +00:00
|
|
|
const initialProb = getDpmOutcomeProbability(
|
2022-02-18 00:24:00 +00:00
|
|
|
contract.totalShares,
|
2022-03-02 03:31:48 +00:00
|
|
|
outcome === 'NO' ? 'YES' : outcome
|
2022-02-18 00:24:00 +00:00
|
|
|
)
|
|
|
|
|
2022-03-03 03:30:07 +00:00
|
|
|
const outcomeProb = getDpmProbabilityAfterSale(
|
2022-02-18 00:24:00 +00:00
|
|
|
contract.totalShares,
|
2022-03-02 03:31:48 +00:00
|
|
|
outcome,
|
|
|
|
shares
|
2022-02-18 00:24:00 +00:00
|
|
|
)
|
|
|
|
|
2022-03-03 03:30:07 +00:00
|
|
|
const saleAmount = calculateDpmSaleAmount(contract, bet)
|
2022-02-18 00:24:00 +00:00
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
return (
|
|
|
|
<ConfirmationButton
|
|
|
|
id={`sell-${bet.id}`}
|
|
|
|
openModelBtn={{
|
|
|
|
className: clsx('btn-sm', isSubmitting && 'btn-disabled loading'),
|
|
|
|
label: 'Sell',
|
|
|
|
}}
|
2022-03-02 03:31:48 +00:00
|
|
|
submitBtn={{ className: 'btn-primary', label: 'Sell' }}
|
2021-12-24 21:06:01 +00:00
|
|
|
onSubmit={async () => {
|
|
|
|
setIsSubmitting(true)
|
|
|
|
await sellBet({ contractId: contract.id, betId: bet.id })
|
|
|
|
setIsSubmitting(false)
|
|
|
|
}}
|
|
|
|
>
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className="mb-4 text-2xl">
|
2022-03-02 03:31:48 +00:00
|
|
|
Sell {formatWithCommas(shares)} shares of{' '}
|
|
|
|
<OutcomeLabel outcome={outcome} /> for {formatMoney(saleAmount)}?
|
2022-02-18 00:24:00 +00:00
|
|
|
</div>
|
2022-03-02 03:31:48 +00:00
|
|
|
{!!loanAmount && (
|
|
|
|
<div className="mt-2">
|
|
|
|
You will also pay back {formatMoney(loanAmount)} of your loan, for a
|
|
|
|
net of {formatMoney(saleAmount - loanAmount)}.
|
|
|
|
</div>
|
|
|
|
)}
|
2022-02-18 00:24:00 +00:00
|
|
|
|
2022-03-02 03:31:48 +00:00
|
|
|
<div className="mt-2 mb-1 text-sm">
|
|
|
|
Market probability: {formatPercent(initialProb)} →{' '}
|
|
|
|
{formatPercent(outcomeProb)}
|
2021-12-24 21:06:01 +00:00
|
|
|
</div>
|
|
|
|
</ConfirmationButton>
|
|
|
|
)
|
|
|
|
}
|
2022-02-14 23:29:29 +00:00
|
|
|
|
|
|
|
function ProfitBadge(props: { profitPercent: number }) {
|
|
|
|
const { profitPercent } = props
|
|
|
|
if (!profitPercent) return null
|
|
|
|
const colors =
|
|
|
|
profitPercent > 0
|
|
|
|
? 'bg-green-100 text-green-800'
|
|
|
|
: 'bg-red-100 text-red-800'
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span
|
|
|
|
className={clsx(
|
|
|
|
'ml-1 inline-flex items-center rounded-full px-3 py-0.5 text-sm font-medium',
|
|
|
|
colors
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{(profitPercent > 0 ? '+' : '') + profitPercent.toFixed(1) + '%'}
|
|
|
|
</span>
|
|
|
|
)
|
|
|
|
}
|