2021-12-10 17:14:05 +00:00
|
|
|
import clsx from 'clsx'
|
2022-01-26 20:08:03 +00:00
|
|
|
import React, { useEffect, useRef, 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'
|
2022-01-10 21:07:57 +00:00
|
|
|
import { Contract } from '../../common/contract'
|
2021-12-10 14:56:17 +00:00
|
|
|
import { Col } from './layout/col'
|
2021-12-10 15:51:48 +00:00
|
|
|
import { Row } from './layout/row'
|
2021-12-10 14:56:17 +00:00
|
|
|
import { Spacer } from './layout/spacer'
|
|
|
|
import { YesNoSelector } from './yes-no-selector'
|
2022-01-05 18:23:44 +00:00
|
|
|
import {
|
|
|
|
formatMoney,
|
|
|
|
formatPercent,
|
|
|
|
formatWithCommas,
|
2022-01-30 21:51:30 +00:00
|
|
|
} from '../../common/util/format'
|
2021-12-13 18:32:40 +00:00
|
|
|
import { Title } from './title'
|
2021-12-15 22:57:40 +00:00
|
|
|
import {
|
|
|
|
getProbability,
|
2021-12-24 21:06:01 +00:00
|
|
|
calculateShares,
|
2021-12-15 22:57:40 +00:00
|
|
|
getProbabilityAfterBet,
|
2022-01-05 23:03:26 +00:00
|
|
|
calculatePayoutAfterCorrectBet,
|
2022-01-10 21:07:57 +00:00
|
|
|
} from '../../common/calculate'
|
2021-12-18 07:09:11 +00:00
|
|
|
import { firebaseLogin } from '../lib/firebase/users'
|
2022-01-10 21:07:57 +00:00
|
|
|
import { Bet } from '../../common/bet'
|
2022-01-05 18:23:58 +00:00
|
|
|
import { placeBet } from '../lib/firebase/api-call'
|
2022-01-11 03:41:42 +00:00
|
|
|
import { AmountInput } from './amount-input'
|
2022-01-15 21:28:19 +00:00
|
|
|
import { InfoTooltip } from './info-tooltip'
|
|
|
|
import { OutcomeLabel } from './outcome-label'
|
2021-12-10 14:56:17 +00:00
|
|
|
|
2022-01-26 20:08:03 +00:00
|
|
|
// Focus helper from https://stackoverflow.com/a/54159564/1222351
|
|
|
|
function useFocus(): [React.RefObject<HTMLElement>, () => void] {
|
|
|
|
const htmlElRef = useRef<HTMLElement>(null)
|
|
|
|
const setFocus = () => {
|
|
|
|
htmlElRef.current && htmlElRef.current.focus()
|
|
|
|
}
|
|
|
|
|
|
|
|
return [htmlElRef, setFocus]
|
|
|
|
}
|
|
|
|
|
|
|
|
export function BetPanel(props: {
|
|
|
|
contract: Contract
|
|
|
|
className?: string
|
|
|
|
title?: string // Set if BetPanel is on a feed modal
|
|
|
|
selected?: 'YES' | 'NO'
|
|
|
|
}) {
|
2022-01-05 18:23:58 +00:00
|
|
|
useEffect(() => {
|
|
|
|
// warm up cloud function
|
|
|
|
placeBet({}).catch()
|
|
|
|
}, [])
|
|
|
|
|
2022-01-26 20:08:03 +00:00
|
|
|
const { contract, className, title, selected } = props
|
2021-12-10 14:56:17 +00:00
|
|
|
|
2021-12-10 17:14:05 +00:00
|
|
|
const user = useUser()
|
|
|
|
|
2022-01-26 20:08:03 +00:00
|
|
|
const [betChoice, setBetChoice] = useState<'YES' | 'NO' | undefined>(selected)
|
2021-12-10 15:51:48 +00:00
|
|
|
const [betAmount, setBetAmount] = useState<number | undefined>(undefined)
|
2022-01-26 20:08:03 +00:00
|
|
|
const [inputRef, focusAmountInput] = useFocus()
|
2021-12-10 14:56:17 +00:00
|
|
|
|
2021-12-15 00:08:55 +00:00
|
|
|
const [error, setError] = useState<string | undefined>()
|
2021-12-10 17:14:05 +00:00
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
|
|
const [wasSubmitted, setWasSubmitted] = useState(false)
|
|
|
|
|
2021-12-11 04:09:32 +00:00
|
|
|
function onBetChoice(choice: 'YES' | 'NO') {
|
|
|
|
setBetChoice(choice)
|
|
|
|
setWasSubmitted(false)
|
2022-01-26 20:08:03 +00:00
|
|
|
focusAmountInput()
|
2021-12-11 04:09:32 +00:00
|
|
|
}
|
|
|
|
|
2022-01-11 03:41:42 +00:00
|
|
|
function onBetChange(newAmount: number | undefined) {
|
2021-12-15 00:08:55 +00:00
|
|
|
setWasSubmitted(false)
|
2022-01-11 03:41:42 +00:00
|
|
|
setBetAmount(newAmount)
|
2022-01-26 20:08:03 +00:00
|
|
|
if (!betChoice) {
|
|
|
|
setBetChoice('YES')
|
|
|
|
}
|
2021-12-10 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2021-12-10 17:14:05 +00:00
|
|
|
async function submitBet() {
|
|
|
|
if (!user || !betAmount) return
|
|
|
|
|
2021-12-15 00:08:55 +00:00
|
|
|
if (user.balance < betAmount) {
|
2021-12-15 09:06:03 +00:00
|
|
|
setError('Insufficient balance')
|
2021-12-15 00:08:55 +00:00
|
|
|
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,
|
2021-12-16 04:55:03 +00:00
|
|
|
}).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
|
|
|
}
|
|
|
|
|
2021-12-15 00:08:55 +00:00
|
|
|
const betDisabled = isSubmitting || !betAmount || error
|
2021-12-10 17:14:05 +00:00
|
|
|
|
2022-01-12 19:01:04 +00:00
|
|
|
const initialProb = getProbability(contract.totalShares)
|
|
|
|
|
2021-12-15 22:57:40 +00:00
|
|
|
const resultProb = getProbabilityAfterBet(
|
2022-01-12 19:01:04 +00:00
|
|
|
contract.totalShares,
|
2022-01-26 20:08:03 +00:00
|
|
|
betChoice || 'YES',
|
2021-12-15 22:57:40 +00:00
|
|
|
betAmount ?? 0
|
|
|
|
)
|
2021-12-11 03:47:46 +00:00
|
|
|
|
2022-01-12 19:01:04 +00:00
|
|
|
const shares = calculateShares(
|
|
|
|
contract.totalShares,
|
|
|
|
betAmount ?? 0,
|
2022-01-26 20:08:03 +00:00
|
|
|
betChoice || 'YES'
|
2022-01-12 19:01:04 +00:00
|
|
|
)
|
|
|
|
|
2022-01-15 21:28:19 +00:00
|
|
|
const currentPayout = betAmount
|
|
|
|
? calculatePayoutAfterCorrectBet(contract, {
|
|
|
|
outcome: betChoice,
|
|
|
|
amount: betAmount,
|
|
|
|
shares,
|
|
|
|
} as Bet)
|
2021-12-11 03:47:46 +00:00
|
|
|
: 0
|
2022-01-12 19:01:04 +00:00
|
|
|
|
2022-01-15 21:28:19 +00:00
|
|
|
const currentReturn = betAmount ? (currentPayout - betAmount) / betAmount : 0
|
|
|
|
const currentReturnPercent = (currentReturn * 100).toFixed() + '%'
|
2022-01-27 06:38:22 +00:00
|
|
|
const panelTitle = title ?? 'Place a trade'
|
2022-01-26 20:08:03 +00:00
|
|
|
if (title) {
|
|
|
|
focusAmountInput()
|
|
|
|
}
|
2021-12-11 03:47:46 +00:00
|
|
|
|
2021-12-10 14:56:17 +00:00
|
|
|
return (
|
2022-01-27 22:37:43 +00:00
|
|
|
<Col className={clsx('bg-white px-8 py-6 rounded-md', className)}>
|
2022-01-13 18:58:46 +00:00
|
|
|
<Title
|
2022-01-27 22:37:43 +00:00
|
|
|
className={clsx('!mt-0', title ? '!text-xl' : '')}
|
2022-01-26 20:08:03 +00:00
|
|
|
text={panelTitle}
|
2022-01-13 18:58:46 +00:00
|
|
|
/>
|
2021-12-15 09:06:03 +00:00
|
|
|
|
2022-01-27 06:38:22 +00:00
|
|
|
{/* <div className="mt-2 mb-1 text-sm text-gray-500">Outcome</div> */}
|
2021-12-10 14:56:17 +00:00
|
|
|
<YesNoSelector
|
2022-01-27 06:38:22 +00:00
|
|
|
className="mb-4"
|
2021-12-10 14:56:17 +00:00
|
|
|
selected={betChoice}
|
2021-12-13 18:32:40 +00:00
|
|
|
onSelect={(choice) => onBetChoice(choice)}
|
2021-12-10 14:56:17 +00:00
|
|
|
/>
|
|
|
|
|
2022-01-15 21:28:19 +00:00
|
|
|
<div className="my-3 text-sm text-gray-500 text-left">Amount </div>
|
2022-01-11 03:41:42 +00:00
|
|
|
<AmountInput
|
|
|
|
inputClassName="w-full"
|
|
|
|
amount={betAmount}
|
|
|
|
onChange={onBetChange}
|
|
|
|
error={error}
|
|
|
|
setError={setError}
|
|
|
|
disabled={isSubmitting}
|
2022-01-26 20:08:03 +00:00
|
|
|
inputRef={inputRef}
|
2022-01-11 03:41:42 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<Spacer h={4} />
|
2021-12-10 14:56:17 +00:00
|
|
|
|
2022-01-09 05:10:08 +00:00
|
|
|
<div className="mt-2 mb-1 text-sm text-gray-500">Implied probability</div>
|
2021-12-11 03:47:46 +00:00
|
|
|
<Row>
|
2021-12-15 09:06:03 +00:00
|
|
|
<div>{formatPercent(initialProb)}</div>
|
|
|
|
<div className="mx-2">→</div>
|
|
|
|
<div>{formatPercent(resultProb)}</div>
|
2021-12-11 03:47:46 +00:00
|
|
|
</Row>
|
2021-12-10 17:14:05 +00:00
|
|
|
|
2022-01-26 20:08:03 +00:00
|
|
|
{betChoice && (
|
|
|
|
<>
|
|
|
|
<Spacer h={4} />
|
|
|
|
<Row className="mt-2 mb-1 items-center gap-2 text-sm text-gray-500">
|
|
|
|
Payout if <OutcomeLabel outcome={betChoice} />
|
|
|
|
<InfoTooltip
|
|
|
|
text={`Current payout for ${formatWithCommas(
|
|
|
|
shares
|
|
|
|
)} / ${formatWithCommas(
|
|
|
|
shares +
|
|
|
|
contract.totalShares[betChoice] -
|
|
|
|
contract.phantomShares[betChoice]
|
|
|
|
)} ${betChoice} shares`}
|
|
|
|
/>
|
|
|
|
</Row>
|
|
|
|
<div>
|
|
|
|
{formatMoney(currentPayout)}
|
|
|
|
<span>(+{currentReturnPercent})</span>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)}
|
2021-12-11 03:47:46 +00:00
|
|
|
|
|
|
|
<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}
|
|
|
|
>
|
2021-12-24 21:06:01 +00:00
|
|
|
{isSubmitting ? 'Submitting...' : 'Submit trade'}
|
2021-12-18 07:09:11 +00:00
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
2022-01-10 17:02:43 +00:00
|
|
|
className="btn mt-4 border-none normal-case text-lg font-medium whitespace-nowrap px-10 bg-gradient-to-r from-teal-500 to-green-500 hover:from-teal-600 hover:to-green-600"
|
2021-12-18 07:09:11 +00:00
|
|
|
onClick={firebaseLogin}
|
|
|
|
>
|
2021-12-24 21:06:01 +00:00
|
|
|
Sign in to trade!
|
2021-12-18 07:09:11 +00:00
|
|
|
</button>
|
|
|
|
)}
|
2021-12-11 03:47:46 +00:00
|
|
|
|
2021-12-24 21:06:01 +00:00
|
|
|
{wasSubmitted && <div className="mt-4">Trade submitted!</div>}
|
2021-12-10 14:56:17 +00:00
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|