manifold/web/pages/markets.tsx

68 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-01-05 06:32:52 +00:00
import _ from 'lodash'
import { ContractsGrid, SearchableGrid } from '../components/contracts-list'
import { Spacer } from '../components/layout/spacer'
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'
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[]
}) {
const contracts = useContracts()
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
)
return (
<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} />
{(props.contracts || contracts !== 'loading') && (
<SearchableGrid
2022-01-05 06:32:52 +00:00
contracts={readyContracts}
query={query}
setQuery={setQuery}
sort={sort}
setSort={setSort}
/>
)}
</Page>
)
}