manifold/web/components/contract-overview.tsx

98 lines
2.8 KiB
TypeScript
Raw Permalink Normal View History

2022-01-04 20:57:48 +00:00
import {
compute,
Contract,
deleteContract,
path,
} from '../lib/firebase/contracts'
import { Col } from './layout/col'
import { Spacer } from './layout/spacer'
2021-12-12 22:14:52 +00:00
import { ContractProbGraph } from './contract-prob-graph'
import router from 'next/router'
import { useUser } from '../hooks/use-user'
2021-12-16 10:46:41 +00:00
import { Row } from './layout/row'
2021-12-19 09:24:37 +00:00
import { Linkify } from './linkify'
2021-12-20 05:15:18 +00:00
import clsx from 'clsx'
import { ContractDetails, ResolutionOrChance } from './contract-card'
import { ContractFeed } from './contract-feed'
2022-01-04 20:57:48 +00:00
import { TweetButton } from './tweet-button'
2021-12-16 10:46:41 +00:00
2021-12-12 22:14:52 +00:00
export const ContractOverview = (props: {
contract: Contract
className?: string
}) => {
const { contract, className } = props
2022-01-04 20:57:48 +00:00
const { resolution, creatorId, creatorName } = contract
const { probPercent, truePool } = compute(contract)
const user = useUser()
const isCreator = user?.id === creatorId
2022-01-04 20:57:48 +00:00
const tweetQuestion = isCreator
? contract.question
: `${creatorName}: ${contract.question}`
const tweetDescription = resolution
? isCreator
? `Resolved ${resolution}!`
: `Resolved ${resolution} by ${creatorName}:`
: `Currently ${probPercent} chance, place your bets here:`
const url = `https://manifold.markets${path(contract)}`
2022-01-04 20:57:48 +00:00
const tweetText = `${tweetQuestion}\n\n${tweetDescription}\n\n${url}`
return (
2021-12-20 05:15:18 +00:00
<Col className={clsx('mb-6', className)}>
<Row className="justify-between gap-4">
<Col className="gap-4">
<div className="text-2xl md:text-3xl text-indigo-700">
2021-12-19 09:08:12 +00:00
<Linkify text={contract.question} />
</div>
<ResolutionOrChance
className="md:hidden"
resolution={resolution}
probPercent={probPercent}
large
/>
2022-01-05 07:06:30 +00:00
<ContractDetails contract={contract} />
2022-01-06 05:02:36 +00:00
<TweetButton className="self-end md:hidden" tweetText={tweetText} />
</Col>
2022-01-06 05:02:36 +00:00
<Col className="hidden md:flex justify-between items-end">
<ResolutionOrChance
className="items-end"
resolution={resolution}
probPercent={probPercent}
large
/>
<TweetButton className="mt-6" tweetText={tweetText} />
</Col>
</Row>
<Spacer h={4} />
2021-12-12 22:14:52 +00:00
<ContractProbGraph contract={contract} />
<Spacer h={12} />
{/* Show a delete button for contracts without any trading */}
{isCreator && truePool === 0 && (
<>
<Spacer h={8} />
<button
className="btn btn-xs btn-error btn-outline mt-1 max-w-fit self-end"
onClick={async (e) => {
e.preventDefault()
await deleteContract(contract.id)
router.push('/markets')
}}
>
Delete
</button>
</>
)}
<ContractFeed contract={contract} />
</Col>
)
}