manifold/web/components/bet-panel.tsx

226 lines
6.4 KiB
TypeScript
Raw Normal View History

2021-12-11 00:40:23 +00:00
import { getFunctions, httpsCallable } from 'firebase/functions'
2021-12-10 17:14:05 +00:00
import clsx from 'clsx'
import React, { useEffect, useState } from 'react'
2021-12-11 00:06:17 +00:00
2021-12-10 17:14:05 +00:00
import { useUser } from '../hooks/use-user'
import { Contract } from '../lib/firebase/contracts'
import { Col } from './layout/col'
import { Row } from './layout/row'
import { Spacer } from './layout/spacer'
import { YesNoSelector } from './yes-no-selector'
2022-01-05 18:23:44 +00:00
import {
formatMoney,
formatPercent,
formatWithCommas,
} from '../lib/util/format'
2021-12-13 18:32:40 +00:00
import { Title } from './title'
import {
getProbability,
calculateShares,
getProbabilityAfterBet,
calculatePayoutAfterCorrectBet,
} from '../lib/calculate'
2021-12-18 07:09:11 +00:00
import { firebaseLogin } from '../lib/firebase/users'
import { AddFundsButton } from './add-funds-button'
2022-01-05 18:23:44 +00:00
import { OutcomeLabel } from './outcome-label'
import { AdvancedPanel } from './advanced-panel'
import { Bet } from '../lib/firebase/bets'
import { placeBet } from '../lib/firebase/api-call'
export function BetPanel(props: { contract: Contract; className?: string }) {
useEffect(() => {
// warm up cloud function
placeBet({}).catch()
}, [])
const { contract, className } = props
2021-12-10 17:14:05 +00:00
const user = useUser()
const [betChoice, setBetChoice] = useState<'YES' | 'NO'>('YES')
const [betAmount, setBetAmount] = useState<number | undefined>(undefined)
const [error, setError] = useState<string | undefined>()
2021-12-10 17:14:05 +00:00
const [isSubmitting, setIsSubmitting] = useState(false)
const [wasSubmitted, setWasSubmitted] = useState(false)
function onBetChoice(choice: 'YES' | 'NO') {
setBetChoice(choice)
setWasSubmitted(false)
}
2021-12-10 16:04:59 +00:00
function onBetChange(str: string) {
setWasSubmitted(false)
2021-12-10 16:04:59 +00:00
const amount = parseInt(str)
if (str && isNaN(amount)) return
setBetAmount(str ? amount : undefined)
2021-12-15 09:06:03 +00:00
if (user && user.balance < amount) setError('Insufficient balance')
else setError(undefined)
2021-12-10 16:04:59 +00:00
}
2021-12-10 17:14:05 +00:00
async function submitBet() {
if (!user || !betAmount) return
if (user.balance < betAmount) {
2021-12-15 09:06:03 +00:00
setError('Insufficient balance')
return
}
setError(undefined)
2021-12-10 17:14:05 +00:00
setIsSubmitting(true)
2021-12-11 00:06:17 +00:00
const result = await placeBet({
amount: betAmount,
outcome: betChoice,
2021-12-11 00:40:23 +00:00
contractId: contract.id,
}).then((r) => r.data as any)
2021-12-15 18:12:47 +00:00
2021-12-11 00:06:17 +00:00
console.log('placed bet. Result:', result)
2021-12-10 17:14:05 +00:00
2021-12-15 18:12:47 +00:00
if (result?.status === 'success') {
setIsSubmitting(false)
setWasSubmitted(true)
setBetAmount(undefined)
} else {
setError(result?.error || 'Error placing bet')
setIsSubmitting(false)
}
2021-12-10 17:14:05 +00:00
}
const betDisabled = isSubmitting || !betAmount || error
2021-12-10 17:14:05 +00:00
2021-12-17 22:15:09 +00:00
const initialProb = getProbability(contract.pool)
const resultProb = getProbabilityAfterBet(
2021-12-17 22:15:09 +00:00
contract.pool,
betChoice,
betAmount ?? 0
)
const shares = calculateShares(contract.pool, betAmount ?? 0, betChoice)
const estimatedWinnings = Math.floor(shares)
const estimatedReturn = betAmount
? (estimatedWinnings - betAmount) / betAmount
: 0
const estimatedReturnPercent = (estimatedReturn * 100).toFixed() + '%'
2021-12-15 23:55:46 +00:00
const remainingBalance = (user?.balance || 0) - (betAmount || 0)
return (
2022-01-06 09:49:41 +00:00
<Col
className={clsx('bg-gray-100 shadow-md px-8 py-6 rounded-md', className)}
>
<Title className="!mt-0 whitespace-nowrap" text={`Buy ${betChoice}`} />
2021-12-15 09:06:03 +00:00
<div className="mt-2 mb-1 text-sm text-gray-400">Outcome</div>
<YesNoSelector
className="my-2"
selected={betChoice}
2021-12-13 18:32:40 +00:00
onSelect={(choice) => onBetChoice(choice)}
/>
2022-01-06 09:49:41 +00:00
<div className="mt-3 mb-1 text-sm text-gray-400">
Amount{' '}
{user && (
<span className="float-right">
{formatMoney(remainingBalance > 0 ? remainingBalance : 0)} left
</span>
)}
</div>
2021-12-15 09:06:03 +00:00
<Col className="my-2">
<label className="input-group">
<span className="text-sm bg-gray-200">M$</span>
<input
className={clsx(
2021-12-15 09:06:03 +00:00
'input input-bordered w-full',
error && 'input-error'
)}
type="text"
placeholder="0"
2021-12-15 23:55:46 +00:00
maxLength={9}
value={betAmount ?? ''}
onChange={(e) => onBetChange(e.target.value)}
/>
2021-12-15 09:06:03 +00:00
</label>
{error && (
2021-12-15 23:55:46 +00:00
<div className="font-medium tracking-wide text-red-500 text-xs mt-3">
2021-12-15 09:06:03 +00:00
{error}
</div>
)}
{user && <AddFundsButton className="self-end mt-3" />}
</Col>
2021-12-16 21:35:06 +00:00
<div className="mt-2 mb-1 text-sm text-gray-400">Implied probability</div>
<Row>
2021-12-15 09:06:03 +00:00
<div>{formatPercent(initialProb)}</div>
<div className="mx-2"></div>
<div>{formatPercent(resultProb)}</div>
</Row>
2021-12-10 17:14:05 +00:00
2021-12-16 21:35:06 +00:00
<div className="mt-2 mb-1 text-sm text-gray-400">
2022-01-06 09:49:41 +00:00
Estimated max payout
2021-12-16 21:35:06 +00:00
</div>
2021-12-15 09:06:03 +00:00
<div>
2022-01-06 09:49:41 +00:00
{formatMoney(estimatedWinnings)} &nbsp;{' '}
{estimatedWinnings ? <span>(+{estimatedReturnPercent})</span> : null}
</div>
2022-01-05 18:23:44 +00:00
<AdvancedPanel>
<div className="mt-2 mb-1 text-sm text-gray-400">
<OutcomeLabel outcome={betChoice} /> shares
</div>
<div>
{formatWithCommas(shares)} of{' '}
{formatWithCommas(shares + contract.totalShares[betChoice])}
</div>
<div className="mt-2 mb-1 text-sm text-gray-400">
Current payout if <OutcomeLabel outcome={betChoice} />
</div>
<div>
{formatMoney(
betAmount
? calculatePayoutAfterCorrectBet(contract, {
outcome: betChoice,
amount: betAmount,
shares,
} as Bet)
: 0
2022-01-05 18:23:44 +00:00
)}
</div>
</AdvancedPanel>
<Spacer h={6} />
2021-12-18 07:09:11 +00:00
{user ? (
<button
className={clsx(
'btn',
betDisabled
? 'btn-disabled'
: betChoice === 'YES'
? 'btn-primary'
: 'bg-red-400 hover:bg-red-500 border-none',
isSubmitting ? 'loading' : ''
)}
onClick={betDisabled ? undefined : submitBet}
>
{isSubmitting ? 'Submitting...' : 'Submit trade'}
2021-12-18 07:09:11 +00:00
</button>
) : (
<button
className="btn mt-4 border-none normal-case text-lg font-medium px-10 bg-gradient-to-r from-teal-500 to-green-500 hover:from-teal-600 hover:to-green-600"
onClick={firebaseLogin}
>
Sign in to trade!
2021-12-18 07:09:11 +00:00
</button>
)}
{wasSubmitted && <div className="mt-4">Trade submitted!</div>}
</Col>
)
}