2022-01-02 19:09:01 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
import Link from 'next/link'
|
2022-04-07 21:15:51 +00:00
|
|
|
import { Row } from '../layout/row'
|
2022-05-20 19:25:32 +00:00
|
|
|
import { formatLargeNumber, formatPercent } from 'common/util/format'
|
2022-06-01 02:42:35 +00:00
|
|
|
import { contractPath, getBinaryProbPercent } from 'web/lib/firebase/contracts'
|
2022-04-07 21:15:51 +00:00
|
|
|
import { Col } from '../layout/col'
|
2022-04-18 23:02:40 +00:00
|
|
|
import {
|
2022-06-01 02:42:35 +00:00
|
|
|
Contract,
|
|
|
|
BinaryContract,
|
2022-04-18 23:02:40 +00:00
|
|
|
FreeResponseContract,
|
2022-05-19 17:42:03 +00:00
|
|
|
NumericContract,
|
2022-05-09 13:04:36 +00:00
|
|
|
} from 'common/contract'
|
2022-04-18 23:02:40 +00:00
|
|
|
import {
|
2022-04-19 02:44:31 +00:00
|
|
|
AnswerLabel,
|
2022-04-18 23:02:40 +00:00
|
|
|
BinaryContractOutcomeLabel,
|
2022-05-26 14:39:06 +00:00
|
|
|
CancelLabel,
|
2022-04-18 23:02:40 +00:00
|
|
|
FreeResponseOutcomeLabel,
|
|
|
|
} from '../outcome-label'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { getOutcomeProbability, getTopAnswer } from 'common/calculate'
|
2022-05-24 06:44:16 +00:00
|
|
|
import { AvatarDetails, MiscDetails } from './contract-details'
|
2022-05-19 17:42:03 +00:00
|
|
|
import { getExpectedValue, getValueFromBucket } from 'common/calculate-dpm'
|
2022-05-24 23:38:43 +00:00
|
|
|
import { QuickBet, ProbBar, getColor } from './quick-bet'
|
2022-05-24 06:44:16 +00:00
|
|
|
import { useContractWithPreload } from 'web/hooks/use-contract'
|
2022-05-28 20:36:16 +00:00
|
|
|
import { useUser } from 'web/hooks/use-user'
|
2022-01-02 19:09:01 +00:00
|
|
|
|
2022-01-09 21:21:30 +00:00
|
|
|
export function ContractCard(props: {
|
|
|
|
contract: Contract
|
|
|
|
showHotVolume?: boolean
|
2022-01-17 22:54:00 +00:00
|
|
|
showCloseTime?: boolean
|
2022-01-14 06:55:35 +00:00
|
|
|
className?: string
|
2022-01-09 21:21:30 +00:00
|
|
|
}) {
|
2022-05-24 06:44:16 +00:00
|
|
|
const { showHotVolume, showCloseTime, className } = props
|
|
|
|
const contract = useContractWithPreload(props.contract) ?? props.contract
|
2022-05-16 23:15:22 +00:00
|
|
|
const { question, outcomeType } = contract
|
2022-05-25 13:13:33 +00:00
|
|
|
const { resolution } = contract
|
2022-01-02 19:09:01 +00:00
|
|
|
|
2022-05-28 20:36:16 +00:00
|
|
|
const user = useUser()
|
|
|
|
|
|
|
|
const marketClosed =
|
|
|
|
(contract.closeTime || Infinity) < Date.now() || !!resolution
|
|
|
|
|
2022-05-24 06:44:16 +00:00
|
|
|
const showQuickBet = !(
|
2022-05-28 20:36:16 +00:00
|
|
|
!user ||
|
2022-05-24 06:44:16 +00:00
|
|
|
marketClosed ||
|
2022-05-28 20:36:16 +00:00
|
|
|
(outcomeType === 'FREE_RESPONSE' && getTopAnswer(contract) === undefined) ||
|
|
|
|
outcomeType === 'NUMERIC'
|
2022-05-24 06:44:16 +00:00
|
|
|
)
|
2022-05-12 23:28:21 +00:00
|
|
|
|
2022-01-02 19:09:01 +00:00
|
|
|
return (
|
2022-01-18 22:55:39 +00:00
|
|
|
<div>
|
2022-05-12 23:28:21 +00:00
|
|
|
<Col
|
2022-01-18 22:55:39 +00:00
|
|
|
className={clsx(
|
2022-05-24 06:44:16 +00:00
|
|
|
'relative gap-3 rounded-lg bg-white py-4 pl-6 pr-5 shadow-md hover:cursor-pointer hover:bg-gray-100',
|
2022-01-18 22:55:39 +00:00
|
|
|
className
|
|
|
|
)}
|
|
|
|
>
|
2022-05-24 23:38:43 +00:00
|
|
|
<Row>
|
2022-05-24 06:44:16 +00:00
|
|
|
<Col className="relative flex-1 gap-3 pr-1">
|
|
|
|
<div
|
|
|
|
className={clsx(
|
2022-06-01 01:07:26 +00:00
|
|
|
'peer absolute -left-6 -top-4 -bottom-4 right-0 z-10'
|
2022-05-24 06:44:16 +00:00
|
|
|
)}
|
|
|
|
>
|
|
|
|
<Link href={contractPath(contract)}>
|
|
|
|
<a className="absolute top-0 left-0 right-0 bottom-0" />
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
<AvatarDetails contract={contract} />
|
2022-05-12 23:28:21 +00:00
|
|
|
<p
|
2022-05-24 23:39:42 +00:00
|
|
|
className="break-words font-semibold text-indigo-700 peer-hover:underline peer-hover:decoration-indigo-400 peer-hover:decoration-2"
|
2022-05-12 23:28:21 +00:00
|
|
|
style={{ /* For iOS safari */ wordBreak: 'break-word' }}
|
|
|
|
>
|
|
|
|
{question}
|
|
|
|
</p>
|
2022-05-19 17:42:03 +00:00
|
|
|
|
2022-05-25 13:13:33 +00:00
|
|
|
{outcomeType === 'FREE_RESPONSE' &&
|
|
|
|
(resolution ? (
|
|
|
|
<FreeResponseOutcomeLabel
|
2022-06-01 02:42:35 +00:00
|
|
|
contract={contract}
|
2022-05-25 13:13:33 +00:00
|
|
|
resolution={resolution}
|
|
|
|
truncate={'long'}
|
|
|
|
/>
|
|
|
|
) : (
|
2022-06-01 02:42:35 +00:00
|
|
|
<FreeResponseTopAnswer contract={contract} truncate="long" />
|
2022-05-25 13:13:33 +00:00
|
|
|
))}
|
2022-05-24 06:44:16 +00:00
|
|
|
|
|
|
|
<MiscDetails
|
|
|
|
contract={contract}
|
|
|
|
showHotVolume={showHotVolume}
|
|
|
|
showCloseTime={showCloseTime}
|
2022-05-19 17:42:03 +00:00
|
|
|
/>
|
2022-05-24 06:44:16 +00:00
|
|
|
</Col>
|
|
|
|
{showQuickBet ? (
|
2022-05-28 20:36:16 +00:00
|
|
|
<QuickBet contract={contract} user={user} />
|
2022-05-24 06:44:16 +00:00
|
|
|
) : (
|
|
|
|
<Col className="m-auto pl-2">
|
2022-05-24 23:38:43 +00:00
|
|
|
{outcomeType === 'BINARY' && (
|
|
|
|
<BinaryResolutionOrChance
|
|
|
|
className="items-center"
|
|
|
|
contract={contract}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{outcomeType === 'NUMERIC' && (
|
|
|
|
<NumericResolutionOrExpectation
|
|
|
|
className="items-center"
|
2022-06-01 02:42:35 +00:00
|
|
|
contract={contract}
|
2022-05-24 23:38:43 +00:00
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{outcomeType === 'FREE_RESPONSE' && (
|
|
|
|
<FreeResponseResolutionOrChance
|
|
|
|
className="self-end text-gray-600"
|
2022-06-01 02:42:35 +00:00
|
|
|
contract={contract}
|
2022-05-24 23:38:43 +00:00
|
|
|
truncate="long"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<ProbBar contract={contract} />
|
2022-05-24 06:44:16 +00:00
|
|
|
</Col>
|
2022-05-19 17:42:03 +00:00
|
|
|
)}
|
2022-01-18 22:55:39 +00:00
|
|
|
</Row>
|
2022-05-12 23:28:21 +00:00
|
|
|
</Col>
|
2022-01-14 22:59:14 +00:00
|
|
|
</div>
|
2022-01-02 19:09:01 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-04-18 23:02:40 +00:00
|
|
|
export function BinaryResolutionOrChance(props: {
|
2022-06-01 02:42:35 +00:00
|
|
|
contract: BinaryContract
|
2022-01-02 20:53:42 +00:00
|
|
|
large?: boolean
|
|
|
|
className?: string
|
|
|
|
}) {
|
2022-05-24 23:38:43 +00:00
|
|
|
const { contract, large, className } = props
|
2022-04-18 23:02:40 +00:00
|
|
|
const { resolution } = contract
|
2022-05-16 23:15:22 +00:00
|
|
|
const textColor = `text-${getColor(contract)}`
|
2022-02-14 21:33:47 +00:00
|
|
|
|
2022-01-02 20:53:42 +00:00
|
|
|
return (
|
|
|
|
<Col className={clsx(large ? 'text-4xl' : 'text-3xl', className)}>
|
|
|
|
{resolution ? (
|
|
|
|
<>
|
|
|
|
<div
|
|
|
|
className={clsx('text-gray-500', large ? 'text-xl' : 'text-base')}
|
|
|
|
>
|
|
|
|
Resolved
|
|
|
|
</div>
|
2022-04-18 23:02:40 +00:00
|
|
|
<BinaryContractOutcomeLabel
|
|
|
|
contract={contract}
|
|
|
|
resolution={resolution}
|
|
|
|
/>
|
2022-01-02 20:53:42 +00:00
|
|
|
</>
|
|
|
|
) : (
|
2022-04-18 23:02:40 +00:00
|
|
|
<>
|
2022-05-16 23:15:22 +00:00
|
|
|
<div className={textColor}>{getBinaryProbPercent(contract)}</div>
|
2022-05-24 23:38:43 +00:00
|
|
|
<div className={clsx(textColor, large ? 'text-xl' : 'text-base')}>
|
|
|
|
chance
|
|
|
|
</div>
|
2022-04-18 23:02:40 +00:00
|
|
|
</>
|
2022-01-02 20:53:42 +00:00
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-24 06:44:16 +00:00
|
|
|
function FreeResponseTopAnswer(props: {
|
|
|
|
contract: FreeResponseContract
|
|
|
|
truncate: 'short' | 'long' | 'none'
|
|
|
|
className?: string
|
|
|
|
}) {
|
|
|
|
const { contract, truncate } = props
|
|
|
|
|
|
|
|
const topAnswer = getTopAnswer(contract)
|
|
|
|
|
|
|
|
return topAnswer ? (
|
|
|
|
<AnswerLabel
|
|
|
|
className="!text-gray-600"
|
|
|
|
answer={topAnswer}
|
|
|
|
truncate={truncate}
|
|
|
|
/>
|
|
|
|
) : null
|
|
|
|
}
|
|
|
|
|
2022-04-19 02:44:31 +00:00
|
|
|
export function FreeResponseResolutionOrChance(props: {
|
2022-04-18 23:02:40 +00:00
|
|
|
contract: FreeResponseContract
|
|
|
|
truncate: 'short' | 'long' | 'none'
|
2022-04-20 03:31:41 +00:00
|
|
|
className?: string
|
2022-04-18 23:02:40 +00:00
|
|
|
}) {
|
2022-05-24 23:38:43 +00:00
|
|
|
const { contract, truncate, className } = props
|
2022-04-19 02:44:31 +00:00
|
|
|
const { resolution } = contract
|
|
|
|
|
|
|
|
const topAnswer = getTopAnswer(contract)
|
2022-05-16 23:15:22 +00:00
|
|
|
const textColor = `text-${getColor(contract)}`
|
2022-04-19 02:44:31 +00:00
|
|
|
|
2022-04-18 23:02:40 +00:00
|
|
|
return (
|
2022-04-20 03:31:41 +00:00
|
|
|
<Col className={clsx(resolution ? 'text-3xl' : 'text-xl', className)}>
|
2022-04-19 02:44:31 +00:00
|
|
|
{resolution ? (
|
|
|
|
<>
|
2022-05-25 13:13:33 +00:00
|
|
|
<div className={clsx('text-base text-gray-500 sm:hidden')}>
|
|
|
|
Resolved
|
|
|
|
</div>
|
|
|
|
{(resolution === 'CANCEL' || resolution === 'MKT') && (
|
|
|
|
<FreeResponseOutcomeLabel
|
|
|
|
contract={contract}
|
|
|
|
resolution={resolution}
|
|
|
|
truncate={truncate}
|
|
|
|
answerClassName="text-3xl uppercase text-blue-500"
|
|
|
|
/>
|
|
|
|
)}
|
2022-04-19 02:44:31 +00:00
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
topAnswer && (
|
2022-04-20 03:31:41 +00:00
|
|
|
<Row className="items-center gap-6">
|
2022-05-16 23:15:22 +00:00
|
|
|
<Col className={clsx('text-3xl', textColor)}>
|
2022-04-19 02:44:31 +00:00
|
|
|
<div>
|
|
|
|
{formatPercent(getOutcomeProbability(contract, topAnswer.id))}
|
|
|
|
</div>
|
2022-05-24 23:38:43 +00:00
|
|
|
<div className="text-base">chance</div>
|
2022-04-19 02:44:31 +00:00
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
)}
|
2022-04-18 23:02:40 +00:00
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
2022-05-19 17:42:03 +00:00
|
|
|
|
|
|
|
export function NumericResolutionOrExpectation(props: {
|
|
|
|
contract: NumericContract
|
|
|
|
className?: string
|
|
|
|
}) {
|
2022-05-24 23:38:43 +00:00
|
|
|
const { contract, className } = props
|
2022-05-19 17:42:03 +00:00
|
|
|
const { resolution } = contract
|
2022-05-24 06:44:16 +00:00
|
|
|
const textColor = `text-${getColor(contract)}`
|
2022-05-19 17:42:03 +00:00
|
|
|
|
|
|
|
const resolutionValue =
|
|
|
|
contract.resolutionValue ?? getValueFromBucket(resolution ?? '', contract)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Col className={clsx(resolution ? 'text-3xl' : 'text-xl', className)}>
|
|
|
|
{resolution ? (
|
|
|
|
<>
|
|
|
|
<div className={clsx('text-base text-gray-500')}>Resolved</div>
|
2022-05-26 14:39:06 +00:00
|
|
|
|
|
|
|
{resolution === 'CANCEL' ? (
|
|
|
|
<CancelLabel />
|
|
|
|
) : (
|
|
|
|
<div className="text-blue-400">{resolutionValue}</div>
|
|
|
|
)}
|
2022-05-19 17:42:03 +00:00
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
2022-05-24 06:44:16 +00:00
|
|
|
<div className={clsx('text-3xl', textColor)}>
|
2022-05-20 19:25:32 +00:00
|
|
|
{formatLargeNumber(getExpectedValue(contract))}
|
2022-05-19 17:42:03 +00:00
|
|
|
</div>
|
2022-05-24 23:38:43 +00:00
|
|
|
<div className={clsx('text-base', textColor)}>expected</div>
|
2022-05-19 17:42:03 +00:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|