Fix feed feedback (#4730)

zio/stable
dan 2024-07-04 20:07:42 +01:00 committed by GitHub
parent 4f02da96c8
commit 12bf796293
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 7 deletions

View File

@ -6,11 +6,8 @@ import throttle from 'lodash.throttle'
import {PROD_DEFAULT_FEED} from '#/lib/constants'
import {logEvent} from '#/lib/statsig/statsig'
import {logger} from '#/logger'
import {
FeedDescriptor,
FeedPostSliceItem,
isFeedPostSlice,
} from '#/state/queries/post-feed'
import {FeedDescriptor, FeedPostSliceItem} from '#/state/queries/post-feed'
import {getFeedPostSlice} from '#/view/com/posts/Feed'
import {useAgent} from './session'
type StateContext = {
@ -93,11 +90,12 @@ export function useFeedFeedback(feed: FeedDescriptor, hasSession: boolean) {
}, [enabled, sendToFeed])
const onItemSeen = React.useCallback(
(slice: any) => {
(feedItem: any) => {
if (!enabled) {
return
}
if (!isFeedPostSlice(slice)) {
const slice = getFeedPostSlice(feedItem)
if (slice === null) {
return
}
for (const postItem of slice.items) {

View File

@ -156,6 +156,14 @@ const interstials: Record<
],
}
export function getFeedPostSlice(feedItem: FeedItem): FeedPostSlice | null {
if (feedItem.type === 'slice') {
return feedItem.slice
} else {
return null
}
}
// DISABLED need to check if this is causing random feed refreshes -prf
// const REFRESH_AFTER = STALE.HOURS.ONE
const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY