manifold/web/components/bet-row.tsx
Ian Philips 8905bfbfc8 Allow sell row to show just a button
This is nice for the feed and on a bet's mobile interface.
2022-04-19 15:04:49 -06:00

76 lines
2.3 KiB
TypeScript

import clsx from 'clsx'
import { useState } from 'react'
import { BetPanelSwitcher, useSaveShares } from './bet-panel'
import { Row } from './layout/row'
import { YesNoSelector } from './yes-no-selector'
import { Binary, CPMM, DPM, FullContract } from '../../common/contract'
import { Modal } from './layout/modal'
import { SellRow } from './sell-row'
import { useUser } from '../hooks/use-user'
import { useUserContractBets } from '../hooks/use-user-bets'
// Inline version of a bet panel. Opens BetPanel in a new modal.
export default function BetRow(props: {
contract: FullContract<DPM | CPMM, Binary>
className?: string
labelClassName?: string
}) {
const { className, labelClassName } = props
const [open, setOpen] = useState(false)
const [betChoice, setBetChoice] = useState<'YES' | 'NO' | undefined>(
undefined
)
const user = useUser()
const userBets = useUserContractBets(user?.id, props.contract.id)
const { yesFloorShares, noFloorShares } = useSaveShares(
props.contract,
userBets
)
return (
<>
<div className={className}>
<Row className="mt-2 justify-end space-x-3">
{/* <div className={clsx('mr-2 text-gray-400', labelClassName)}>
Place a trade
</div> */}
<YesNoSelector
btnClassName="btn-sm w-24"
onSelect={(choice) => {
setOpen(true)
setBetChoice(choice)
}}
replaceNoButton={
yesFloorShares > noFloorShares && yesFloorShares > 0 ? (
<SellRow
contract={props.contract}
user={user}
buttonOnly={true}
/>
) : undefined
}
replaceYesButton={
noFloorShares > yesFloorShares && noFloorShares > 0 ? (
<SellRow
contract={props.contract}
user={user}
buttonOnly={true}
/>
) : undefined
}
/>
</Row>
<Modal open={open} setOpen={setOpen}>
<BetPanelSwitcher
contract={props.contract}
title={props.contract.question}
selected={betChoice}
onBetSuccess={() => setOpen(false)}
/>
</Modal>
</div>
</>
)
}