224 lines
6.3 KiB
TypeScript
224 lines
6.3 KiB
TypeScript
import clsx from 'clsx'
|
|
import Link from 'next/link'
|
|
import { Row } from '../components/layout/row'
|
|
import { formatMoney } from '../lib/util/format'
|
|
import { UserLink } from './user-page'
|
|
import {
|
|
Contract,
|
|
contractMetrics,
|
|
contractPath,
|
|
} from '../lib/firebase/contracts'
|
|
import { Col } from './layout/col'
|
|
import { parseTags } from '../../common/util/parse'
|
|
import dayjs from 'dayjs'
|
|
import { TrendingUpIcon, ClockIcon } from '@heroicons/react/solid'
|
|
import { DateTimeTooltip } from './datetime-tooltip'
|
|
import { CompactTagsList } from './tags-list'
|
|
|
|
export function ContractCard(props: {
|
|
contract: Contract
|
|
showHotVolume?: boolean
|
|
showCloseTime?: boolean
|
|
className?: string
|
|
}) {
|
|
const { contract, showHotVolume, showCloseTime, className } = props
|
|
const { question, resolution } = contract
|
|
const { probPercent } = contractMetrics(contract)
|
|
|
|
return (
|
|
<div>
|
|
<div
|
|
className={clsx(
|
|
'bg-white hover:bg-gray-100 shadow-md rounded-lg p-6 relative',
|
|
className
|
|
)}
|
|
>
|
|
<Link href={contractPath(contract)}>
|
|
<a className="absolute left-0 right-0 top-0 bottom-0" />
|
|
</Link>
|
|
<Row className="justify-between gap-4 mb-2">
|
|
<p className="font-medium text-indigo-700">{question}</p>
|
|
<ResolutionOrChance
|
|
className="items-center"
|
|
resolution={resolution}
|
|
probPercent={probPercent}
|
|
/>
|
|
</Row>
|
|
<AbbrContractDetails
|
|
contract={contract}
|
|
showHotVolume={showHotVolume}
|
|
showCloseTime={showCloseTime}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function ResolutionOrChance(props: {
|
|
resolution?: 'YES' | 'NO' | 'MKT' | 'CANCEL'
|
|
probPercent: string
|
|
large?: boolean
|
|
className?: string
|
|
}) {
|
|
const { resolution, probPercent, large, className } = props
|
|
|
|
const resolutionColor = {
|
|
YES: 'text-primary',
|
|
NO: 'text-red-400',
|
|
MKT: 'text-blue-400',
|
|
CANCEL: 'text-yellow-400',
|
|
'': '', // Empty if unresolved
|
|
}[resolution || '']
|
|
|
|
const resolutionText = {
|
|
YES: 'YES',
|
|
NO: 'NO',
|
|
MKT: 'MKT',
|
|
CANCEL: 'N/A',
|
|
'': '',
|
|
}[resolution || '']
|
|
|
|
return (
|
|
<Col className={clsx(large ? 'text-4xl' : 'text-3xl', className)}>
|
|
{resolution ? (
|
|
<>
|
|
<div
|
|
className={clsx('text-gray-500', large ? 'text-xl' : 'text-base')}
|
|
>
|
|
Resolved
|
|
</div>
|
|
<div className={resolutionColor}>{resolutionText}</div>
|
|
</>
|
|
) : (
|
|
<>
|
|
<div className="text-primary">{probPercent}</div>
|
|
<div
|
|
className={clsx('text-primary', large ? 'text-xl' : 'text-base')}
|
|
>
|
|
chance
|
|
</div>
|
|
</>
|
|
)}
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
export function AbbrContractDetails(props: {
|
|
contract: Contract
|
|
showHotVolume?: boolean
|
|
showCloseTime?: boolean
|
|
}) {
|
|
const { contract, showHotVolume, showCloseTime } = props
|
|
const { volume24Hours, creatorName, creatorUsername, closeTime } = contract
|
|
const { truePool } = contractMetrics(contract)
|
|
|
|
return (
|
|
<Col className={clsx('text-sm text-gray-500 gap-2')}>
|
|
<Row className="gap-2 flex-wrap">
|
|
<UserLink
|
|
className="whitespace-nowrap"
|
|
name={creatorName}
|
|
username={creatorUsername}
|
|
/>
|
|
<div>•</div>
|
|
{showHotVolume ? (
|
|
<div className="whitespace-nowrap">
|
|
<TrendingUpIcon className="h-5 w-5 text-gray-500 inline" />{' '}
|
|
{formatMoney(volume24Hours)}
|
|
</div>
|
|
) : showCloseTime ? (
|
|
<div className="whitespace-nowrap">
|
|
<ClockIcon className="h-5 w-5 text-gray-400 inline" />{' '}
|
|
{dayjs(closeTime).format('MMM D')}
|
|
</div>
|
|
) : (
|
|
<div className="whitespace-nowrap">{formatMoney(truePool)} pool</div>
|
|
)}
|
|
</Row>
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
export function ContractDetails(props: { contract: Contract }) {
|
|
const { contract } = props
|
|
const { question, description, closeTime, creatorName, creatorUsername } =
|
|
contract
|
|
const { truePool, createdDate, resolvedDate } = contractMetrics(contract)
|
|
|
|
const tags = parseTags(`${question} ${description}`).map((tag) => `#${tag}`)
|
|
|
|
return (
|
|
<Col className="text-sm text-gray-500 gap-2 sm:flex-row sm:flex-wrap">
|
|
<Row className="gap-2 flex-wrap">
|
|
<UserLink
|
|
className="whitespace-nowrap"
|
|
name={creatorName}
|
|
username={creatorUsername}
|
|
/>
|
|
<div className="">•</div>
|
|
|
|
<div className="whitespace-nowrap">
|
|
<DateTimeTooltip text="Market created:" time={contract.createdTime}>
|
|
{createdDate}
|
|
</DateTimeTooltip>
|
|
|
|
{resolvedDate && contract.resolutionTime ? (
|
|
<>
|
|
{' - '}
|
|
<DateTimeTooltip
|
|
text="Market resolved:"
|
|
time={contract.resolutionTime}
|
|
>
|
|
{resolvedDate}
|
|
</DateTimeTooltip>
|
|
</>
|
|
) : null}
|
|
|
|
{!resolvedDate && closeTime && (
|
|
<>
|
|
{' - '}
|
|
<DateTimeTooltip
|
|
text={
|
|
closeTime > Date.now() ? 'Trading ends:' : 'Trading ended:'
|
|
}
|
|
time={closeTime}
|
|
>
|
|
{dayjs(closeTime).format('MMM D, YYYY')}
|
|
</DateTimeTooltip>
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
<div className="">•</div>
|
|
<div className="whitespace-nowrap">{formatMoney(truePool)} pool</div>
|
|
</Row>
|
|
|
|
{tags.length > 0 && (
|
|
<>
|
|
<div className="hidden sm:block">•</div>
|
|
<CompactTagsList tags={tags} />
|
|
</>
|
|
)}
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
// String version of the above, to send to the OpenGraph image generator
|
|
export function contractTextDetails(contract: Contract) {
|
|
const { question, description, closeTime } = contract
|
|
const { truePool, createdDate, resolvedDate } = contractMetrics(contract)
|
|
|
|
const tags = parseTags(`${question} ${description}`).map((tag) => `#${tag}`)
|
|
|
|
return (
|
|
`${resolvedDate ? `${createdDate} - ${resolvedDate}` : createdDate}` +
|
|
(closeTime
|
|
? ` • ${closeTime > Date.now() ? 'Closes' : 'Closed'} ${dayjs(
|
|
closeTime
|
|
).format('MMM D, h:mma')}`
|
|
: '') +
|
|
` • ${formatMoney(truePool)} pool` +
|
|
(tags.length > 0 ? ` • ${tags.join(' ')}` : '')
|
|
)
|
|
}
|