25 Feb 2025
SSR with Infinite Scroll in NEXT.js
It's not recommended for ecommerce application but if you are working on social media or news application or similar application then you can consider it.
Example
https://news.knowivate.com in this news application there is infinite scroll but if you disable the javascript it will still show the first 10 news & if js enabled then it will work like infinite scroll
Implementation
// page.js
const initialNewsList = fetchNews(0, 10); // from 0 and select 10 items
return <>
<ClientComponent initialNewsList={initialNewsList} />
</>
// ClientComponent.js
function export default ClientComponent(initialNewsList){
const [newsList, setNewsList] = useState(initialNewsList??[]);
// create states for from and select
// here in Infinite scroll logic call the fetchNews again
return<>
// ...
</>
}
You may also like
Next.js App Router: Cookies Working Locally but Failing in Production
Struggling with cookie management in production on Next.js? Discover...
Continue readingWhen redirecting from another site, 500 internal server error in NEXT.js
When redirecting from another site, 500 internal server error in NEX...
Continue readingHow to Create Progress bar in html
This tutorial outlines the steps to create a progress bar in HTML, a...
Continue reading