2022-06-01 02:42:35 +00:00
|
|
|
import { BinaryContract } from 'common/contract'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { User } from 'common/user'
|
2022-04-20 14:13:39 +00:00
|
|
|
import { useState } from 'react'
|
|
|
|
import { Col } from './layout/col'
|
|
|
|
import { Row } from './layout/row'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { formatWithCommas } from 'common/util/format'
|
2022-04-20 14:13:39 +00:00
|
|
|
import { OutcomeLabel } from './outcome-label'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { useUserContractBets } from 'web/hooks/use-user-bets'
|
2022-04-20 14:13:39 +00:00
|
|
|
import { useSaveShares } from './use-save-shares'
|
|
|
|
import { SellSharesModal } from './sell-modal'
|
|
|
|
|
|
|
|
export function SellRow(props: {
|
2022-06-01 02:42:35 +00:00
|
|
|
contract: BinaryContract
|
2022-04-20 14:13:39 +00:00
|
|
|
user: User | null | undefined
|
|
|
|
className?: string
|
|
|
|
}) {
|
|
|
|
const { className, contract, user } = props
|
|
|
|
|
|
|
|
const userBets = useUserContractBets(user?.id, contract.id)
|
|
|
|
const [showSellModal, setShowSellModal] = useState(false)
|
|
|
|
|
|
|
|
const { mechanism } = contract
|
|
|
|
const { yesFloorShares, noFloorShares, yesShares, noShares } = useSaveShares(
|
|
|
|
contract,
|
|
|
|
userBets
|
|
|
|
)
|
|
|
|
const floorShares = yesFloorShares || noFloorShares
|
|
|
|
const sharesOutcome = yesFloorShares
|
|
|
|
? 'YES'
|
|
|
|
: noFloorShares
|
|
|
|
? 'NO'
|
|
|
|
: undefined
|
|
|
|
|
|
|
|
if (sharesOutcome && user && mechanism === 'cpmm-1') {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Col className={className}>
|
|
|
|
<Row className="items-center justify-between gap-2 ">
|
|
|
|
<div>
|
|
|
|
You have {formatWithCommas(floorShares)}{' '}
|
|
|
|
<OutcomeLabel
|
|
|
|
outcome={sharesOutcome}
|
|
|
|
contract={contract}
|
|
|
|
truncate={'short'}
|
|
|
|
/>{' '}
|
|
|
|
shares
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button
|
|
|
|
className="btn btn-sm"
|
|
|
|
style={{
|
|
|
|
backgroundColor: 'white',
|
|
|
|
border: '2px solid',
|
|
|
|
color: '#3D4451',
|
|
|
|
}}
|
|
|
|
onClick={() => setShowSellModal(true)}
|
|
|
|
>
|
|
|
|
Sell
|
|
|
|
</button>
|
|
|
|
</Row>
|
|
|
|
</Col>
|
|
|
|
{showSellModal && (
|
|
|
|
<SellSharesModal
|
2022-06-01 02:42:35 +00:00
|
|
|
contract={contract}
|
2022-04-20 14:13:39 +00:00
|
|
|
user={user}
|
|
|
|
userBets={userBets ?? []}
|
|
|
|
shares={yesShares || noShares}
|
|
|
|
sharesOutcome={sharesOutcome}
|
|
|
|
setOpen={setShowSellModal}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return <div />
|
|
|
|
}
|