Skip to content

Commit

Permalink
Revert "perf: reduce the number of items rendered on the first render"
Browse files Browse the repository at this point in the history
close #1659 This reverts commit 6704d61.
  • Loading branch information
hyoban committed Nov 19, 2024
1 parent 706f484 commit 9e45d04
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions apps/renderer/src/modules/entry-column/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 9e45d04

Please sign in to comment.