import clsx from 'clsx' import _ from 'lodash' import { useEffect, useRef, useState } from 'react' import Textarea from 'react-expanding-textarea' import { XIcon } from '@heroicons/react/solid' import { Answer } from '../../common/answer' import { Contract } from '../../common/contract' import { AmountInput } from './amount-input' import { Col } from './layout/col' import { createAnswer, placeBet, resolveMarket } from '../lib/firebase/api-call' import { Row } from './layout/row' import { Avatar } from './avatar' import { SiteLink } from './site-link' import { DateTimeTooltip } from './datetime-tooltip' import dayjs from 'dayjs' import { BuyButton, ChooseCancelSelector } from './yes-no-selector' 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 { getProbabilityAfterBet, getOutcomeProbability, calculateShares, calculatePayoutAfterCorrectBet, } from '../../common/calculate' import { firebaseLogin } from '../lib/firebase/users' import { Bet } from '../../common/bet' import { useAnswers } from '../hooks/use-answers' import { ResolveConfirmationButton } from './confirmation-button' export function AnswersPanel(props: { contract: Contract<'MULTI'> answers: Answer[] }) { const { contract } = props const answers = useAnswers(contract.id) ?? props.answers const sortedAnswers = _.sortBy( answers, (answer) => -1 * getOutcomeProbability(contract.totalShares, answer.id) ) const user = useUser() const [resolveOption, setResolveOption] = useState< 'CHOOSE' | 'CANCEL' | undefined >() const [answerChoice, setAnswerChoice] = useState() return ( {sortedAnswers.map((answer) => ( setAnswerChoice(answer.id)} /> ))} {user?.id === contract.creatorId && ( setAnswerChoice(undefined)} /> )} ) } function AnswerItem(props: { answer: Answer contract: Contract<'MULTI'> showChoice: boolean isChosen: boolean onChoose: () => void }) { const { answer, contract, showChoice, isChosen, onChoose } = props const { username, avatarUrl, name, createdTime, number, text } = answer const createdDate = dayjs(createdTime).format('MMM D') const prob = getOutcomeProbability(contract.totalShares, answer.id) const probPercent = formatPercent(prob) const [isBetting, setIsBetting] = useState(false) return (
{text}
{name}
{createdDate}
#{number}
{isBetting ? ( setIsBetting(false)} /> ) : (
{probPercent}
{showChoice ? (
) : ( { setIsBetting(true) }} /> )}
)} ) } function AnswerBetPanel(props: { answer: Answer contract: Contract<'MULTI'> closePanel: () => void }) { const { answer, contract, closePanel } = props const { id: answerId } = answer const user = useUser() const [betAmount, setBetAmount] = useState(undefined) const [error, setError] = useState() const [isSubmitting, setIsSubmitting] = useState(false) const inputRef = useRef(null) useEffect(() => { inputRef.current && inputRef.current.focus() }, []) 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: answerId, contractId: contract.id, }).then((r) => r.data as any) console.log('placed bet. Result:', result) if (result?.status === 'success') { setIsSubmitting(false) closePanel() } else { setError(result?.error || 'Error placing bet') setIsSubmitting(false) } } const betDisabled = isSubmitting || !betAmount || error const initialProb = getOutcomeProbability(contract.totalShares, answer.id) const resultProb = getProbabilityAfterBet( contract.totalShares, answerId, betAmount ?? 0 ) const shares = calculateShares(contract.totalShares, betAmount ?? 0, answerId) const currentPayout = betAmount ? calculatePayoutAfterCorrectBet( contract as any as Contract, { outcome: answerId, amount: betAmount, shares, } as Bet ) : 0 const currentReturn = betAmount ? (currentPayout - betAmount) / betAmount : 0 const currentReturnPercent = (currentReturn * 100).toFixed() + '%' return (
Buy this answer
Amount
Implied probability
{formatPercent(initialProb)}
{formatPercent(resultProb)}
Payout if chosen
{formatMoney(currentPayout)}   (+{currentReturnPercent})
{user ? ( ) : ( )} ) } function CreateAnswerInput(props: { contract: Contract<'MULTI'> }) { const { contract } = props const [text, setText] = useState('') const [betAmount, setBetAmount] = useState(10) const [amountError, setAmountError] = useState() const [isSubmitting, setIsSubmitting] = useState(false) const canSubmit = text && betAmount && !amountError && !isSubmitting const submitAnswer = async () => { if (canSubmit) { setIsSubmitting(true) const result = await createAnswer({ contractId: contract.id, text, amount: betAmount, }).then((r) => r.data) setIsSubmitting(false) if (result.status === 'success') { setText('') setBetAmount(10) setAmountError(undefined) } } } return (
Add your answer