2022-01-05 06:32:52 +00:00
|
|
|
import _ from 'lodash'
|
|
|
|
import { ContractsGrid, SearchableGrid } from '../components/contracts-list'
|
|
|
|
import { Spacer } from '../components/layout/spacer'
|
2021-12-20 04:06:30 +00:00
|
|
|
import { Page } from '../components/page'
|
2022-01-05 06:32:52 +00:00
|
|
|
import { Title } from '../components/title'
|
|
|
|
import { useContracts, useHotContracts } from '../hooks/use-contracts'
|
2022-01-02 22:46:04 +00:00
|
|
|
import { useQueryAndSortParams } from '../hooks/use-sort-and-query-params'
|
2022-01-05 06:32:52 +00:00
|
|
|
import {
|
|
|
|
Contract,
|
|
|
|
getHotContracts,
|
|
|
|
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-09 20:26:51 +00:00
|
|
|
const [contracts, hotContracts] = await Promise.all([
|
2022-01-05 06:32:52 +00:00
|
|
|
listAllContracts().catch((_) => []),
|
|
|
|
getHotContracts().catch(() => []),
|
|
|
|
])
|
2021-12-19 05:59:34 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
contracts,
|
2022-01-09 20:26:51 +00:00
|
|
|
hotContracts,
|
2021-12-19 05:59:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 06:32:52 +00:00
|
|
|
export default function Markets(props: {
|
|
|
|
contracts: Contract[]
|
2022-01-09 20:26:51 +00:00
|
|
|
hotContracts: Contract[]
|
2022-01-05 06:32:52 +00:00
|
|
|
}) {
|
2021-12-17 04:44:48 +00:00
|
|
|
const contracts = useContracts()
|
2022-01-09 20:26:51 +00:00
|
|
|
const hotContracts = useHotContracts()
|
2022-01-02 22:46:04 +00:00
|
|
|
const { query, setQuery, sort, setSort } = useQueryAndSortParams()
|
2022-01-05 06:32:52 +00:00
|
|
|
|
2022-01-09 20:26:51 +00:00
|
|
|
const readyHotContracts = hotContracts ?? props.hotContracts
|
2022-01-05 06:32:52 +00:00
|
|
|
const readyContracts = contracts === 'loading' ? props.contracts : contracts
|
|
|
|
|
2021-12-14 01:09:16 +00:00
|
|
|
return (
|
2021-12-20 04:06:30 +00:00
|
|
|
<Page>
|
2022-01-05 06:32:52 +00:00
|
|
|
<div className="w-full bg-indigo-50 border-2 border-indigo-100 p-6 rounded-lg shadow-md">
|
|
|
|
<Title className="mt-0" text="🔥 Markets" />
|
2022-01-09 20:26:51 +00:00
|
|
|
<ContractsGrid contracts={readyHotContracts} />
|
2022-01-05 06:32:52 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<Spacer h={10} />
|
|
|
|
|
2021-12-19 20:37:31 +00:00
|
|
|
{(props.contracts || contracts !== 'loading') && (
|
|
|
|
<SearchableGrid
|
2022-01-05 06:32:52 +00:00
|
|
|
contracts={readyContracts}
|
2022-01-02 22:46:04 +00:00
|
|
|
query={query}
|
|
|
|
setQuery={setQuery}
|
|
|
|
sort={sort}
|
|
|
|
setSort={setSort}
|
2021-12-19 20:37:31 +00:00
|
|
|
/>
|
|
|
|
)}
|
2021-12-20 04:06:30 +00:00
|
|
|
</Page>
|
2021-12-14 01:09:16 +00:00
|
|
|
)
|
|
|
|
}
|