import { Binary, CPMM, DPM, FullContract } from '../../common/contract' import { User } from '../../common/user' import { useUserContractBets } from '../hooks/use-user-bets' import { useState } from 'react' import { Col } from './layout/col' import clsx from 'clsx' import { SellSharesModal } from './sell-modal' export function SellButton(props: { contract: FullContract user: User | null | undefined sharesOutcome: 'YES' | 'NO' | undefined shares: number }) { const { contract, user, sharesOutcome, shares } = props const userBets = useUserContractBets(user?.id, contract.id) const [showSellModal, setShowSellModal] = useState(false) const { mechanism } = contract if (sharesOutcome && user && mechanism === 'cpmm-1') { return (
{'(' + Math.floor(shares) + ' shares)'}
{showSellModal && ( } user={user} userBets={userBets ?? []} shares={shares} sharesOutcome={sharesOutcome} setOpen={setShowSellModal} /> )} ) } return
}