Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lower feedfeedback seen threshold to 0.5s (#6127)

authored by

dan and committed by
GitHub
6b826fb8 84fb1b7f

+3 -3
+1 -1
src/state/feed-feedback.tsx
··· 72 72 73 73 const sendToFeed = React.useMemo( 74 74 () => 75 - throttle(sendToFeedNoDelay, 15e3, { 75 + throttle(sendToFeedNoDelay, 10e3, { 76 76 leading: false, 77 77 trailing: true, 78 78 }),
+1 -1
src/view/com/util/List.tsx
··· 110 110 }, 111 111 { 112 112 itemVisiblePercentThreshold: 40, 113 - minimumViewTime: 1.5e3, 113 + minimumViewTime: 0.5e3, 114 114 }, 115 115 ] 116 116 }, [onItemSeen])
+1 -1
src/view/com/util/List.web.tsx
··· 28 28 } 29 29 export type ListRef = React.MutableRefObject<any | null> // TODO: Better types. 30 30 31 - const ON_ITEM_SEEN_WAIT_DURATION = 1.5e3 // when we consider post to be "seen" 31 + const ON_ITEM_SEEN_WAIT_DURATION = 0.5e3 // when we consider post to be "seen" 32 32 const ON_ITEM_SEEN_INTERSECTION_OPTS = { 33 33 rootMargin: '-200px 0px -200px 0px', 34 34 } // post must be 200px visible to be "seen"