Revert "perf: reduce the number of items rendered on the first render"

close #1659 This reverts commit 6704d61baa.
This commit is contained in:
Stephen Zhou 2024-11-19 17:32:21 +08:00
parent 706f484757
commit 9e45d0441e
No known key found for this signature in database
1 changed files with 0 additions and 11 deletions

View File

@ -44,15 +44,6 @@ const scrollSeekConfiguration: ScrollSeekConfiguration = {
exit: (velocity) => Math.abs(velocity) < 1000,
}
const INITIAL_ITEM_COUNTS = {
[FeedViewType.Articles]: 10,
[FeedViewType.Pictures]: 20,
[FeedViewType.Videos]: 20,
[FeedViewType.SocialMedia]: 5,
[FeedViewType.Notifications]: 10,
[FeedViewType.Audios]: 10,
}
export type VirtuosoComponentProps = { onlyShowArchivedButton: boolean }
type VirtuosoComponentPropsContext = { context?: VirtuosoComponentProps }
@ -148,10 +139,8 @@ function EntryColumnImpl() {
const scrollRef = useRef<HTMLDivElement>(null)
const virtuosoOptions = {
initialItemCount: INITIAL_ITEM_COUNTS[view],
components: {
List: EntryListContent,
Footer: useCallback(
({ context }: VirtuosoComponentPropsContext) => {
if (!isFetchingNextPage) {