import clsx from 'clsx' import dayjs from 'dayjs' import React, { useEffect, useState } from 'react' import { LinkIcon, SwitchVerticalIcon } from '@heroicons/react/outline' import toast from 'react-hot-toast' import { Col } from '../layout/col' import { Row } from '../layout/row' import { Title } from '../title' import { User } from 'common/user' import { Modal } from 'web/components/layout/modal' import { Button } from '../button' import { createChallenge, getChallengeUrl } from 'web/lib/firebase/challenges' import { BinaryContract, MAX_QUESTION_LENGTH } from 'common/contract' import { SiteLink } from 'web/components/site-link' import { formatMoney } from 'common/util/format' import { NoLabel, YesLabel } from '../outcome-label' import { QRCode } from '../qr-code' import { copyToClipboard } from 'web/lib/util/copy' import { AmountInput } from '../amount-input' import { createMarket } from 'web/lib/firebase/api' import { removeUndefinedProps } from 'common/util/object' import { FIXED_ANTE } from 'common/economy' import Textarea from 'react-expanding-textarea' import { useTextEditor } from 'web/components/editor' import { LoadingIndicator } from 'web/components/loading-indicator' import { track } from 'web/lib/service/analytics' import { useWindowSize } from 'web/hooks/use-window-size' type challengeInfo = { amount: number expiresTime: number | null outcome: 'YES' | 'NO' | number acceptorAmount: number question: string } export function CreateChallengeModal(props: { user: User | null | undefined isOpen: boolean setOpen: (open: boolean) => void contract?: BinaryContract }) { const { user, contract, isOpen, setOpen } = props const [challengeSlug, setChallengeSlug] = useState('') const [loading, setLoading] = useState(false) const { editor } = useTextEditor({ placeholder: '' }) return ( {/*// add a sign up to challenge button?*/} {user && ( { setLoading(true) try { const challengeContract = contract ? contract : await createMarket( removeUndefinedProps({ question: newChallenge.question, outcomeType: 'BINARY', initialProb: 50, description: editor?.getJSON(), ante: FIXED_ANTE, closeTime: dayjs().add(30, 'day').valueOf(), }) ) const challenge = await createChallenge({ creator: user, creatorAmount: newChallenge.amount, expiresTime: newChallenge.expiresTime, acceptorAmount: newChallenge.acceptorAmount, outcome: newChallenge.outcome, contract: challengeContract as BinaryContract, }) if (challenge) { setChallengeSlug(getChallengeUrl(challenge)) track('challenge created', { creator: user.username, amount: newChallenge.amount, contractId: challengeContract.id, }) } } catch (e) { console.error("couldn't create market/challenge:", e) } setLoading(false) }} challengeSlug={challengeSlug} /> )} ) } function CreateChallengeForm(props: { user: User onCreate: (m: challengeInfo) => Promise challengeSlug: string loading: boolean contract?: BinaryContract }) { const { user, onCreate, contract, challengeSlug, loading } = props const [isCreating, setIsCreating] = useState(false) const [finishedCreating, setFinishedCreating] = useState(false) const [error, setError] = useState('') const defaultExpire = 'week' const { width } = useWindowSize() const isMobile = (width ?? 0) < 768 const [challengeInfo, setChallengeInfo] = useState({ expiresTime: dayjs().add(2, defaultExpire).valueOf(), outcome: 'YES', amount: 100, acceptorAmount: 100, question: contract ? contract.question : '', }) useEffect(() => { setError('') }, [challengeInfo]) return ( <> {!finishedCreating && (
{ e.preventDefault() if (user.balance < challengeInfo.amount) { setError("You don't have enough mana to create this challenge") return } if (!contract && user.balance < FIXED_ANTE + challengeInfo.amount) { setError( `You don't have enough mana to create this challenge and market. You need ${formatMoney( FIXED_ANTE + challengeInfo.amount )}` ) return } setIsCreating(true) onCreate(challengeInfo).finally(() => setIsCreating(false)) setFinishedCreating(true) }} > <div className="mb-8"> Challenge a friend to bet on{' '} {contract ? ( <span className="underline">{contract.question}</span> ) : ( <Textarea placeholder="e.g. Will a Democrat be the next president?" className="input input-bordered mt-1 w-full resize-none" autoFocus={!isMobile} maxLength={MAX_QUESTION_LENGTH} value={challengeInfo.question} onChange={(e) => setChallengeInfo({ ...challengeInfo, question: e.target.value, }) } /> )} </div> <Col className="mt-2 flex-wrap justify-center gap-x-5 gap-y-0 sm:gap-y-2"> <Col> <div>You'll bet:</div> <Row className={ 'form-control w-full max-w-xs items-center justify-between gap-4 pr-3' } > <AmountInput amount={challengeInfo.amount || undefined} onChange={(newAmount) => setChallengeInfo((m: challengeInfo) => { return { ...m, amount: newAmount ?? 0, acceptorAmount: newAmount ?? 0, } }) } error={undefined} label={'M$'} inputClassName="w-24" /> <span className={''}>on</span> {challengeInfo.outcome === 'YES' ? <YesLabel /> : <NoLabel />} </Row> <Row className={'max-w-xs justify-end'}> <Button color={'gray-white'} onClick={() => setChallengeInfo((m: challengeInfo) => { return { ...m, outcome: m.outcome === 'YES' ? 'NO' : 'YES', } }) } > <SwitchVerticalIcon className={'h-6 w-6'} /> </Button> </Row> </Col> <Row className={'items-center'}>If they bet:</Row> <Row className={'max-w-xs items-center justify-between gap-4 pr-3'}> <div className={'mt-1 w-32 sm:mr-1'}> <span className={'ml-2 font-bold'}> {formatMoney(challengeInfo.acceptorAmount)} </span> </div> <span>on</span> {challengeInfo.outcome === 'YES' ? <NoLabel /> : <YesLabel />} </Row> </Col> <div className="mt-8"> If the challenge is accepted, whoever is right will earn{' '} <span className="font-semibold"> {formatMoney( challengeInfo.acceptorAmount + challengeInfo.amount || 0 )} </span>{' '} in total.{' '} <span> {!contract && ( <span> Because there's no market yet, you'll be charged <span className={'mx-1 font-semibold'}> {formatMoney(FIXED_ANTE)} </span> to create it. </span> )} </span> </div> <Row className="mt-8 items-center"> <Button type="submit" color={'gradient'} size="xl" disabled={isCreating || challengeInfo.question === ''} className={clsx('whitespace-nowrap drop-shadow-md')} > Create challenge bet </Button> </Row> <Row className={'text-error'}>{error} </Row> </form> )} {loading && ( <Col className={'h-56 w-full items-center justify-center'}> <LoadingIndicator /> </Col> )} {finishedCreating && !loading && ( <> <Title className="!my-0" text="Challenge Created!" /> <div>Share the challenge using the link.</div> <button onClick={() => { copyToClipboard(challengeSlug) toast('Link copied to clipboard!') }} className={'btn btn-outline mb-4 whitespace-nowrap normal-case'} > <LinkIcon className={'mr-2 h-5 w-5'} /> Copy link </button> <QRCode url={challengeSlug} className="self-center" /> <Row className={'gap-1 text-gray-500'}> See your other <SiteLink className={'underline'} href={'/challenges'}> challenges </SiteLink> </Row> </> )} </> ) }