2022-06-05 00:00:13 +00:00
|
|
|
import React, { useEffect, useState } from 'react'
|
2022-06-10 16:22:36 +00:00
|
|
|
import Router, { useRouter } from 'next/router'
|
|
|
|
import { PlusSmIcon } from '@heroicons/react/solid'
|
2022-05-19 17:42:03 +00:00
|
|
|
|
2022-05-09 13:04:36 +00:00
|
|
|
import { Page } from 'web/components/page'
|
|
|
|
import { Col } from 'web/components/layout/col'
|
|
|
|
import { useUser } from 'web/hooks/use-user'
|
2022-05-17 17:56:10 +00:00
|
|
|
import { ContractSearch } from 'web/components/contract-search'
|
2022-06-05 00:00:13 +00:00
|
|
|
import { Contract } from 'common/contract'
|
|
|
|
import { ContractPageContent } from './[username]/[contractSlug]'
|
|
|
|
import { getContractFromSlug } from 'web/lib/firebase/contracts'
|
2022-01-23 00:16:23 +00:00
|
|
|
|
2022-04-09 23:10:58 +00:00
|
|
|
const Home = () => {
|
2022-01-23 00:16:23 +00:00
|
|
|
const user = useUser()
|
2022-06-05 20:45:31 +00:00
|
|
|
const [contract, setContract] = useContractPage()
|
2022-06-05 00:13:07 +00:00
|
|
|
|
2022-06-10 16:22:36 +00:00
|
|
|
const router = useRouter()
|
|
|
|
|
2022-01-23 00:16:23 +00:00
|
|
|
if (user === null) {
|
|
|
|
Router.replace('/')
|
|
|
|
return <></>
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2022-06-05 00:00:13 +00:00
|
|
|
<>
|
2022-06-13 04:42:41 +00:00
|
|
|
<Page suspend={!!contract}>
|
2022-06-05 00:00:13 +00:00
|
|
|
<Col className="mx-auto w-full p-2">
|
|
|
|
<ContractSearch
|
|
|
|
querySortOptions={{
|
|
|
|
shouldLoadFromStorage: true,
|
|
|
|
defaultSort: '24-hour-vol',
|
|
|
|
}}
|
|
|
|
showCategorySelector
|
|
|
|
onContractClick={(c) => {
|
|
|
|
// Show contract without navigating to contract page.
|
|
|
|
setContract(c)
|
|
|
|
// Update the url without switching pages in Nextjs.
|
|
|
|
history.pushState(null, '', `/${c.creatorUsername}/${c.slug}`)
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Col>
|
2022-06-10 16:22:36 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="fixed bottom-[70px] right-3 inline-flex items-center rounded-full border border-transparent bg-indigo-600 p-3 text-white shadow-sm hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 lg:hidden"
|
|
|
|
onClick={() => router.push('/create')}
|
|
|
|
>
|
|
|
|
<PlusSmIcon className="h-8 w-8" aria-hidden="true" />
|
|
|
|
</button>
|
2022-06-05 00:00:13 +00:00
|
|
|
</Page>
|
|
|
|
|
|
|
|
{contract && (
|
|
|
|
<ContractPageContent
|
|
|
|
contract={contract}
|
|
|
|
username={contract.creatorUsername}
|
|
|
|
slug={contract.slug}
|
|
|
|
bets={[]}
|
|
|
|
comments={[]}
|
|
|
|
backToHome={() => {
|
|
|
|
history.back()
|
2022-05-17 17:56:10 +00:00
|
|
|
}}
|
2022-04-11 21:13:26 +00:00
|
|
|
/>
|
2022-06-05 00:00:13 +00:00
|
|
|
)}
|
|
|
|
</>
|
2022-01-23 00:16:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-06-05 20:45:31 +00:00
|
|
|
const useContractPage = () => {
|
|
|
|
const [contract, setContract] = useState<Contract | undefined>()
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const onBack = () => {
|
|
|
|
const path = location.pathname.split('/').slice(1)
|
|
|
|
if (path[0] === 'home') setContract(undefined)
|
|
|
|
else {
|
|
|
|
const [username, contractSlug] = path
|
|
|
|
if (!username || !contractSlug) setContract(undefined)
|
|
|
|
else {
|
|
|
|
// Show contract if route is to a contract: '/[username]/[contractSlug]'.
|
|
|
|
getContractFromSlug(contractSlug).then(setContract)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
window.addEventListener('popstate', onBack)
|
|
|
|
|
|
|
|
// Hack. Listen to changes in href to clear contract on navigate home.
|
|
|
|
let href = document.location.href
|
|
|
|
const observer = new MutationObserver(function (_mutations) {
|
|
|
|
if (href != document.location.href) {
|
|
|
|
href = document.location.href
|
|
|
|
|
|
|
|
const path = location.pathname.split('/').slice(1)
|
|
|
|
if (path[0] === 'home') setContract(undefined)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
observer.observe(document, { subtree: true, childList: true })
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
window.removeEventListener('popstate', onBack)
|
|
|
|
observer.disconnect()
|
|
|
|
}
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (contract) window.scrollTo(0, 0)
|
|
|
|
}, [contract])
|
|
|
|
|
2022-06-13 21:05:46 +00:00
|
|
|
return [contract, setContract] as const
|
2022-06-05 20:45:31 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 00:16:23 +00:00
|
|
|
export default Home
|