fc7f19e785
* Update resolve-market to be a v2 function * Cleanup API error responses * Update frontend to use v2 version of resolvemarket * Appease ESLint * Address review comments * Appease ESLint * Remove unnecessary auth check * Fix logic bug in FR market validation * Make it so you can specify runtime opts for v2 functions * Cleanup to resolve market API resolutions input, fixes * Fix up tiny lint * Last minute cleanup to resolvemarket FR API input validation Co-authored-by: Benjamin <ben@congdon.dev>
134 lines
3.8 KiB
TypeScript
134 lines
3.8 KiB
TypeScript
import clsx from 'clsx'
|
|
import React, { useEffect, useState } from 'react'
|
|
|
|
import { Col } from './layout/col'
|
|
import { User } from 'web/lib/firebase/users'
|
|
import { YesNoCancelSelector } from './yes-no-selector'
|
|
import { Spacer } from './layout/spacer'
|
|
import { ResolveConfirmationButton } from './confirmation-button'
|
|
import { APIError, resolveMarket } from 'web/lib/firebase/api-call'
|
|
import { ProbabilitySelector } from './probability-selector'
|
|
import { DPM_CREATOR_FEE } from 'common/fees'
|
|
import { getProbability } from 'common/calculate'
|
|
import { BinaryContract, resolution } from 'common/contract'
|
|
import { formatMoney } from 'common/util/format'
|
|
|
|
export function ResolutionPanel(props: {
|
|
creator: User
|
|
contract: BinaryContract
|
|
className?: string
|
|
}) {
|
|
useEffect(() => {
|
|
// warm up cloud function
|
|
resolveMarket({} as any).catch(() => {})
|
|
}, [])
|
|
|
|
const { contract, className } = props
|
|
|
|
const earnedFees =
|
|
contract.mechanism === 'dpm-2'
|
|
? `${DPM_CREATOR_FEE * 100}% of trader profits`
|
|
: `${formatMoney(contract.collectedFees.creatorFee)} in fees`
|
|
|
|
const [outcome, setOutcome] = useState<resolution | undefined>()
|
|
|
|
const [prob, setProb] = useState(getProbability(contract) * 100)
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
const [error, setError] = useState<string | undefined>(undefined)
|
|
|
|
const resolve = async () => {
|
|
if (!outcome) return
|
|
|
|
setIsSubmitting(true)
|
|
|
|
try {
|
|
const result = await resolveMarket({
|
|
outcome,
|
|
contractId: contract.id,
|
|
probabilityInt: prob,
|
|
})
|
|
console.log('resolved', outcome, 'result:', result)
|
|
} catch (e) {
|
|
if (e instanceof APIError) {
|
|
setError(e.toString())
|
|
} else {
|
|
console.error(e)
|
|
setError('Error resolving market')
|
|
}
|
|
}
|
|
|
|
setIsSubmitting(false)
|
|
}
|
|
|
|
const submitButtonClass =
|
|
outcome === 'YES'
|
|
? 'btn-primary'
|
|
: outcome === 'NO'
|
|
? 'bg-red-400 hover:bg-red-500'
|
|
: outcome === 'CANCEL'
|
|
? 'bg-yellow-400 hover:bg-yellow-500'
|
|
: outcome === 'MKT'
|
|
? 'bg-blue-400 hover:bg-blue-500'
|
|
: 'btn-disabled'
|
|
|
|
return (
|
|
<Col className={clsx('rounded-md bg-white px-8 py-6', className)}>
|
|
<div className="mb-6 whitespace-nowrap text-2xl">Resolve market</div>
|
|
|
|
<div className="mb-3 text-sm text-gray-500">Outcome</div>
|
|
|
|
<YesNoCancelSelector
|
|
className="mx-auto my-2"
|
|
selected={outcome}
|
|
onSelect={setOutcome}
|
|
btnClassName={isSubmitting ? 'btn-disabled' : ''}
|
|
/>
|
|
|
|
<Spacer h={4} />
|
|
|
|
<div>
|
|
{outcome === 'YES' ? (
|
|
<>
|
|
Winnings will be paid out to YES bettors.
|
|
<br />
|
|
<br />
|
|
You will earn {earnedFees}.
|
|
</>
|
|
) : outcome === 'NO' ? (
|
|
<>
|
|
Winnings will be paid out to NO bettors.
|
|
<br />
|
|
<br />
|
|
You will earn {earnedFees}.
|
|
</>
|
|
) : outcome === 'CANCEL' ? (
|
|
<>All trades will be returned with no fees.</>
|
|
) : outcome === 'MKT' ? (
|
|
<Col className="gap-6">
|
|
<div>Traders will be paid out at the probability you specify:</div>
|
|
<ProbabilitySelector
|
|
probabilityInt={Math.round(prob)}
|
|
setProbabilityInt={setProb}
|
|
/>
|
|
You will earn {earnedFees}.
|
|
</Col>
|
|
) : (
|
|
<>Resolving this market will immediately pay out traders.</>
|
|
)}
|
|
</div>
|
|
|
|
<Spacer h={4} />
|
|
|
|
{!!error && <div className="text-red-500">{error}</div>}
|
|
|
|
<ResolveConfirmationButton
|
|
onResolve={resolve}
|
|
isSubmitting={isSubmitting}
|
|
openModalButtonClass={clsx('w-full mt-2', submitButtonClass)}
|
|
submitButtonClass={submitButtonClass}
|
|
/>
|
|
</Col>
|
|
)
|
|
}
|