import clsx from 'clsx' import React, { 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' import { ProbabilitySelector } from './probability-selector' import { getProbability } from 'common/calculate' import { BinaryContract, resolution } from 'common/contract' import { BETTOR, BETTORS, PAST_BETS } from 'common/user' import { Row } from 'web/components/layout/row' import { capitalize } from 'lodash' export function ResolutionPanel(props: { isAdmin: boolean isCreator: boolean creator: User contract: BinaryContract className?: string }) { const { contract, className, isAdmin, isCreator } = 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) 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) } return ( {isAdmin && !isCreator && ( ADMIN )}
Resolve market
Outcome
{outcome === 'YES' ? ( <> Winnings will be paid out to {BETTORS} who bought YES. {/*

You will earn {earnedFees}. */} ) : outcome === 'NO' ? ( <> Winnings will be paid out to {BETTORS} who bought NO. {/*

You will earn {earnedFees}. */} ) : outcome === 'CANCEL' ? ( <> All {PAST_BETS} will be returned. Unique {BETTOR} bonuses will be withdrawn from your account ) : outcome === 'MKT' ? (
{capitalize(PAST_BETS)} will be paid out at the probability you specify:
{/* You will earn {earnedFees}. */} ) : ( <>Resolving this market will immediately pay out {BETTORS}. )}
{!!error &&
{error}
} ) }