2021-12-16 02:50:03 +00:00
|
|
|
import { SearchableGrid } from '../components/contracts-list'
|
2021-12-14 01:09:16 +00:00
|
|
|
import { Header } from '../components/header'
|
2021-12-17 04:44:48 +00:00
|
|
|
import { useContracts } from '../hooks/use-contracts'
|
2021-12-19 05:59:34 +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() {
|
|
|
|
const contracts = await listAllContracts().catch((_) => [])
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
contracts,
|
|
|
|
},
|
|
|
|
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function Markets(props: { contracts: Contract[] }) {
|
2021-12-17 04:44:48 +00:00
|
|
|
const contracts = useContracts()
|
2021-12-14 01:09:16 +00:00
|
|
|
|
|
|
|
return (
|
2021-12-18 23:40:39 +00:00
|
|
|
<div className="max-w-4xl px-4 pb-8 mx-auto">
|
2021-12-14 01:09:16 +00:00
|
|
|
<Header />
|
2021-12-19 05:59:34 +00:00
|
|
|
<SearchableGrid
|
|
|
|
contracts={contracts === 'loading' ? props.contracts || [] : contracts}
|
|
|
|
/>
|
2021-12-14 01:09:16 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|