55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import _ from 'lodash'
|
|
|
|
import { Contract } from '../../lib/firebase/contracts'
|
|
import { Comment } from '../../lib/firebase/comments'
|
|
import { Bet } from '../../../common/bet'
|
|
import { useBets } from '../../hooks/use-bets'
|
|
import { useComments } from '../../hooks/use-comments'
|
|
import {
|
|
getAllContractActivityItems,
|
|
getRecentContractActivityItems,
|
|
} from './activity-items'
|
|
import { FeedItems } from './feed-items'
|
|
import { User } from '../../../common/user'
|
|
|
|
export function ContractActivity(props: {
|
|
contract: Contract
|
|
bets: Bet[]
|
|
comments: Comment[]
|
|
user: User | null | undefined
|
|
mode: 'only-recent' | 'abbreviated' | 'all'
|
|
contractPath?: string
|
|
className?: string
|
|
betRowClassName?: string
|
|
}) {
|
|
const { contract, user, mode, contractPath, className, betRowClassName } =
|
|
props
|
|
|
|
const updatedComments =
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
mode === 'only-recent' ? undefined : useComments(contract.id)
|
|
const comments = updatedComments ?? props.comments
|
|
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
const updatedBets = mode === 'only-recent' ? undefined : useBets(contract.id)
|
|
const bets = updatedBets ?? props.bets
|
|
|
|
const items =
|
|
mode === 'only-recent'
|
|
? getRecentContractActivityItems(contract, bets, comments, user, {
|
|
contractPath,
|
|
})
|
|
: getAllContractActivityItems(contract, bets, comments, user, {
|
|
abbreviated: mode === 'abbreviated',
|
|
})
|
|
|
|
return (
|
|
<FeedItems
|
|
contract={contract}
|
|
items={items}
|
|
className={className}
|
|
betRowClassName={betRowClassName}
|
|
/>
|
|
)
|
|
}
|