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'
|
2022-03-20 23:12:33 +00:00
|
|
|
import { DOMAIN } from '../../../../common/envs/constants'
|
2022-03-20 21:05:16 +00:00
|
|
|
import { AnswersGraph } from '../../../components/answers/answers-graph'
|
|
|
|
import {
|
2022-04-18 23:02:40 +00:00
|
|
|
BinaryResolutionOrChance,
|
2022-03-20 21:05:16 +00:00
|
|
|
ContractDetails,
|
2022-04-19 02:44:31 +00:00
|
|
|
FreeResponseResolutionOrChance,
|
2022-04-07 21:15:51 +00:00
|
|
|
} from '../../../components/contract/contract-card'
|
|
|
|
import { ContractProbGraph } from '../../../components/contract/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 23:12:33 +00:00
|
|
|
import { SiteLink } from '../../../components/site-link'
|
2022-03-20 17:45:17 +00:00
|
|
|
import { useContractWithPreload } from '../../../hooks/use-contract'
|
2022-03-24 17:03:08 +00:00
|
|
|
import { useMeasureSize } from '../../../hooks/use-measure-size'
|
2022-03-20 17:45:17 +00:00
|
|
|
import { fromPropz, usePropz } from '../../../hooks/use-propz'
|
2022-03-24 17:03:08 +00:00
|
|
|
import { useWindowSize } from '../../../hooks/use-window-size'
|
2022-03-20 17:45:17 +00:00
|
|
|
import { listAllBets } from '../../../lib/firebase/bets'
|
2022-03-20 23:12:33 +00:00
|
|
|
import {
|
|
|
|
contractPath,
|
|
|
|
getContractFromSlug,
|
|
|
|
} from '../../../lib/firebase/contracts'
|
2022-03-20 17:45:17 +00:00
|
|
|
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: '',
|
|
|
|
}
|
|
|
|
|
2022-04-06 17:32:57 +00:00
|
|
|
const contract = useContractWithPreload(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 23:12:33 +00:00
|
|
|
const href = `https://${DOMAIN}${contractPath(contract)}`
|
|
|
|
|
2022-03-24 17:03:08 +00:00
|
|
|
const { height: windowHeight } = useWindowSize()
|
|
|
|
const { setElem, height: topSectionHeight } = useMeasureSize()
|
|
|
|
const paddingBottom = 8
|
|
|
|
|
|
|
|
const graphHeight =
|
|
|
|
windowHeight && topSectionHeight
|
|
|
|
? windowHeight - topSectionHeight - paddingBottom
|
|
|
|
: 0
|
|
|
|
|
2022-03-20 17:45:17 +00:00
|
|
|
return (
|
2022-03-24 17:03:08 +00:00
|
|
|
<Col className="w-full flex-1 bg-white">
|
2022-04-06 17:32:57 +00:00
|
|
|
<div className="relative flex flex-col pt-2" ref={setElem}>
|
2022-03-20 23:17:37 +00:00
|
|
|
<SiteLink
|
2022-04-06 17:32:57 +00:00
|
|
|
className="absolute top-0 left-0 z-20 h-full w-full"
|
2022-03-20 23:17:37 +00:00
|
|
|
href={href}
|
|
|
|
/>
|
|
|
|
|
2022-04-06 17:32:57 +00:00
|
|
|
<div className="px-3 text-xl text-indigo-700 md:text-2xl">
|
2022-03-20 23:17:37 +00:00
|
|
|
<Linkify text={question} />
|
|
|
|
</div>
|
2022-03-20 21:05:16 +00:00
|
|
|
|
2022-03-20 23:17:37 +00:00
|
|
|
<Spacer h={3} />
|
2022-03-20 21:05:16 +00:00
|
|
|
|
2022-03-20 23:17:37 +00:00
|
|
|
<Row className="items-center justify-between gap-4 px-2">
|
2022-03-21 20:23:21 +00:00
|
|
|
<ContractDetails
|
|
|
|
contract={contract}
|
2022-04-13 19:11:49 +00:00
|
|
|
bets={bets}
|
2022-03-21 20:23:21 +00:00
|
|
|
isCreator={false}
|
|
|
|
hideShareButtons
|
|
|
|
/>
|
2022-03-20 21:05:16 +00:00
|
|
|
|
2022-04-18 23:02:40 +00:00
|
|
|
{isBinary && <BinaryResolutionOrChance contract={contract} />}
|
|
|
|
|
|
|
|
{outcomeType === 'FREE_RESPONSE' && resolution && (
|
2022-04-19 02:44:31 +00:00
|
|
|
<FreeResponseResolutionOrChance
|
2022-04-18 23:02:40 +00:00
|
|
|
contract={contract}
|
|
|
|
truncate="long"
|
|
|
|
/>
|
2022-03-20 23:17:37 +00:00
|
|
|
)}
|
|
|
|
</Row>
|
2022-03-20 21:05:16 +00:00
|
|
|
|
2022-03-20 23:17:37 +00:00
|
|
|
<Spacer h={2} />
|
2022-03-24 17:03:08 +00:00
|
|
|
</div>
|
2022-03-20 21:05:16 +00:00
|
|
|
|
2022-03-24 17:03:08 +00:00
|
|
|
<div className="mx-1" style={{ paddingBottom }}>
|
2022-03-20 21:05:16 +00:00
|
|
|
{isBinary ? (
|
2022-03-24 17:03:08 +00:00
|
|
|
<ContractProbGraph
|
|
|
|
contract={contract}
|
|
|
|
bets={bets}
|
|
|
|
height={graphHeight}
|
|
|
|
/>
|
2022-03-20 21:05:16 +00:00
|
|
|
) : (
|
|
|
|
<AnswersGraph
|
|
|
|
contract={contract as FullContract<DPM, FreeResponse>}
|
|
|
|
bets={bets}
|
2022-03-24 17:03:08 +00:00
|
|
|
height={graphHeight}
|
2022-03-20 21:05:16 +00:00
|
|
|
/>
|
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>
|
|
|
|
)
|
|
|
|
}
|