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

95 lines
2.4 KiB
TypeScript
Raw Normal View History

import React from 'react'
2021-12-16 03:14:00 +00:00
import Head from 'next/head'
import clsx from 'clsx'
import { useContract, useContractWithPreload } from '../../hooks/use-contract'
import { Header } from '../../components/header'
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 03:24:11 +00:00
import { Contract, getContract } from '../../lib/firebase/contracts'
2021-12-16 03:42:05 +00:00
export async function getStaticProps(props: { params: any }) {
const { contractId } = props.params
const contract = (await getContract(contractId)) || null
2021-12-16 03:24:11 +00:00
return {
props: {
contractId,
contract,
2021-12-16 03:24:11 +00:00
},
revalidate: 60, // regenerate after a minute
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: {
contract: Contract
contractId: string
}) {
2021-12-16 05:56:12 +00:00
const user = useUser()
2021-12-09 22:05:55 +00:00
const contract = useContractWithPreload(props.contractId, props.contract)
if (!contract) {
2021-12-16 03:24:11 +00:00
return <div>Contract not found...</div>
}
2021-12-16 03:14:00 +00:00
2021-12-14 06:12:25 +00:00
const { creatorId, isResolved } = contract
2021-12-16 05:56:12 +00:00
const isCreator = user?.id === creatorId
2021-12-14 00:00:02 +00:00
2021-12-09 22:05:55 +00:00
return (
2021-12-16 04:52:07 +00:00
<Col className="max-w-7xl mx-auto sm:px-6 lg:px-8">
2021-12-16 03:14:00 +00:00
<Head>
2021-12-16 04:52:07 +00:00
<title>{contract.question} | Mantic Markets</title>
2021-12-16 03:14:00 +00:00
<meta
property="og:title"
name="twitter:title"
content={contract.question}
key="title"
/>
2021-12-16 03:24:11 +00:00
<meta name="description" content={contract.description} />
2021-12-16 03:14:00 +00:00
<meta
property="og:description"
name="twitter:description"
content={contract.description}
/>
</Head>
2021-12-16 04:52:07 +00:00
<Header />
<Col
className={clsx(
'w-full items-start md:flex-row mt-4',
isResolved ? 'md:justify-center' : 'md:justify-between'
)}
>
<ContractOverview
contract={contract}
className="max-w-4xl w-full p-4"
/>
2021-12-16 04:10:14 +00:00
2021-12-16 04:52:07 +00:00
{!isResolved && (
<>
<div className="mt-12 md:mt-0 md:ml-8" />
2021-12-16 04:10:14 +00:00
2021-12-16 04:52:07 +00:00
<Col className="w-full sm:w-auto sm:self-center">
<BetPanel contract={contract} />
2021-12-16 04:10:14 +00:00
2021-12-16 04:52:07 +00:00
{isCreator && user && (
<ResolutionPanel creator={user} contract={contract} />
)}
</Col>
</>
)}
2021-12-12 22:14:52 +00:00
</Col>
2021-12-16 04:52:07 +00:00
</Col>
2021-12-09 22:05:55 +00:00
)
}