Reputation: 1021
I have an infinite scrolling gallery of items that I want to display on a page. This page also has filtering options for the items.
I was thinking that I could use SSR to fetch the first 20 items for page load, and then use CSR (probably via react-query) to fill in items as the user scrolls or updates filters.
From the docs and what I know about next, it doesn't seem to be an issue to use SSR and CSR on the same page. What I'm trying to understand is how to implement that when talking about fetching the same dataset.
I was thinking it would work something like:
However this feels like somewhat of a clunky implementation. Does anyone have any good examples they can point to, or any reasons why I shouldn't do this?
Upvotes: 2
Views: 1078
Reputation: 2341
your implementation is ok but I recommend using ISR
for better performance:
1- using ISR
to fetch first 20 items
2- using CSR
to fetch new items on scroll
3- filter items using CSR
Upvotes: 1