2022-02-20 22:25:58 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
import _ from 'lodash'
|
|
|
|
import { useEffect, useRef, useState } from 'react'
|
|
|
|
import { XIcon } from '@heroicons/react/solid'
|
|
|
|
|
|
|
|
import { Answer } from '../../../common/answer'
|
2022-03-15 22:27:51 +00:00
|
|
|
import { DPM, FreeResponse, FullContract } from '../../../common/contract'
|
2022-03-29 19:56:56 +00:00
|
|
|
import { BuyAmountInput } from '../amount-input'
|
2022-02-20 22:25:58 +00:00
|
|
|
import { Col } from '../layout/col'
|
|
|
|
import { placeBet } from '../../lib/firebase/api-call'
|
|
|
|
import { Row } from '../layout/row'
|
|
|
|
import { Spacer } from '../layout/spacer'
|
|
|
|
import {
|
|
|
|
formatMoney,
|
|
|
|
formatPercent,
|
|
|
|
formatWithCommas,
|
|
|
|
} from '../../../common/util/format'
|
|
|
|
import { InfoTooltip } from '../info-tooltip'
|
|
|
|
import { useUser } from '../../hooks/use-user'
|
|
|
|
import {
|
2022-03-15 22:27:51 +00:00
|
|
|
getDpmOutcomeProbability,
|
|
|
|
calculateDpmShares,
|
|
|
|
calculateDpmPayoutAfterCorrectBet,
|
|
|
|
getDpmOutcomeProbabilityAfterBet,
|
|
|
|
} from '../../../common/calculate-dpm'
|
2022-02-20 22:25:58 +00:00
|
|
|
import { firebaseLogin } from '../../lib/firebase/users'
|
|
|
|
import { Bet } from '../../../common/bet'
|
2022-04-04 16:30:47 +00:00
|
|
|
import { useUserContractBets } from '../../hooks/use-user-bets'
|
2022-02-20 22:25:58 +00:00
|
|
|
|
|
|
|
export function AnswerBetPanel(props: {
|
|
|
|
answer: Answer
|
2022-03-15 22:27:51 +00:00
|
|
|
contract: FullContract<DPM, FreeResponse>
|
2022-02-20 22:25:58 +00:00
|
|
|
closePanel: () => void
|
2022-03-02 03:31:48 +00:00
|
|
|
className?: string
|
2022-03-17 04:42:24 +00:00
|
|
|
isModal?: boolean
|
2022-02-20 22:25:58 +00:00
|
|
|
}) {
|
2022-03-17 04:42:24 +00:00
|
|
|
const { answer, contract, closePanel, className, isModal } = props
|
2022-02-20 22:25:58 +00:00
|
|
|
const { id: answerId } = answer
|
|
|
|
|
|
|
|
const user = useUser()
|
2022-04-04 16:30:47 +00:00
|
|
|
const userBets = useUserContractBets(user?.id, contract.id)
|
2022-02-20 22:25:58 +00:00
|
|
|
const [betAmount, setBetAmount] = useState<number | undefined>(undefined)
|
|
|
|
|
|
|
|
const [error, setError] = useState<string | undefined>()
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
|
|
|
|
|
|
const inputRef = useRef<HTMLElement>(null)
|
|
|
|
useEffect(() => {
|
|
|
|
inputRef.current && inputRef.current.focus()
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
async function submitBet() {
|
|
|
|
if (!user || !betAmount) return
|
|
|
|
|
|
|
|
setError(undefined)
|
|
|
|
setIsSubmitting(true)
|
|
|
|
|
|
|
|
const result = await placeBet({
|
|
|
|
amount: betAmount,
|
|
|
|
outcome: answerId,
|
|
|
|
contractId: contract.id,
|
|
|
|
}).then((r) => r.data as any)
|
|
|
|
|
|
|
|
console.log('placed bet. Result:', result)
|
|
|
|
|
|
|
|
if (result?.status === 'success') {
|
|
|
|
setIsSubmitting(false)
|
2022-03-25 20:33:57 +00:00
|
|
|
setBetAmount(undefined)
|
2022-02-20 22:25:58 +00:00
|
|
|
} else {
|
|
|
|
setError(result?.error || 'Error placing bet')
|
|
|
|
setIsSubmitting(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const betDisabled = isSubmitting || !betAmount || error
|
|
|
|
|
2022-03-15 22:27:51 +00:00
|
|
|
const initialProb = getDpmOutcomeProbability(contract.totalShares, answer.id)
|
2022-02-20 22:25:58 +00:00
|
|
|
|
2022-03-15 22:27:51 +00:00
|
|
|
const resultProb = getDpmOutcomeProbabilityAfterBet(
|
2022-02-20 22:25:58 +00:00
|
|
|
contract.totalShares,
|
|
|
|
answerId,
|
|
|
|
betAmount ?? 0
|
|
|
|
)
|
|
|
|
|
2022-03-15 22:27:51 +00:00
|
|
|
const shares = calculateDpmShares(
|
|
|
|
contract.totalShares,
|
|
|
|
betAmount ?? 0,
|
|
|
|
answerId
|
|
|
|
)
|
2022-02-20 22:25:58 +00:00
|
|
|
|
|
|
|
const currentPayout = betAmount
|
2022-03-15 22:27:51 +00:00
|
|
|
? calculateDpmPayoutAfterCorrectBet(contract, {
|
2022-02-20 22:25:58 +00:00
|
|
|
outcome: answerId,
|
|
|
|
amount: betAmount,
|
|
|
|
shares,
|
|
|
|
} as Bet)
|
|
|
|
: 0
|
|
|
|
|
|
|
|
const currentReturn = betAmount ? (currentPayout - betAmount) / betAmount : 0
|
2022-03-19 03:02:04 +00:00
|
|
|
const currentReturnPercent = formatPercent(currentReturn)
|
2022-02-20 22:25:58 +00:00
|
|
|
|
|
|
|
return (
|
2022-03-02 03:31:48 +00:00
|
|
|
<Col className={clsx('px-2 pb-2 pt-4 sm:pt-0', className)}>
|
2022-03-03 09:09:32 +00:00
|
|
|
<Row className="items-center justify-between self-stretch">
|
2022-03-17 04:42:24 +00:00
|
|
|
<div className="text-xl">
|
2022-04-09 21:13:36 +00:00
|
|
|
Bet on {isModal ? `"${answer.text}"` : 'this answer'}
|
2022-03-17 04:42:24 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{!isModal && (
|
|
|
|
<button className="btn-ghost btn-circle" onClick={closePanel}>
|
|
|
|
<XIcon
|
|
|
|
className="mx-auto h-8 w-8 text-gray-500"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
)}
|
2022-02-20 22:25:58 +00:00
|
|
|
</Row>
|
|
|
|
<div className="my-3 text-left text-sm text-gray-500">Amount </div>
|
2022-03-29 19:56:56 +00:00
|
|
|
<BuyAmountInput
|
2022-02-20 22:25:58 +00:00
|
|
|
inputClassName="w-full"
|
|
|
|
amount={betAmount}
|
|
|
|
onChange={setBetAmount}
|
|
|
|
error={error}
|
|
|
|
setError={setError}
|
|
|
|
disabled={isSubmitting}
|
|
|
|
inputRef={inputRef}
|
2022-03-02 21:50:19 +00:00
|
|
|
contractIdForLoan={contract.id}
|
2022-04-04 16:30:47 +00:00
|
|
|
userBets={userBets}
|
2022-02-20 22:25:58 +00:00
|
|
|
/>
|
2022-03-03 09:09:32 +00:00
|
|
|
<Col className="mt-3 w-full gap-3">
|
|
|
|
<Row className="items-center justify-between text-sm">
|
2022-03-02 03:31:48 +00:00
|
|
|
<div className="text-gray-500">Probability</div>
|
|
|
|
<Row>
|
|
|
|
<div>{formatPercent(initialProb)}</div>
|
|
|
|
<div className="mx-2">→</div>
|
|
|
|
<div>{formatPercent(resultProb)}</div>
|
|
|
|
</Row>
|
|
|
|
</Row>
|
|
|
|
|
2022-03-22 05:18:08 +00:00
|
|
|
<Row className="items-center justify-between gap-2 text-sm">
|
2022-03-03 09:09:32 +00:00
|
|
|
<Row className="flex-nowrap items-center gap-2 whitespace-nowrap text-gray-500">
|
2022-03-22 05:18:08 +00:00
|
|
|
<div>
|
|
|
|
Estimated <br /> payout if chosen
|
|
|
|
</div>
|
2022-03-02 03:31:48 +00:00
|
|
|
<InfoTooltip
|
|
|
|
text={`Current payout for ${formatWithCommas(
|
|
|
|
shares
|
|
|
|
)} / ${formatWithCommas(
|
|
|
|
shares + contract.totalShares[answerId]
|
|
|
|
)} shares`}
|
|
|
|
/>
|
|
|
|
</Row>
|
2022-03-03 09:09:32 +00:00
|
|
|
<Row className="flex-wrap items-end justify-end gap-2">
|
2022-03-02 03:31:48 +00:00
|
|
|
<span className="whitespace-nowrap">
|
|
|
|
{formatMoney(currentPayout)}
|
|
|
|
</span>
|
|
|
|
<span>(+{currentReturnPercent})</span>
|
|
|
|
</Row>
|
|
|
|
</Row>
|
|
|
|
</Col>
|
2022-02-20 22:25:58 +00:00
|
|
|
|
|
|
|
<Spacer h={6} />
|
|
|
|
|
|
|
|
{user ? (
|
|
|
|
<button
|
|
|
|
className={clsx(
|
2022-03-02 03:31:48 +00:00
|
|
|
'btn self-stretch',
|
2022-02-20 22:25:58 +00:00
|
|
|
betDisabled ? 'btn-disabled' : 'btn-primary',
|
|
|
|
isSubmitting ? 'loading' : ''
|
|
|
|
)}
|
|
|
|
onClick={betDisabled ? undefined : submitBet}
|
|
|
|
>
|
|
|
|
{isSubmitting ? 'Submitting...' : 'Submit trade'}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
2022-03-02 03:31:48 +00:00
|
|
|
className="btn self-stretch whitespace-nowrap border-none bg-gradient-to-r from-teal-500 to-green-500 px-10 text-lg font-medium normal-case hover:from-teal-600 hover:to-green-600"
|
2022-02-20 22:25:58 +00:00
|
|
|
onClick={firebaseLogin}
|
|
|
|
>
|
2022-04-04 05:58:56 +00:00
|
|
|
Sign up to trade!
|
2022-02-20 22:25:58 +00:00
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|