manifold/web/pages/index.tsx

41 lines
951 B
TypeScript
Raw Normal View History

2021-12-03 01:18:00 +00:00
import React from 'react'
2022-01-23 00:16:23 +00:00
import Router from 'next/router'
import { Contract, getHotContracts } from '../lib/firebase/contracts'
import { Page } from '../components/page'
2022-01-23 00:16:23 +00:00
import { FeedPromo } from '../components/feed-create'
import { Col } from '../components/layout/col'
import { useUser } from '../hooks/use-user'
2021-12-19 05:59:34 +00:00
export async function getStaticProps() {
2022-01-23 00:16:23 +00:00
const hotContracts = (await getHotContracts().catch(() => [])) ?? []
2021-12-19 05:59:34 +00:00
return {
2022-01-23 00:16:23 +00:00
props: { hotContracts },
2021-12-19 05:59:34 +00:00
revalidate: 60, // regenerate after a minute
}
}
2022-01-23 00:16:23 +00:00
const Home = (props: { hotContracts: Contract[] }) => {
const { hotContracts } = props
const user = useUser()
2022-01-23 00:16:23 +00:00
if (user) {
Router.replace('/home')
return <></>
}
return (
<Page assertUser="signed-out">
<Col className="items-center">
<Col className="max-w-3xl">
<FeedPromo hotContracts={hotContracts ?? []} />
</Col>
</Col>
</Page>
2022-01-05 06:32:52 +00:00
)
}
export default Home