manifold/web/components/bets-list.tsx

544 lines
15 KiB
TypeScript
Raw Normal View History

2021-12-15 07:41:50 +00:00
import Link from 'next/link'
import _ from 'lodash'
import dayjs from 'dayjs'
import { useEffect, useState } from 'react'
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,
} 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'
import {
Contract,
getContractFromId,
contractPath,
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
getBinaryProbPercent,
} from '../lib/firebase/contracts'
import { Row } from './layout/row'
2021-12-16 02:11:29 +00:00
import { UserLink } from './user-page'
import {
calculatePayout,
calculateSaleAmount,
getProbability,
resolvedPayout,
} from '../../common/calculate'
import { sellBet } from '../lib/firebase/api-call'
import { ConfirmationButton } from './confirmation-button'
import { OutcomeLabel, YesLabel, NoLabel } from './outcome-label'
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
import { filterDefined } from '../../common/util/array'
2021-12-15 07:41:50 +00:00
2022-02-17 22:44:23 +00:00
type BetSort = 'newest' | 'profit' | 'resolved' | 'value'
2021-12-15 07:41:50 +00:00
export function BetsList(props: { user: User }) {
const { user } = props
const bets = useUserBets(user.id)
2021-12-15 07:41:50 +00:00
const [contracts, setContracts] = useState<Contract[]>([])
2022-02-17 22:44:23 +00:00
const [sort, setSort] = useState<BetSort>('value')
useEffect(() => {
const loadedBets = bets ? bets : []
const contractIds = _.uniq(loadedBets.map((bet) => bet.contractId))
let disposed = false
2021-12-17 23:16:42 +00:00
Promise.all(contractIds.map((id) => getContractFromId(id))).then(
(contracts) => {
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
if (!disposed) setContracts(filterDefined(contracts))
2021-12-17 23:16:42 +00:00
}
)
return () => {
disposed = true
}
}, [bets])
if (!bets) {
2021-12-15 07:41:50 +00:00
return <></>
}
2021-12-17 23:07:08 +00:00
if (bets.length === 0)
return (
<div>
You have not made any bets yet.{' '}
<Link href="/">
<a className="text-green-500 hover:underline hover:decoration-2">
Find a prediction market!
</a>
</Link>
</div>
)
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')
const contractsCurrentValue = _.mapValues(
contractBets,
(bets, contractId) => {
return _.sumBy(bets, (bet) => {
if (bet.isSold || bet.sale) return 0
const contract = contracts.find((c) => c.id === contractId)
return contract ? calculatePayout(contract, bet, 'MKT') : 0
})
}
)
const contractsInvestment = _.mapValues(contractBets, (bets) => {
return _.sumBy(bets, (bet) => {
if (bet.isSold || bet.sale) return 0
return bet.amount
})
})
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])
}
const [resolved, unresolved] = _.partition(
sortedContracts,
(c) => c.isResolved
)
2022-02-16 06:08:16 +00:00
const displayedContracts = sort === 'resolved' ? resolved : unresolved
const currentInvestment = _.sumBy(
unresolved,
(c) => contractsInvestment[c.id]
)
const currentBetsValue = _.sumBy(
unresolved,
(c) => contractsCurrentValue[c.id]
)
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">
<Col className="mx-4 gap-4 sm:flex-row sm:justify-between md:mx-0">
<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">
{formatMoney(currentBetsValue)}{' '}
<ProfitBadge profitPercent={investedProfit} />
2022-02-14 19:00:20 +00:00
</div>
</Col>
<Col>
2022-02-14 23:29:29 +00:00
<div className="text-sm text-gray-500">Balance</div>
<div className="whitespace-nowrap text-lg">
2022-02-17 03:19:11 +00:00
{formatMoney(Math.floor(user.balance))}{' '}
2022-02-14 23:29:29 +00:00
</div>
</Col>
<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>
</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>
<option value="profit">By profit</option>
<option value="newest">Newest</option>
2022-02-16 06:08:16 +00:00
<option value="resolved">Resolved</option>
</select>
</Col>
2022-02-16 06:08:16 +00:00
{displayedContracts.map((contract) => (
<MyContractBets
key={contract.id}
contract={contract}
2021-12-16 21:28:56 +00:00
bets={contractBets[contract.id] ?? []}
2021-12-15 07:41:50 +00:00
/>
))}
</Col>
)
}
function MyContractBets(props: { contract: Contract; bets: Bet[] }) {
const { bets, contract } = props
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
const { resolution, outcomeType } = contract
const [collapsed, setCollapsed] = useState(true)
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
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 (
<div
tabIndex={0}
className={clsx(
'card card-body collapse collapse-arrow relative cursor-pointer bg-white p-6 shadow-xl',
collapsed ? 'collapse-close' : 'collapse-open pb-2'
)}
onClick={() => setCollapsed((collapsed) => !collapsed)}
>
2022-02-14 23:39:59 +00:00
<Row className="flex-wrap gap-2">
<Col className="flex-[2] gap-1">
2022-02-14 23:39:59 +00:00
<Row className="mr-2 max-w-lg">
<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()}
>
{contract.question}
</a>
</Link>
2021-12-18 23:40:39 +00:00
{/* Show carrot for collapsing. Hack the positioning. */}
<div
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>
<Row className="items-center gap-2 text-sm text-gray-500">
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
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
)}
<UserLink
name={contract.creatorName}
username={contract.creatorUsername}
/>
</Row>
</Col>
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
/>
</Row>
<div
className="collapse-content !px-0"
style={{ backgroundColor: 'white' }}
>
<Spacer h={8} />
2022-02-14 22:00:35 +00:00
<MyBetsSummary
className="mr-5 flex-1 sm:mr-8"
contract={contract}
bets={bets}
/>
<Spacer h={8} />
<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
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
const { resolution, outcomeType } = contract
const isBinary = outcomeType === 'BINARY'
2021-12-16 04:30:24 +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
? _.sumBy(excludeSales, (bet) => resolvedPayout(contract, bet))
2021-12-16 04:30:24 +00:00
: 0
const yesWinnings = _.sumBy(excludeSales, (bet) =>
2021-12-16 04:30:24 +00:00
calculatePayout(contract, bet, 'YES')
)
const noWinnings = _.sumBy(excludeSales, (bet) =>
2021-12-16 04:30:24 +00:00
calculatePayout(contract, bet, 'NO')
)
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
const marketWinnings = _.sumBy(excludeSales, (bet) =>
calculatePayout(contract, bet, 'MKT')
)
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 (
<Row
className={clsx(
'gap-4 sm:gap-6',
2022-02-14 22:00:35 +00:00
!onlyMKT && 'flex-wrap sm:flex-nowrap',
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
) : (
<Row className="gap-4 sm:gap-6">
2021-12-16 04:30:24 +00:00
<Col>
<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-14 22:00:35 +00:00
<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>
<Col>
<div className="whitespace-nowrap text-sm text-gray-500">
Free response (#47) * Answer datatype and MULTI outcome type for Contract * Create free answer contract * Automatically sort Tailwind classes with Prettier (#45) * Add Prettier Tailwind plugin * Autoformat Tailwind classes with Prettier * Allow for non-binary contracts in contract page and related components * logo with white inside, transparent bg * Create answer * Some UI for showing answers * Answer bet panel * Convert rest of calcuate file to generic multi contracts * Working betting with ante'd NONE answer * Numbered answers. Layout & calculation tweaks * Can bet. More layout tweaks! * Resolve answer UI * Resolve multi market * Resolved market UI * Fix feed and cards for multi contracts * Sell bets. Various fixes * Tweaks for trades page * Always dev mode * Create answer bet has isAnte: true * Fix card showing 0% for multi contracts * Fix grouped bets feed for multi outcomes * None option converted to none of the above label at bottom of list. Button to resolve none. * Tweaks to no answers yet, resolve button layout * Show ante bets on new answers in the feed * Update placeholder text for description * Consolidate firestore rules for subcollections * Remove Contract and Bet type params. Use string type for outcomes. * Increase char limit to 10k for answers. Preserve line breaks. * Don't show resolve options after answer chosen * Fix type error in script * Remove NONE resolution option * Change outcomeType to include 'MULTI' and 'FREE_RESPONSE' * Show bet probability change and payout when creating answer * User info change: also change answers * Append answers to contract field 'answers' * sort trades by resolved * Don't include trailing !:,.; in links * Stop flooring inputs into formatMoney * Revert "Stop flooring inputs into formatMoney" This reverts commit 2f7ab1842916bc903e60231cbf45b934db2f2658. * Consistently floor user.balance * Expand create panel on focus From Richard Hanania's feedback * welcome email: include link to manifold * Fix home page in dev on branches that are not free-response * Close emails (#50) * script init for stephen dev * market close emails * order of operations * template email * sendMarketCloseEmail: handle unsubscribe * remove debugging * marketCloseEmails: every hour * sendMarketCloseEmails: check undefined * marketCloseEmails: "every hour" => "every 1 hours" * Set up a read API using Vercel serverless functions (#49) * Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API * Tweaks. Remove filter for only binary contract * Fix bet probability change for NO bets * Put back isProd calculation Co-authored-by: Austin Chen <akrolsmir@gmail.com> Co-authored-by: mantikoros <sgrugett@gmail.com> Co-authored-by: mantikoros <95266179+mantikoros@users.noreply.github.com>
2022-02-17 23:00:19 +00:00
{isBinary ? (
<>
Payout at{' '}
<span className="text-blue-400">
{formatPercent(getProbability(contract.totalShares))}
</span>
</>
) : (
<>Current payout</>
)}
2022-02-14 22:00:35 +00:00
</div>
<div className="whitespace-nowrap">
{formatMoney(marketWinnings)}
</div>
</Col>
</>
)}
</Row>
2021-12-16 04:30:24 +00:00
)}
</Row>
)
}
export function ContractBetsTable(props: {
contract: Contract
bets: Bet[]
className?: string
}) {
const { contract, bets, className } = props
const [sales, buys] = _.partition(bets, (bet) => bet.sale)
const salesDict = _.fromPairs(
sales.map((sale) => [sale.sale?.betId ?? '', sale])
)
const { isResolved } = contract
return (
<div className={clsx('overflow-x-auto', className)}>
<table className="table-zebra table-compact table w-full text-gray-500">
<thead>
<tr className="p-2">
2021-12-15 23:27:02 +00:00
<th>Date</th>
<th>Outcome</th>
<th>Amount</th>
<th>Probability</th>
2021-12-31 20:13:06 +00:00
<th>Shares</th>
2022-01-03 06:57:22 +00:00
<th>{isResolved ? <>Payout</> : <>Sale price</>}</th>
<th></th>
</tr>
</thead>
<tbody>
{buys.map((bet) => (
<BetRow
key={bet.id}
bet={bet}
2022-01-15 22:51:09 +00:00
saleBet={salesDict[bet.id]}
contract={contract}
/>
))}
</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
const {
amount,
outcome,
createdTime,
probBefore,
probAfter,
shares,
isSold,
2022-01-19 22:36:55 +00:00
isAnte,
} = bet
2022-01-19 22:36:55 +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
const saleDisplay = bet.isAnte ? (
'ANTE'
) : saleAmount !== undefined ? (
<>{formatMoney(saleAmount)} (sold)</>
) : (
formatMoney(
isResolved
? resolvedPayout(contract, bet)
: calculateSaleAmount(contract, bet)
)
)
2021-12-15 07:41:50 +00:00
return (
2021-12-15 18:41:18 +00:00
<tr>
<td>{dayjs(createdTime).format('MMM D, h:mma')}</td>
<td>
<OutcomeLabel outcome={outcome} />
</td>
2021-12-15 18:41:18 +00:00
<td>{formatMoney(amount)}</td>
<td>
{formatPercent(probBefore)} {formatPercent(probAfter)}
</td>
2021-12-31 20:13:06 +00:00
<td>{formatWithCommas(shares)}</td>
2022-01-19 22:36:55 +00:00
<td>{saleDisplay}</td>
2022-01-19 22:36:55 +00:00
{!isResolved && !isClosed && !isSold && !isAnte && (
<td className="text-neutral">
<SellButton contract={contract} bet={bet} />
</td>
)}
2021-12-15 18:41:18 +00:00
</tr>
2021-12-15 07:41:50 +00:00
)
}
function SellButton(props: { contract: Contract; bet: Bet }) {
useEffect(() => {
// warm up cloud function
sellBet({}).catch()
}, [])
const { contract, bet } = props
const [isSubmitting, setIsSubmitting] = useState(false)
return (
<ConfirmationButton
id={`sell-${bet.id}`}
openModelBtn={{
className: clsx('btn-sm', isSubmitting && 'btn-disabled loading'),
label: 'Sell',
}}
submitBtn={{ className: 'btn-primary' }}
onSubmit={async () => {
setIsSubmitting(true)
await sellBet({ contractId: contract.id, betId: bet.id })
setIsSubmitting(false)
}}
>
<div className="mb-4 text-2xl">
2022-01-03 06:57:22 +00:00
Sell <OutcomeLabel outcome={bet.outcome} />
</div>
<div>
2022-01-03 06:57:22 +00:00
Do you want to sell {formatWithCommas(bet.shares)} shares of{' '}
<OutcomeLabel outcome={bet.outcome} /> for{' '}
{formatMoney(calculateSaleAmount(contract, bet))}?
</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>
)
}