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

110 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-03-20 17:45:17 +00:00
import { Bet } from '../../../../common/bet'
2022-03-20 21:05:16 +00:00
import {
Contract,
DPM,
FreeResponse,
FullContract,
} from '../../../../common/contract'
import { AnswersGraph } from '../../../components/answers/answers-graph'
import {
ResolutionOrChance,
ContractDetails,
} from '../../../components/contract-card'
import { ContractProbGraph } from '../../../components/contract-prob-graph'
2022-03-20 17:45:17 +00:00
import { Col } from '../../../components/layout/col'
2022-03-20 21:05:16 +00:00
import { Row } from '../../../components/layout/row'
2022-03-20 17:45:17 +00:00
import { Spacer } from '../../../components/layout/spacer'
2022-03-20 21:05:16 +00:00
import { Linkify } from '../../../components/linkify'
2022-03-20 17:45:17 +00:00
import { useContractWithPreload } from '../../../hooks/use-contract'
import { fromPropz, usePropz } from '../../../hooks/use-propz'
import { listAllBets } from '../../../lib/firebase/bets'
import { getContractFromSlug } from '../../../lib/firebase/contracts'
import Custom404 from '../../404'
export const getStaticProps = fromPropz(getStaticPropz)
export async function getStaticPropz(props: {
params: { username: string; contractSlug: string }
}) {
const { username, contractSlug } = props.params
const contract = (await getContractFromSlug(contractSlug)) || null
const contractId = contract?.id
2022-03-20 21:05:16 +00:00
const bets = contractId ? await listAllBets(contractId) : []
2022-03-20 17:45:17 +00:00
return {
props: {
contract,
username,
slug: contractSlug,
bets,
},
revalidate: 60, // regenerate after a minute
}
}
export async function getStaticPaths() {
return { paths: [], fallback: 'blocking' }
}
2022-03-20 21:05:16 +00:00
export default function ContractEmbedPage(props: {
2022-03-20 17:45:17 +00:00
contract: Contract | null
username: string
bets: Bet[]
slug: string
}) {
props = usePropz(props, getStaticPropz) ?? {
contract: null,
username: '',
bets: [],
slug: '',
}
const contract = useContractWithPreload(props.slug, props.contract)
2022-03-20 21:05:16 +00:00
const { bets } = props
2022-03-20 17:45:17 +00:00
bets.sort((bet1, bet2) => bet1.createdTime - bet2.createdTime)
if (!contract) {
return <Custom404 />
}
2022-03-20 21:05:16 +00:00
return <ContractEmbed contract={contract} bets={bets} />
}
function ContractEmbed(props: { contract: Contract; bets: Bet[] }) {
const { contract, bets } = props
const { question, resolution, outcomeType } = contract
const isBinary = outcomeType === 'BINARY'
2022-03-20 17:45:17 +00:00
return (
2022-03-20 21:05:16 +00:00
<Col className="w-full flex-1 bg-white py-2">
2022-03-20 22:21:28 +00:00
<div className="px-3 text-xl md:text-2xl text-indigo-700">
2022-03-20 21:05:16 +00:00
<Linkify text={question} />
</div>
<Spacer h={3} />
<Row className="items-center justify-between gap-4 px-2">
<ContractDetails contract={contract} isCreator={false} hideTweetBtn />
{(isBinary || resolution) && <ResolutionOrChance contract={contract} />}
</Row>
<Spacer h={2} />
<div className="mx-1">
{isBinary ? (
<ContractProbGraph contract={contract} bets={bets} />
) : (
<AnswersGraph
contract={contract as FullContract<DPM, FreeResponse>}
bets={bets}
/>
2022-03-20 17:45:17 +00:00
)}
2022-03-20 21:05:16 +00:00
</div>
2022-03-20 17:45:17 +00:00
</Col>
)
}