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-05 06:32:52 +00:00
|
|
|
const [contracts, hotContractIds] = await Promise.all([
|
|
|
|
listAllContracts().catch((_) => []),
|
|
|
|
getHotContracts().catch(() => []),
|
|
|
|
])
|
2021-12-19 05:59:34 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
contracts,
|
2022-01-05 06:32:52 +00:00
|
|
|
hotContractIds,
|
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[]
|
|
|
|
hotContractIds: string[]
|
|
|
|
}) {
|
2021-12-17 04:44:48 +00:00
|
|
|
const contracts = useContracts()
|
2022-01-02 22:46:04 +00:00
|
|
|
const { query, setQuery, sort, setSort } = useQueryAndSortParams()
|
2022-01-05 06:32:52 +00:00
|
|
|
const hotContractIds = useHotContracts()
|
|
|
|
|
|
|
|
const readyHotContractIds =
|
|
|
|
hotContractIds === 'loading' ? props.hotContractIds : hotContractIds
|
|
|
|
const readyContracts = contracts === 'loading' ? props.contracts : contracts
|
|
|
|
|
|
|
|
const hotContracts = readyHotContractIds.map(
|
|
|
|
(hotId) =>
|
|
|
|
_.find(readyContracts, (contract) => contract.id === hotId) as Contract
|
|
|
|
)
|
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" />
|
|
|
|
<ContractsGrid contracts={hotContracts} />
|
|
|
|
</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
|
|
|
)
|
|
|
|
}
|