manifold/web/pages/[username]/[contractSlug].tsx

155 lines
4.3 KiB
TypeScript
Raw Normal View History

import React from 'react'
2021-12-16 03:14:00 +00:00
2021-12-16 18:21:16 +00:00
import { useContractWithPreload } from '../../hooks/use-contract'
import { ContractOverview } from '../../components/contract-overview'
import { BetPanel } from '../../components/bet-panel'
import { Col } from '../../components/layout/col'
2021-12-14 00:00:02 +00:00
import { useUser } from '../../hooks/use-user'
import { ResolutionPanel } from '../../components/resolution-panel'
2021-12-16 04:30:24 +00:00
import { ContractBetsTable, MyBetsSummary } from '../../components/bets-list'
import { useBets } from '../../hooks/use-bets'
import { Title } from '../../components/title'
import { Spacer } from '../../components/layout/spacer'
import { User } from '../../lib/firebase/users'
import {
contractMetrics,
Contract,
getContractFromSlug,
} from '../../lib/firebase/contracts'
2021-12-16 18:40:23 +00:00
import { SEO } from '../../components/SEO'
import { Page } from '../../components/page'
import { contractTextDetails } from '../../components/contract-card'
import { Bet, listAllBets } from '../../lib/firebase/bets'
import { Comment, listAllComments } from '../../lib/firebase/comments'
import Custom404 from '../404'
2021-12-09 21:31:02 +00:00
export async function getStaticProps(props: {
params: { username: string; contractSlug: string }
}) {
2021-12-19 05:50:47 +00:00
const { username, contractSlug } = props.params
const contract = (await getContractFromSlug(contractSlug)) || null
const contractId = contract?.id
const [bets, comments] = await Promise.all([
contractId ? listAllBets(contractId) : null,
contractId ? listAllComments(contractId) : null,
])
2021-12-09 22:05:55 +00:00
2021-12-16 03:24:11 +00:00
return {
props: {
2021-12-16 18:40:23 +00:00
username,
2021-12-19 05:50:47 +00:00
slug: contractSlug,
contract,
bets,
comments,
2021-12-16 03:24:11 +00:00
},
2021-12-09 22:05:55 +00:00
revalidate: 60, // regenerate after a minute
2021-12-09 22:05:55 +00:00
}
2021-12-16 03:24:11 +00:00
}
2021-12-09 21:31:02 +00:00
export async function getStaticPaths() {
return { paths: [], fallback: 'blocking' }
}
2021-12-16 03:14:00 +00:00
export default function ContractPage(props: {
2021-12-16 18:21:16 +00:00
contract: Contract | null
bets: Bet[] | null
comments: Comment[] | null
2021-12-17 23:16:42 +00:00
slug: string
2021-12-16 18:40:23 +00:00
username: string
}) {
2021-12-16 05:56:12 +00:00
const user = useUser()
2021-12-09 22:05:55 +00:00
2021-12-17 23:16:42 +00:00
const contract = useContractWithPreload(props.slug, props.contract)
const { bets, comments } = props
2021-12-09 22:05:55 +00:00
if (!contract) {
return <Custom404 />
2021-12-09 22:05:55 +00:00
}
const { creatorId, isResolved, resolution, question } = contract
2021-12-14 06:12:25 +00:00
const isCreator = user?.id === creatorId
const allowTrade =
!isResolved && (!contract.closeTime || contract.closeTime > Date.now())
const allowResolve = !isResolved && isCreator && !!user
2021-12-14 00:00:02 +00:00
const { probPercent } = contractMetrics(contract)
2022-01-02 18:57:52 +00:00
const description = resolution
? `Resolved ${resolution}. ${contract.description}`
: `${probPercent} chance. ${contract.description}`
const ogCardProps = {
question,
probability: probPercent,
metadata: contractTextDetails(contract),
creatorName: contract.creatorName,
creatorUsername: contract.creatorUsername,
}
2021-12-09 22:05:55 +00:00
return (
<Page wide={allowTrade || allowResolve}>
2021-12-16 18:40:23 +00:00
<SEO
2022-01-02 18:57:52 +00:00
title={question}
description={description}
2021-12-17 23:16:42 +00:00
url={`/${props.username}/${props.slug}`}
ogCardProps={ogCardProps}
2021-12-16 18:40:23 +00:00
/>
2021-12-16 03:14:00 +00:00
2021-12-18 23:40:39 +00:00
<Col className="w-full md:flex-row justify-between mt-6">
<div className="flex-[3]">
<ContractOverview
contract={contract}
bets={bets ?? []}
comments={comments ?? []}
/>
2021-12-16 09:32:52 +00:00
<BetsSection contract={contract} user={user ?? null} />
</div>
{(allowTrade || allowResolve) && (
<>
2021-12-18 23:40:39 +00:00
<div className="md:ml-8" />
2021-12-18 23:40:39 +00:00
<Col className="flex-1">
{allowTrade && <BetPanel contract={contract} />}
{allowResolve && (
<ResolutionPanel creator={user} contract={contract} />
)}
</Col>
</>
2021-12-14 00:00:02 +00:00
)}
2021-12-12 22:14:52 +00:00
</Col>
</Page>
2021-12-09 22:05:55 +00:00
)
}
2021-12-16 04:30:24 +00:00
function BetsSection(props: { contract: Contract; user: User | null }) {
const { contract, user } = props
const bets = useBets(contract.id)
if (!bets || bets.length === 0) return <></>
2021-12-16 04:30:24 +00:00
2021-12-16 04:40:48 +00:00
// Decending creation time.
bets.sort((bet1, bet2) => bet2.createdTime - bet1.createdTime)
2021-12-16 04:30:24 +00:00
const userBets = user && bets.filter((bet) => bet.userId === user.id)
if (!userBets || userBets.length === 0) return <></>
2021-12-16 04:30:24 +00:00
return (
2021-12-18 23:40:39 +00:00
<div>
2022-01-13 18:58:25 +00:00
<Title className="px-2" text="Your trades" />
<MyBetsSummary
className="px-2"
contract={contract}
bets={userBets}
showMKT
/>
<Spacer h={6} />
<ContractBetsTable contract={contract} bets={userBets} />
2021-12-18 23:40:39 +00:00
<Spacer h={12} />
2021-12-16 04:30:24 +00:00
</div>
)
}