Revert "perf: reduce the number of items rendered on the first render"
close #1659 This reverts commit 6704d61baa.
This commit is contained in:
parent
706f484757
commit
9e45d0441e
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue