192 lines
5.4 KiB
TypeScript
192 lines
5.4 KiB
TypeScript
import { getFunctions, httpsCallable } from 'firebase/functions'
|
|
import clsx from 'clsx'
|
|
import React, { useState } from 'react'
|
|
|
|
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'
|
|
import { formatMoney, formatPercent } from '../lib/util/format'
|
|
import { Title } from './title'
|
|
import {
|
|
getProbability,
|
|
getDpmWeight,
|
|
getProbabilityAfterBet,
|
|
} from '../lib/calculation/contract'
|
|
import { firebaseLogin } from '../lib/firebase/users'
|
|
|
|
export function BetPanel(props: { contract: Contract; className?: string }) {
|
|
const { contract, className } = props
|
|
|
|
const user = useUser()
|
|
|
|
const [betChoice, setBetChoice] = useState<'YES' | 'NO'>('YES')
|
|
const [betAmount, setBetAmount] = useState<number | undefined>(undefined)
|
|
|
|
const [error, setError] = useState<string | undefined>()
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
const [wasSubmitted, setWasSubmitted] = useState(false)
|
|
|
|
function onBetChoice(choice: 'YES' | 'NO') {
|
|
setBetChoice(choice)
|
|
setWasSubmitted(false)
|
|
}
|
|
|
|
function onBetChange(str: string) {
|
|
setWasSubmitted(false)
|
|
|
|
const amount = parseInt(str)
|
|
|
|
if (str && isNaN(amount)) return
|
|
|
|
setBetAmount(str ? amount : undefined)
|
|
|
|
if (user && user.balance < amount) setError('Insufficient balance')
|
|
else setError(undefined)
|
|
}
|
|
|
|
async function submitBet() {
|
|
if (!user || !betAmount) return
|
|
|
|
if (user.balance < betAmount) {
|
|
setError('Insufficient balance')
|
|
return
|
|
}
|
|
|
|
setError(undefined)
|
|
setIsSubmitting(true)
|
|
|
|
const result = await placeBet({
|
|
amount: betAmount,
|
|
outcome: betChoice,
|
|
contractId: contract.id,
|
|
}).then((r) => r.data as any)
|
|
|
|
console.log('placed bet. Result:', result)
|
|
|
|
if (result?.status === 'success') {
|
|
setIsSubmitting(false)
|
|
setWasSubmitted(true)
|
|
setBetAmount(undefined)
|
|
} else {
|
|
setError(result?.error || 'Error placing bet')
|
|
setIsSubmitting(false)
|
|
}
|
|
}
|
|
|
|
const betDisabled = isSubmitting || !betAmount || error
|
|
|
|
const initialProb = getProbability(contract.pool)
|
|
const resultProb = getProbabilityAfterBet(
|
|
contract.pool,
|
|
betChoice,
|
|
betAmount ?? 0
|
|
)
|
|
const dpmWeight = getDpmWeight(contract.pool, betAmount ?? 0, betChoice)
|
|
|
|
const estimatedWinnings = Math.floor((betAmount ?? 0) + dpmWeight)
|
|
const estimatedReturn = betAmount
|
|
? (estimatedWinnings - betAmount) / betAmount
|
|
: 0
|
|
const estimatedReturnPercent = (estimatedReturn * 100).toFixed() + '%'
|
|
|
|
const remainingBalance = (user?.balance || 0) - (betAmount || 0)
|
|
|
|
return (
|
|
<Col
|
|
className={clsx(
|
|
'bg-gray-100 shadow-xl px-8 py-6 rounded-md w-full md:w-auto',
|
|
className
|
|
)}
|
|
>
|
|
<Title className="mt-0 whitespace-nowrap" text="Place a bet" />
|
|
|
|
<div className="mt-2 mb-1 text-sm text-gray-400">Outcome</div>
|
|
<YesNoSelector
|
|
className="my-2"
|
|
selected={betChoice}
|
|
onSelect={(choice) => onBetChoice(choice)}
|
|
/>
|
|
|
|
<div className="mt-3 mb-1 text-sm text-gray-400">Bet amount</div>
|
|
<Col className="my-2">
|
|
<label className="input-group">
|
|
<span className="text-sm bg-gray-200">M$</span>
|
|
<input
|
|
className={clsx(
|
|
'input input-bordered w-full',
|
|
error && 'input-error'
|
|
)}
|
|
type="text"
|
|
placeholder="0"
|
|
maxLength={9}
|
|
value={betAmount ?? ''}
|
|
onChange={(e) => onBetChange(e.target.value)}
|
|
/>
|
|
</label>
|
|
{error && (
|
|
<div className="font-medium tracking-wide text-red-500 text-xs mt-3">
|
|
{error}
|
|
</div>
|
|
)}
|
|
</Col>
|
|
|
|
{user && (
|
|
<>
|
|
<div className="mt-3 mb-1 text-sm text-gray-400">
|
|
Remaining balance
|
|
</div>
|
|
<div>{formatMoney(remainingBalance > 0 ? remainingBalance : 0)}</div>
|
|
</>
|
|
)}
|
|
|
|
<div className="mt-2 mb-1 text-sm text-gray-400">Implied probability</div>
|
|
<Row>
|
|
<div>{formatPercent(initialProb)}</div>
|
|
<div className="mx-2">→</div>
|
|
<div>{formatPercent(resultProb)}</div>
|
|
</Row>
|
|
|
|
<div className="mt-2 mb-1 text-sm text-gray-400">
|
|
Max payout (estimated)
|
|
</div>
|
|
<div>
|
|
{formatMoney(estimatedWinnings)} (+{estimatedReturnPercent})
|
|
</div>
|
|
|
|
<Spacer h={6} />
|
|
|
|
{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...' : 'Place bet'}
|
|
</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 bet!
|
|
</button>
|
|
)}
|
|
|
|
{wasSubmitted && <div className="mt-4">Bet submitted!</div>}
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
const functions = getFunctions()
|
|
export const placeBet = httpsCallable(functions, 'placeBet')
|