5be6a75e4b
* Move hot & closing markets to All Markets Soon to be named "Explore" * Set up a question box on the homepage * Show Leaderboards by default instead of Create * Support full contract creation from homepage * Force mt-0 on /markets * Move description into info tooltip * Add hint to ask a question * Initialize close date to 1 week from today * Add a promo section for logged-out users * Add hashtags, remove mobile padding * Rewrite promo copy * Store hotContracts as static props
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import _ from 'lodash'
|
|
import { ContractsGrid, SearchableGrid } from '../components/contracts-list'
|
|
import { Spacer } from '../components/layout/spacer'
|
|
import { Page } from '../components/page'
|
|
import { SEO } from '../components/SEO'
|
|
import { Title } from '../components/title'
|
|
import { useContracts } from '../hooks/use-contracts'
|
|
import { useQueryAndSortParams } from '../hooks/use-sort-and-query-params'
|
|
import {
|
|
Contract,
|
|
getClosingSoonContracts,
|
|
getHotContracts,
|
|
listAllContracts,
|
|
} from '../lib/firebase/contracts'
|
|
|
|
export async function getStaticProps() {
|
|
const [contracts, hotContracts, closingSoonContracts] = await Promise.all([
|
|
listAllContracts().catch((_) => []),
|
|
getHotContracts().catch(() => []),
|
|
getClosingSoonContracts().catch(() => []),
|
|
])
|
|
|
|
return {
|
|
props: {
|
|
contracts,
|
|
hotContracts,
|
|
closingSoonContracts,
|
|
},
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
}
|
|
}
|
|
|
|
// TODO: Rename endpoint to "Explore"
|
|
export default function Markets(props: {
|
|
contracts: Contract[]
|
|
hotContracts: Contract[]
|
|
closingSoonContracts: Contract[]
|
|
}) {
|
|
const contracts = useContracts() ?? props.contracts
|
|
const { hotContracts, closingSoonContracts } = props
|
|
const { query, setQuery, sort, setSort } = useQueryAndSortParams()
|
|
|
|
return (
|
|
<Page>
|
|
<SEO
|
|
title="Explore"
|
|
description="Discover what's new, trending, or soon-to-close. Or search among our hundreds of markets."
|
|
url="/markets"
|
|
/>
|
|
<HotMarkets contracts={hotContracts} />
|
|
<Spacer h={10} />
|
|
<ClosingSoonMarkets contracts={closingSoonContracts} />
|
|
<Spacer h={10} />
|
|
|
|
<SearchableGrid
|
|
contracts={contracts}
|
|
query={query}
|
|
setQuery={setQuery}
|
|
sort={sort}
|
|
setSort={setSort}
|
|
/>
|
|
</Page>
|
|
)
|
|
}
|
|
|
|
const HotMarkets = (props: { contracts: Contract[] }) => {
|
|
const { contracts } = props
|
|
if (contracts.length === 0) return <></>
|
|
|
|
return (
|
|
<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={contracts} showHotVolume />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const ClosingSoonMarkets = (props: { contracts: Contract[] }) => {
|
|
const { contracts } = props
|
|
if (contracts.length === 0) return <></>
|
|
|
|
return (
|
|
<div className="w-full bg-green-50 border-2 border-green-100 p-6 rounded-lg shadow-md">
|
|
<Title className="!mt-0" text="⏰ Closing soon" />
|
|
<ContractsGrid contracts={contracts} showCloseTime />
|
|
</div>
|
|
)
|
|
}
|