manifold/web/pages/markets.tsx

42 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-01-05 06:32:52 +00:00
import _ from 'lodash'
import { SearchableGrid } from '../components/contracts-list'
import { Page } from '../components/page'
2022-01-19 17:57:35 +00:00
import { SEO } from '../components/SEO'
import { useContracts } from '../hooks/use-contracts'
import { useQueryAndSortParams } from '../hooks/use-sort-and-query-params'
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() {
const contracts = await listAllContracts().catch((_) => {})
2021-12-19 05:59:34 +00:00
return {
props: {
contracts,
},
revalidate: 60, // regenerate after a minute
}
}
export default function Markets(props: { contracts: Contract[] }) {
const contracts = useContracts() ?? props.contracts
const { query, setQuery, sort, setSort } = useQueryAndSortParams()
2022-01-05 06:32:52 +00:00
return (
<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"
/>
<SearchableGrid
contracts={contracts}
query={query}
setQuery={setQuery}
sort={sort}
setSort={setSort}
/>
</Page>
)
}