139 lines
4.1 KiB
TypeScript
139 lines
4.1 KiB
TypeScript
import React, { useState } from 'react'
|
|
import Router from 'next/router'
|
|
import { SparklesIcon, GlobeAltIcon } from '@heroicons/react/solid'
|
|
import clsx from 'clsx'
|
|
import _ from 'lodash'
|
|
|
|
import { Contract } from '../lib/firebase/contracts'
|
|
import { Page } from '../components/page'
|
|
import { ActivityFeed, SummaryActivityFeed } from './activity'
|
|
import { Comment } from '../lib/firebase/comments'
|
|
import { Bet } from '../lib/firebase/bets'
|
|
import FeedCreate from '../components/feed-create'
|
|
import { Spacer } from '../components/layout/spacer'
|
|
import { Col } from '../components/layout/col'
|
|
import { useUser } from '../hooks/use-user'
|
|
import { Fold } from '../../common/fold'
|
|
import { LoadingIndicator } from '../components/loading-indicator'
|
|
import { Row } from '../components/layout/row'
|
|
import { FastFoldFollowing } from '../components/fast-fold-following'
|
|
import {
|
|
getAllContractInfo,
|
|
useExploreContracts,
|
|
useFilterYourContracts,
|
|
useFindActiveContracts,
|
|
} from '../hooks/use-find-active-contracts'
|
|
import { useGetRecentBets } from '../hooks/use-bets'
|
|
import { useActiveContracts } from '../hooks/use-contracts'
|
|
|
|
export async function getStaticProps() {
|
|
const contractInfo = await getAllContractInfo()
|
|
|
|
return {
|
|
props: contractInfo,
|
|
revalidate: 60, // regenerate after a minute
|
|
}
|
|
}
|
|
|
|
const Home = (props: {
|
|
contracts: Contract[]
|
|
folds: Fold[]
|
|
recentBets: Bet[]
|
|
recentComments: Comment[]
|
|
}) => {
|
|
const { folds, recentComments } = props
|
|
const user = useUser()
|
|
|
|
const contracts = useActiveContracts() ?? props.contracts
|
|
const { yourContracts, initialFollowedFoldSlugs } = useFilterYourContracts(
|
|
user,
|
|
folds,
|
|
contracts
|
|
)
|
|
|
|
const recentBets = useGetRecentBets()
|
|
const { activeContracts, activeBets, activeComments } =
|
|
useFindActiveContracts({
|
|
contracts: yourContracts,
|
|
recentBets: recentBets ?? [],
|
|
recentComments,
|
|
})
|
|
|
|
const exploreContracts = useExploreContracts()
|
|
|
|
const [feedMode, setFeedMode] = useState<'activity' | 'explore'>('activity')
|
|
|
|
if (user === null) {
|
|
Router.replace('/')
|
|
return <></>
|
|
}
|
|
|
|
return (
|
|
<Page assertUser="signed-in">
|
|
<Col className="items-center">
|
|
<Col className="w-full max-w-3xl">
|
|
<FeedCreate user={user ?? undefined} />
|
|
<Spacer h={6} />
|
|
|
|
{initialFollowedFoldSlugs !== undefined &&
|
|
initialFollowedFoldSlugs.length === 0 && (
|
|
<FastFoldFollowing
|
|
user={user}
|
|
followedFoldSlugs={initialFollowedFoldSlugs}
|
|
/>
|
|
)}
|
|
|
|
<Spacer h={5} />
|
|
|
|
<Col className="mx-3 mb-3 gap-2 text-sm text-gray-800 sm:flex-row">
|
|
<Row className="gap-2">
|
|
<div className="tabs">
|
|
<div
|
|
className={clsx(
|
|
'tab gap-2',
|
|
feedMode === 'activity' && 'tab-active'
|
|
)}
|
|
onClick={() => setFeedMode('activity')}
|
|
>
|
|
<SparklesIcon className="inline h-5 w-5" aria-hidden="true" />
|
|
Recent activity
|
|
</div>
|
|
<div
|
|
className={clsx(
|
|
'tab gap-2',
|
|
feedMode === 'explore' && 'tab-active'
|
|
)}
|
|
onClick={() => setFeedMode('explore')}
|
|
>
|
|
<GlobeAltIcon className="inline h-5 w-5" aria-hidden="true" />
|
|
Explore
|
|
</div>
|
|
</div>
|
|
</Row>
|
|
</Col>
|
|
|
|
{feedMode === 'activity' &&
|
|
(recentBets ? (
|
|
<ActivityFeed
|
|
contracts={activeContracts}
|
|
contractBets={activeBets}
|
|
contractComments={activeComments}
|
|
/>
|
|
) : (
|
|
<LoadingIndicator className="mt-4" />
|
|
))}
|
|
|
|
{feedMode === 'explore' &&
|
|
(exploreContracts ? (
|
|
<SummaryActivityFeed contracts={exploreContracts} />
|
|
) : (
|
|
<LoadingIndicator className="mt-4" />
|
|
))}
|
|
</Col>
|
|
</Col>
|
|
</Page>
|
|
)
|
|
}
|
|
|
|
export default Home
|