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 { resolveMarket } from 'web/lib/firebase/fn-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() const [prob, setProb] = useState(getProbability(contract) * 100) const [isSubmitting, setIsSubmitting] = useState(false) const [error, setError] = useState(undefined) const resolve = async () => { if (!outcome) return setIsSubmitting(true) const result = await resolveMarket({ outcome, contractId: contract.id, probabilityInt: prob, }).then((r) => r.data) console.log('resolved', outcome, 'result:', result) if (result?.status !== 'success') { setError(result?.message || '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 (
Resolve market
Outcome
{outcome === 'YES' ? ( <> Winnings will be paid out to YES bettors.

You will earn {earnedFees}. ) : outcome === 'NO' ? ( <> Winnings will be paid out to NO bettors.

You will earn {earnedFees}. ) : outcome === 'CANCEL' ? ( <>All trades will be returned with no fees. ) : outcome === 'MKT' ? (
Traders will be paid out at the probability you specify:
You will earn {earnedFees}. ) : ( <>Resolving this market will immediately pay out traders. )}
{!!error &&
{error}
} ) }