Fix feed order moving around on load

This commit is contained in:
jahooma 2022-01-14 19:12:38 -06:00
parent 9d44c40415
commit e12e399679
2 changed files with 5 additions and 18 deletions

View File

@ -33,6 +33,8 @@ export function listenForValues<T>(
setValues: (values: T[]) => void
) {
return onSnapshot(query, (snapshot) => {
if (snapshot.metadata.fromCache) return
const values = snapshot.docs.map((doc) => doc.data() as T)
setValues(values)
})

View File

@ -11,22 +11,6 @@ import { Bet } from '../../common/bet'
const MAX_ACTIVE_CONTRACTS = 75
function FeedCard(props: {
contract: Contract
bets: Bet[]
comments: Comment[]
}) {
const { contract, bets, comments } = props
return (
<ContractFeed
contract={contract}
bets={bets}
comments={comments}
feedType="activity"
/>
)
}
// This does NOT include comment times, since those aren't part of the contract atm.
// TODO: Maybe store last activity time directly in the contract?
// Pros: simplifies this code; cons: harder to tweak "activity" definition later
@ -90,7 +74,7 @@ export function ActivityFeed(props: {
const recentComments = useRecentComments()
const activeContracts = recentComments
? findActiveContracts(contracts, recentComments)
: contracts
: props.contracts
return contracts.length > 0 ? (
<Col className="items-center">
@ -99,10 +83,11 @@ export function ActivityFeed(props: {
<Col className="w-full bg-white self-center divide-gray-300 divide-y">
{activeContracts.map((contract, i) => (
<div className="py-6 px-2 sm:px-4">
<FeedCard
<ContractFeed
contract={contract}
bets={contractBets[i]}
comments={contractComments[i]}
feedType="activity"
/>
</div>
))}