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-01-12 19:01:04 +00:00
|
|
|
import {
|
|
|
|
Contract,
|
|
|
|
contractPath,
|
2022-02-17 23:00:19 +00:00
|
|
|
getBinaryProbPercent,
|
2022-05-24 06:44:16 +00:00
|
|
|
listenForContract,
|
2022-05-09 13:04:36 +00:00
|
|
|
} 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 {
|
|
|
|
Binary,
|
|
|
|
CPMM,
|
|
|
|
DPM,
|
|
|
|
FreeResponse,
|
|
|
|
FreeResponseContract,
|
|
|
|
FullContract,
|
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,
|
|
|
|
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 06:44:16 +00:00
|
|
|
import { useEffect, useState } from 'react'
|
|
|
|
import { QuickBet, QuickOutcomeView, ProbBar, getColor } from './quick-bet'
|
|
|
|
import { useContractWithPreload } from 'web/hooks/use-contract'
|
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-01-02 19:09:01 +00:00
|
|
|
|
2022-05-16 23:15:22 +00:00
|
|
|
const marketClosed = (contract.closeTime || Infinity) < Date.now()
|
2022-05-24 06:44:16 +00:00
|
|
|
const showQuickBet = !(
|
|
|
|
marketClosed ||
|
|
|
|
(outcomeType === 'FREE_RESPONSE' && getTopAnswer(contract) === undefined)
|
|
|
|
)
|
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 06:44:16 +00:00
|
|
|
<Row className={clsx(showQuickBet ? 'divide-x' : '')}>
|
|
|
|
<Col className="relative flex-1 gap-3 pr-1">
|
|
|
|
<div
|
|
|
|
className={clsx(
|
|
|
|
'peer absolute -left-6 -top-4 -bottom-4 z-10',
|
|
|
|
// Hack: Extend the clickable area for closed markets
|
|
|
|
showQuickBet ? 'right-0' : 'right-[-6.5rem]'
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<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 06:44:16 +00:00
|
|
|
className="break-words font-medium 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-24 06:44:16 +00:00
|
|
|
{outcomeType === 'FREE_RESPONSE' && (
|
|
|
|
<FreeResponseTopAnswer
|
|
|
|
contract={contract as FullContract<DPM, FreeResponse>}
|
|
|
|
truncate="long"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<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 ? (
|
|
|
|
<QuickBet contract={contract} />
|
|
|
|
) : (
|
|
|
|
<Col className="m-auto pl-2">
|
|
|
|
<QuickOutcomeView contract={contract} />
|
|
|
|
</Col>
|
2022-05-19 17:42:03 +00:00
|
|
|
)}
|
2022-01-18 22:55:39 +00:00
|
|
|
</Row>
|
2022-05-24 06:44:16 +00:00
|
|
|
<ProbBar contract={contract} />
|
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: {
|
|
|
|
contract: FullContract<DPM | CPMM, Binary>
|
2022-01-02 20:53:42 +00:00
|
|
|
large?: boolean
|
|
|
|
className?: string
|
2022-05-24 06:44:16 +00:00
|
|
|
hideText?: boolean
|
2022-01-02 20:53:42 +00:00
|
|
|
}) {
|
2022-05-24 06:44:16 +00:00
|
|
|
const { contract, large, className, hideText } = 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 06:44:16 +00:00
|
|
|
{!hideText && (
|
|
|
|
<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-05-24 06:44:16 +00:00
|
|
|
hideText?: boolean
|
2022-04-18 23:02:40 +00:00
|
|
|
}) {
|
2022-05-24 06:44:16 +00:00
|
|
|
const { contract, truncate, className, hideText } = 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 ? (
|
|
|
|
<>
|
|
|
|
<div className={clsx('text-base text-gray-500')}>Resolved</div>
|
|
|
|
<FreeResponseOutcomeLabel
|
|
|
|
contract={contract}
|
|
|
|
resolution={resolution}
|
|
|
|
truncate={truncate}
|
2022-04-20 03:31:41 +00:00
|
|
|
answerClassName="text-xl"
|
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 06:44:16 +00:00
|
|
|
{!hideText && <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 06:44:16 +00:00
|
|
|
hideText?: boolean
|
2022-05-19 17:42:03 +00:00
|
|
|
}) {
|
2022-05-24 06:44:16 +00:00
|
|
|
const { contract, className, hideText } = 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>
|
|
|
|
<div className="text-blue-400">{resolutionValue}</div>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
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 06:44:16 +00:00
|
|
|
{!hideText && (
|
|
|
|
<div className={clsx('text-base', textColor)}>expected</div>
|
|
|
|
)}
|
2022-05-19 17:42:03 +00:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|