2022-04-07 20:52:54 +00:00
|
|
|
import { DotsHorizontalIcon } from '@heroicons/react/outline'
|
|
|
|
import clsx from 'clsx'
|
2022-04-09 23:04:13 +00:00
|
|
|
import dayjs from 'dayjs'
|
2022-04-09 23:23:24 +00:00
|
|
|
import _ from 'lodash'
|
2022-04-07 20:52:54 +00:00
|
|
|
import { useState } from 'react'
|
2022-04-13 19:11:49 +00:00
|
|
|
import { Bet } from '../../../common/bet'
|
2022-04-09 23:04:13 +00:00
|
|
|
|
2022-04-07 21:15:51 +00:00
|
|
|
import { Contract } from '../../../common/contract'
|
2022-04-09 23:04:13 +00:00
|
|
|
import { formatMoney } from '../../../common/util/format'
|
2022-04-07 21:15:51 +00:00
|
|
|
import {
|
|
|
|
contractPath,
|
|
|
|
getBinaryProbPercent,
|
|
|
|
} from '../../lib/firebase/contracts'
|
2022-04-21 17:58:12 +00:00
|
|
|
import { AddLiquidityPanel } from '../add-liquidity-panel'
|
2022-04-11 00:59:01 +00:00
|
|
|
import { CopyLinkButton } from '../copy-link-button'
|
2022-04-07 21:15:51 +00:00
|
|
|
import { Col } from '../layout/col'
|
|
|
|
import { Modal } from '../layout/modal'
|
|
|
|
import { Row } from '../layout/row'
|
|
|
|
import { ShareEmbedButton } from '../share-embed-button'
|
|
|
|
import { TagsInput } from '../tags-input'
|
|
|
|
import { Title } from '../title'
|
|
|
|
import { TweetButton } from '../tweet-button'
|
2022-04-07 20:52:54 +00:00
|
|
|
|
2022-04-13 19:11:49 +00:00
|
|
|
export function ContractInfoDialog(props: { contract: Contract; bets: Bet[] }) {
|
|
|
|
const { contract, bets } = props
|
2022-04-07 20:52:54 +00:00
|
|
|
|
|
|
|
const [open, setOpen] = useState(false)
|
|
|
|
|
2022-04-09 23:04:13 +00:00
|
|
|
const formatTime = (dt: number) => dayjs(dt).format('MMM DD, YYYY hh:mm a z')
|
|
|
|
|
|
|
|
const { createdTime, closeTime, resolutionTime } = contract
|
2022-04-13 19:11:49 +00:00
|
|
|
const tradersCount = _.uniqBy(bets, 'userId').length
|
2022-04-09 23:04:13 +00:00
|
|
|
|
2022-04-07 20:52:54 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
className="group flex items-center rounded-md px-3 py-2 text-sm font-medium text-gray-600 hover:cursor-pointer hover:bg-gray-100"
|
|
|
|
onClick={() => setOpen(true)}
|
|
|
|
>
|
|
|
|
<DotsHorizontalIcon
|
|
|
|
className={clsx(
|
|
|
|
'h-6 w-6 flex-shrink-0 text-gray-400 group-hover:text-gray-500'
|
|
|
|
)}
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<Modal open={open} setOpen={setOpen}>
|
|
|
|
<Col className="gap-4 rounded bg-white p-6">
|
|
|
|
<Title className="!mt-0 !mb-0" text="Market info" />
|
|
|
|
|
2022-05-02 16:18:53 +00:00
|
|
|
<div>Share</div>
|
|
|
|
|
|
|
|
<Row className="justify-start gap-4">
|
|
|
|
<CopyLinkButton contract={contract} />
|
|
|
|
<TweetButton
|
|
|
|
className="self-start"
|
|
|
|
tweetText={getTweetText(contract, false)}
|
|
|
|
/>
|
|
|
|
<ShareEmbedButton contract={contract} />
|
|
|
|
</Row>
|
|
|
|
<div />
|
|
|
|
|
|
|
|
<div>Stats</div>
|
2022-04-09 23:04:13 +00:00
|
|
|
<table className="table-compact table-zebra table w-full text-gray-500">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Market created</td>
|
|
|
|
<td>{formatTime(createdTime)}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{closeTime && (
|
|
|
|
<tr>
|
|
|
|
<td>Market close{closeTime > Date.now() ? 's' : 'd'}</td>
|
|
|
|
<td>{formatTime(closeTime)}</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{resolutionTime && (
|
|
|
|
<tr>
|
|
|
|
<td>Market resolved</td>
|
|
|
|
<td>{formatTime(resolutionTime)}</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td>Volume</td>
|
2022-04-09 23:13:10 +00:00
|
|
|
<td>{formatMoney(contract.volume)}</td>
|
2022-04-09 23:04:13 +00:00
|
|
|
</tr>
|
|
|
|
|
2022-04-13 19:11:49 +00:00
|
|
|
<tr>
|
|
|
|
<td>Traders</td>
|
|
|
|
<td>{tradersCount}</td>
|
|
|
|
</tr>
|
|
|
|
|
2022-04-09 23:04:13 +00:00
|
|
|
{contract.mechanism === 'cpmm-1' && (
|
|
|
|
<tr>
|
|
|
|
<td>Liquidity</td>
|
|
|
|
<td>{formatMoney(contract.totalLiquidity)}</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
2022-04-09 23:23:24 +00:00
|
|
|
|
|
|
|
{contract.mechanism === 'dpm-2' && (
|
|
|
|
<tr>
|
|
|
|
<td>Pool</td>
|
|
|
|
<td>{formatMoney(_.sum(Object.values(contract.pool)))}</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
2022-04-09 23:04:13 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2022-05-02 16:18:53 +00:00
|
|
|
<div>Tags</div>
|
2022-04-07 20:52:54 +00:00
|
|
|
<TagsInput contract={contract} />
|
|
|
|
<div />
|
2022-04-21 17:58:12 +00:00
|
|
|
|
|
|
|
{contract.mechanism === 'cpmm-1' &&
|
|
|
|
!contract.resolution &&
|
|
|
|
(!closeTime || closeTime > Date.now()) && (
|
|
|
|
<>
|
2022-05-02 16:18:53 +00:00
|
|
|
<div className="">Add liquidity</div>
|
2022-04-21 17:58:12 +00:00
|
|
|
<AddLiquidityPanel contract={contract} />
|
|
|
|
</>
|
|
|
|
)}
|
2022-04-07 20:52:54 +00:00
|
|
|
</Col>
|
|
|
|
</Modal>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const getTweetText = (contract: Contract, isCreator: boolean) => {
|
|
|
|
const { question, creatorName, resolution, outcomeType } = contract
|
|
|
|
const isBinary = outcomeType === 'BINARY'
|
|
|
|
|
|
|
|
const tweetQuestion = isCreator
|
|
|
|
? question
|
|
|
|
: `${question}\nAsked by ${creatorName}.`
|
|
|
|
const tweetDescription = resolution
|
|
|
|
? `Resolved ${resolution}!`
|
|
|
|
: isBinary
|
|
|
|
? `Currently ${getBinaryProbPercent(
|
|
|
|
contract
|
|
|
|
)} chance, place your bets here:`
|
|
|
|
: `Submit your own answer:`
|
|
|
|
|
|
|
|
const timeParam = `${Date.now()}`.substring(7)
|
|
|
|
const url = `https://manifold.markets${contractPath(contract)}?t=${timeParam}`
|
|
|
|
|
|
|
|
return `${tweetQuestion}\n\n${tweetDescription}\n\n${url}`
|
|
|
|
}
|