279437ba08
* Admin page using gridjs * Move hook into separate file * Link to each user's Manifold and Firestore /user entry * Gate admin access to Austin/James/Stephen * Don't leak the existence of /admin * Add a custom 404 page that directs to Discord. * Fix broken window.location.href on NextJS server
153 lines
4.3 KiB
TypeScript
153 lines
4.3 KiB
TypeScript
import React from 'react'
|
|
|
|
import { useContractWithPreload } from '../../hooks/use-contract'
|
|
import { ContractOverview } from '../../components/contract-overview'
|
|
import { BetPanel } from '../../components/bet-panel'
|
|
import { Col } from '../../components/layout/col'
|
|
import { useUser } from '../../hooks/use-user'
|
|
import { ResolutionPanel } from '../../components/resolution-panel'
|
|
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'
|
|
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'
|
|
|
|
export async function getStaticProps(props: { params: any }) {
|
|
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,
|
|
])
|
|
|
|
return {
|
|
props: {
|
|
username,
|
|
slug: contractSlug,
|
|
contract,
|
|
bets,
|
|
comments,
|
|
},
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
}
|
|
}
|
|
|
|
export async function getStaticPaths() {
|
|
return { paths: [], fallback: 'blocking' }
|
|
}
|
|
|
|
export default function ContractPage(props: {
|
|
contract: Contract | null
|
|
bets: Bet[] | null
|
|
comments: Comment[] | null
|
|
slug: string
|
|
username: string
|
|
}) {
|
|
const user = useUser()
|
|
|
|
const contract = useContractWithPreload(props.slug, props.contract)
|
|
const { bets, comments } = props
|
|
|
|
if (!contract) {
|
|
return <Custom404 />
|
|
}
|
|
|
|
const { creatorId, isResolved, resolution, question } = contract
|
|
const isCreator = user?.id === creatorId
|
|
const allowTrade =
|
|
!isResolved && (!contract.closeTime || contract.closeTime > Date.now())
|
|
const allowResolve = !isResolved && isCreator && !!user
|
|
|
|
const { probPercent } = contractMetrics(contract)
|
|
|
|
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,
|
|
}
|
|
|
|
return (
|
|
<Page wide={allowTrade || allowResolve}>
|
|
<SEO
|
|
title={question}
|
|
description={description}
|
|
url={`/${props.username}/${props.slug}`}
|
|
ogCardProps={ogCardProps}
|
|
/>
|
|
|
|
<Col className="w-full md:flex-row justify-between mt-6">
|
|
<div className="flex-[3]">
|
|
<ContractOverview
|
|
contract={contract}
|
|
bets={bets ?? []}
|
|
comments={comments ?? []}
|
|
/>
|
|
<BetsSection contract={contract} user={user ?? null} />
|
|
</div>
|
|
|
|
{(allowTrade || allowResolve) && (
|
|
<>
|
|
<div className="md:ml-8" />
|
|
|
|
<Col className="flex-1">
|
|
{allowTrade && <BetPanel contract={contract} />}
|
|
{allowResolve && (
|
|
<ResolutionPanel creator={user} contract={contract} />
|
|
)}
|
|
</Col>
|
|
</>
|
|
)}
|
|
</Col>
|
|
</Page>
|
|
)
|
|
}
|
|
|
|
function BetsSection(props: { contract: Contract; user: User | null }) {
|
|
const { contract, user } = props
|
|
const bets = useBets(contract.id)
|
|
|
|
if (!bets || bets.length === 0) return <></>
|
|
|
|
// Decending creation time.
|
|
bets.sort((bet1, bet2) => bet2.createdTime - bet1.createdTime)
|
|
|
|
const userBets = user && bets.filter((bet) => bet.userId === user.id)
|
|
|
|
if (!userBets || userBets.length === 0) return <></>
|
|
|
|
return (
|
|
<div>
|
|
<Title className="px-2" text="Your trades" />
|
|
<MyBetsSummary
|
|
className="px-2"
|
|
contract={contract}
|
|
bets={userBets}
|
|
showMKT
|
|
/>
|
|
<Spacer h={6} />
|
|
<ContractBetsTable contract={contract} bets={userBets} />
|
|
<Spacer h={12} />
|
|
</div>
|
|
)
|
|
}
|