import { Binary, CPMM, DPM, FullContract } from 'common/contract' import { User } from 'common/user' import { useUserContractBets } from 'web/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 panelClassName?: string }) { const { contract, user, sharesOutcome, shares, panelClassName } = 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
}