2021-12-16 02:50:03 +00:00
|
|
|
import { SearchableGrid } from '../components/contracts-list'
|
2021-12-20 04:06:30 +00:00
|
|
|
import { Page } from '../components/page'
|
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-20 04:06:30 +00:00
|
|
|
<Page>
|
2021-12-19 20:37:31 +00:00
|
|
|
{(props.contracts || contracts !== 'loading') && (
|
|
|
|
<SearchableGrid
|
|
|
|
contracts={contracts === 'loading' ? props.contracts : contracts}
|
|
|
|
/>
|
|
|
|
)}
|
2021-12-20 04:06:30 +00:00
|
|
|
</Page>
|
2021-12-14 01:09:16 +00:00
|
|
|
)
|
|
|
|
}
|