2022-04-07 21:15:51 +00:00
|
|
|
import {
|
|
|
|
ContractsGrid,
|
|
|
|
SearchableGrid,
|
|
|
|
} from '../components/contract/contracts-list'
|
2021-12-20 04:06:30 +00:00
|
|
|
import { Page } from '../components/page'
|
2022-01-19 17:57:35 +00:00
|
|
|
import { SEO } from '../components/SEO'
|
2022-01-21 18:33:58 +00:00
|
|
|
import { Title } from '../components/title'
|
2022-01-12 03:56:11 +00:00
|
|
|
import { useContracts } from '../hooks/use-contracts'
|
2022-01-27 18:48:39 +00:00
|
|
|
import { Contract, listAllContracts } from '../lib/firebase/contracts'
|
2021-12-14 08:35:20 +00:00
|
|
|
|
2021-12-19 05:59:34 +00:00
|
|
|
export async function getStaticProps() {
|
2022-01-27 18:48:39 +00:00
|
|
|
const contracts = await listAllContracts().catch((_) => [])
|
2021-12-19 05:59:34 +00:00
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
contracts,
|
|
|
|
},
|
|
|
|
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:33:58 +00:00
|
|
|
// TODO: Rename endpoint to "Explore"
|
2022-01-27 18:48:39 +00:00
|
|
|
export default function Markets(props: { contracts: Contract[] }) {
|
|
|
|
const contracts = useContracts() ?? props.contracts ?? []
|
|
|
|
|
2021-12-14 01:09:16 +00:00
|
|
|
return (
|
2021-12-20 04:06:30 +00:00
|
|
|
<Page>
|
2022-01-19 17:57:35 +00:00
|
|
|
<SEO
|
|
|
|
title="Explore"
|
|
|
|
description="Discover what's new, trending, or soon-to-close. Or search among our hundreds of markets."
|
|
|
|
url="/markets"
|
|
|
|
/>
|
2022-01-22 00:30:19 +00:00
|
|
|
{/* <HotMarkets contracts={hotContracts} />
|
2022-01-21 18:33:58 +00:00
|
|
|
<Spacer h={10} />
|
|
|
|
<ClosingSoonMarkets contracts={closingSoonContracts} />
|
2022-01-22 00:30:19 +00:00
|
|
|
<Spacer h={10} /> */}
|
2022-01-21 18:33:58 +00:00
|
|
|
|
2022-03-29 15:09:46 +00:00
|
|
|
<SearchableGrid contracts={contracts} />
|
2021-12-20 04:06:30 +00:00
|
|
|
</Page>
|
2021-12-14 01:09:16 +00:00
|
|
|
)
|
|
|
|
}
|
2022-01-21 18:33:58 +00:00
|
|
|
|
2022-01-22 00:28:12 +00:00
|
|
|
export const HotMarkets = (props: { contracts: Contract[] }) => {
|
2022-01-21 18:33:58 +00:00
|
|
|
const { contracts } = props
|
|
|
|
if (contracts.length === 0) return <></>
|
|
|
|
|
|
|
|
return (
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className="w-full rounded-lg border-2 border-indigo-100 bg-indigo-50 p-6 shadow-md">
|
2022-01-21 18:33:58 +00:00
|
|
|
<Title className="!mt-0" text="🔥 Markets" />
|
|
|
|
<ContractsGrid contracts={contracts} showHotVolume />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-22 00:28:12 +00:00
|
|
|
export const ClosingSoonMarkets = (props: { contracts: Contract[] }) => {
|
2022-01-21 18:33:58 +00:00
|
|
|
const { contracts } = props
|
|
|
|
if (contracts.length === 0) return <></>
|
|
|
|
|
|
|
|
return (
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className="w-full rounded-lg border-2 border-green-100 bg-green-50 p-6 shadow-md">
|
2022-01-21 18:33:58 +00:00
|
|
|
<Title className="!mt-0" text="⏰ Closing soon" />
|
|
|
|
<ContractsGrid contracts={contracts} showCloseTime />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|