143 lines
4.7 KiB
TypeScript
143 lines
4.7 KiB
TypeScript
import React from 'react'
|
|
import clsx from 'clsx'
|
|
|
|
import { tradingAllowed } from 'web/lib/firebase/contracts'
|
|
import { Col } from '../layout/col'
|
|
import { Spacer } from '../layout/spacer'
|
|
import { ContractProbGraph } from './contract-prob-graph'
|
|
import { useUser } from 'web/hooks/use-user'
|
|
import { Row } from '../layout/row'
|
|
import { Linkify } from '../linkify'
|
|
import {
|
|
BinaryResolutionOrChance,
|
|
FreeResponseResolutionOrChance,
|
|
NumericResolutionOrExpectation,
|
|
PseudoNumericResolutionOrExpectation,
|
|
} from './contract-card'
|
|
import { Bet } from 'common/bet'
|
|
import BetButton from '../bet-button'
|
|
import { AnswersGraph } from '../answers/answers-graph'
|
|
import { Contract, CPMMBinaryContract } from 'common/contract'
|
|
import { ContractDescription } from './contract-description'
|
|
import { ContractDetails } from './contract-details'
|
|
import { NumericGraph } from './numeric-graph'
|
|
import { ShareRow } from './share-row'
|
|
import { FollowMarketButton } from 'web/components/follow-market-button'
|
|
|
|
export const ContractOverview = (props: {
|
|
contract: Contract
|
|
bets: Bet[]
|
|
className?: string
|
|
}) => {
|
|
const { contract, bets, className } = props
|
|
const { question, creatorId, outcomeType, resolution } = contract
|
|
|
|
const user = useUser()
|
|
const isCreator = user?.id === creatorId
|
|
|
|
const isBinary = outcomeType === 'BINARY'
|
|
const isPseudoNumeric = outcomeType === 'PSEUDO_NUMERIC'
|
|
|
|
return (
|
|
<Col className={clsx('mb-6', className)}>
|
|
<Col className="gap-4 px-2">
|
|
<Row className="justify-between gap-4">
|
|
<div className="text-2xl text-indigo-700 md:text-3xl">
|
|
<Linkify text={question} />
|
|
</div>
|
|
{(outcomeType === 'FREE_RESPONSE' ||
|
|
outcomeType === 'MULTIPLE_CHOICE') &&
|
|
!resolution && (
|
|
<div className={'xl:hidden'}>
|
|
<FollowMarketButton contract={contract} user={user} />
|
|
</div>
|
|
)}
|
|
<Row className={'hidden gap-3 xl:flex'}>
|
|
<div className={'mt-2'}>
|
|
<FollowMarketButton contract={contract} user={user} />
|
|
</div>
|
|
|
|
{isBinary && (
|
|
<BinaryResolutionOrChance
|
|
className="items-end"
|
|
contract={contract}
|
|
large
|
|
/>
|
|
)}
|
|
|
|
{isPseudoNumeric && (
|
|
<PseudoNumericResolutionOrExpectation
|
|
contract={contract}
|
|
className="items-end"
|
|
/>
|
|
)}
|
|
|
|
{outcomeType === 'NUMERIC' && (
|
|
<NumericResolutionOrExpectation
|
|
contract={contract}
|
|
className="items-end"
|
|
/>
|
|
)}
|
|
</Row>
|
|
</Row>
|
|
|
|
{isBinary ? (
|
|
<Row className="items-center justify-between gap-4 xl:hidden">
|
|
<BinaryResolutionOrChance contract={contract} />
|
|
<Row className={'items-start gap-2'}>
|
|
<FollowMarketButton contract={contract} user={user} />
|
|
{tradingAllowed(contract) && (
|
|
<BetButton contract={contract as CPMMBinaryContract} />
|
|
)}
|
|
</Row>
|
|
</Row>
|
|
) : isPseudoNumeric ? (
|
|
<Row className="items-center justify-between gap-4 xl:hidden">
|
|
<PseudoNumericResolutionOrExpectation contract={contract} />
|
|
<Row className={'items-start gap-2'}>
|
|
<FollowMarketButton contract={contract} user={user} />
|
|
{tradingAllowed(contract) && <BetButton contract={contract} />}
|
|
</Row>
|
|
</Row>
|
|
) : (
|
|
(outcomeType === 'FREE_RESPONSE' ||
|
|
outcomeType === 'MULTIPLE_CHOICE') &&
|
|
resolution && (
|
|
<FreeResponseResolutionOrChance
|
|
contract={contract}
|
|
truncate="none"
|
|
/>
|
|
)
|
|
)}
|
|
|
|
{outcomeType === 'NUMERIC' && (
|
|
<Row className="items-center justify-between gap-4 xl:hidden">
|
|
<NumericResolutionOrExpectation contract={contract} />
|
|
</Row>
|
|
)}
|
|
|
|
<ContractDetails
|
|
contract={contract}
|
|
bets={bets}
|
|
isCreator={isCreator}
|
|
/>
|
|
</Col>
|
|
<Spacer h={4} />
|
|
{(isBinary || isPseudoNumeric) && (
|
|
<ContractProbGraph contract={contract} bets={bets} />
|
|
)}{' '}
|
|
{(outcomeType === 'FREE_RESPONSE' ||
|
|
outcomeType === 'MULTIPLE_CHOICE') && (
|
|
<AnswersGraph contract={contract} bets={bets} />
|
|
)}
|
|
{outcomeType === 'NUMERIC' && <NumericGraph contract={contract} />}
|
|
<ShareRow user={user} contract={contract} />
|
|
<ContractDescription
|
|
className="px-2"
|
|
contract={contract}
|
|
isCreator={isCreator}
|
|
/>
|
|
</Col>
|
|
)
|
|
}
|