816fc5d64c
This reverts commit 5beda1ded7
.
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import React, { useEffect, useState } from 'react'
|
|
import Router, { useRouter } from 'next/router'
|
|
import { Page } from 'web/components/page'
|
|
import { ActivityFeed } from 'web/components/feed/activity-feed'
|
|
import { Spacer } from 'web/components/layout/spacer'
|
|
import { Col } from 'web/components/layout/col'
|
|
import { useUser } from 'web/hooks/use-user'
|
|
import { LoadingIndicator } from 'web/components/loading-indicator'
|
|
import { useAlgoFeed } from 'web/hooks/use-algo-feed'
|
|
import { ContractPageContent } from './[username]/[contractSlug]'
|
|
import { CategorySelector } from '../components/feed/category-selector'
|
|
|
|
export default function Activity() {
|
|
const user = useUser()
|
|
const [category, setCategory] = useState<string>('all')
|
|
|
|
const feed = useAlgoFeed(user, category)
|
|
|
|
const router = useRouter()
|
|
const { u: username, s: slug } = router.query
|
|
const contract = feed?.find(
|
|
({ contract }) => contract.slug === slug
|
|
)?.contract
|
|
|
|
useEffect(() => {
|
|
// If the page initially loads with query params, redirect to the contract page.
|
|
if (router.isReady && slug && username) {
|
|
Router.replace(`/${username}/${slug}`)
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [router.isReady])
|
|
|
|
if (user === null) {
|
|
Router.replace('/')
|
|
return <></>
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Page suspend={!!contract}>
|
|
<Col className="mx-auto w-full max-w-[700px]">
|
|
<CategorySelector category={category} setCategory={setCategory} />
|
|
<Spacer h={1} />
|
|
{feed ? (
|
|
<ActivityFeed
|
|
feed={feed}
|
|
mode="only-recent"
|
|
getContractPath={(c) =>
|
|
`activity?u=${c.creatorUsername}&s=${c.slug}`
|
|
}
|
|
/>
|
|
) : (
|
|
<LoadingIndicator className="mt-4" />
|
|
)}
|
|
</Col>
|
|
</Page>
|
|
|
|
{contract && (
|
|
<ContractPageContent
|
|
contract={contract}
|
|
username={contract.creatorUsername}
|
|
slug={contract.slug}
|
|
bets={[]}
|
|
comments={[]}
|
|
backToHome={router.back}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|