DEV Community

Cover image for A super simple implementation of Infinite Scrolling

A super simple implementation of Infinite Scrolling

sakun on December 23, 2019

I thought I’d share our approach to implementing infinite scrolling using jQuery on https://sideprojects.net and how it could be applied to other s...
Collapse
 
trashpandadotnet profile image
trashpanda-dotnet

Hi,
thank you for this post. Most of the time I am a backend developer, but have to work on frontend code from time to time. Which is why I really like these little "How to's"
It really took me a while to understand this line of code

if(((scrollHeight - 300) >= scrollPos) / scrollHeight == 0)
Enter fullscreen mode Exit fullscreen mode

First thing that I do not quiet understand is that the boolean result of

(scrollHeight - 300) >= scrollPos // result is 0 or 1
Enter fullscreen mode Exit fullscreen mode

is devided by scrollHeight, I wouldn't consider this clean code. The division itself does not even add anything to the logic. The result of the division is checked to be zero. The result will only be zero if the check of

(scrollHeight - 300) >= scrollPos
Enter fullscreen mode Exit fullscreen mode

returned fales. Which means we could just write:

if(((scrollHeight - 300) >= scrollPos) == false)
Enter fullscreen mode Exit fullscreen mode

I would even go further and change the operators, reuslting in:

if((scrollHeight - 300) < scrollPos)
Enter fullscreen mode Exit fullscreen mode

Am I missing something?

Collapse
 
kedzior_io profile image
Artur Kedzior • Edited

Few improvements here:

  1. For the love of whatever you believe in use Typescript. Why would anyone not use Typescript? :-)
  2. This solution kind of works but it will get triggered several times and if you want to fetch stuff from API it will make many unnecessary requests. So how about this:
$(window).on("scroll", function () {
    const scrollHeight = $(document).height() as number;
    const scrollPos = Math.floor($(window).height() + $(window).scrollTop());
    if (scrollHeight === scrollPos) {
        console.log("Scroll MF!");
    }
});
Enter fullscreen mode Exit fullscreen mode

to make it even better, we can make it execute before hitting the bottom and again executing only once:

let page = 1;
let currentscrollHeight: 0;
let lockScroll: false;

$(window).on("scroll", () => {
    const scrollHeight = $(document).height() as number;
    const scrollPos = Math.floor($(window).height() + $(window).scrollTop());
    const isBottom = scrollHeight - 300 < scrollPos;

    if (isBottom && currentscrollHeight < scrollHeight) {

        $.ajax({
            method: "POST",
            url: "/api/search",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            data: JSON.stringify({ page: this.page })
        } as any)
        .done((posts: Post[]) => {
            this.page = this.page + 1;
            // do whatever
        });

        currentscrollHeight = scrollHeight;
    }
});
Enter fullscreen mode Exit fullscreen mode

Check an example: fullscreen-modal.azurewebsites.net

Collapse
 
jsdgraphics profile image
jsdgraphics

Dude! i made an account here just to thank you men, i spend a whole day trying to make this script work with a custom post type in wordpress, i end up in this article again after close it (i didn't read the comments the first time) and i realize that the main problem for me was "if(((scrollHeight - 300) >= scrollPos) / scrollHeight == 0)".

The script ran like four times every time, i just use your code but with my ajax and bum! thanks a lot good man

Thread Thread
 
kedzior_io profile image
Artur Kedzior

Awesome! I'm glad it helped you!

Collapse
 
thepeoplesbourgeois profile image
Josh

Nice work! Have you seen the IntersectionObserver API? It might allow you to simplify this code even further 😁

Collapse
 
abhishekcghosh profile image
Abhishek Ghosh

Would strongly second checking out the IntersectionObserver API. Scroll handlers can come with a lot of performance bottlenecks (even if debounced) in execution that blocks the main thread (js is single threaded in nature), slowing everything else on the page .. you might see stuff work smoothly on a developer desktop but when you test on a low end device like an average phone (what your users may be using), you'll see frame drops and jank :( IOs provide async ways to solve problems like this and has been a great addition to the web! If you absolutely need to use scroll listeners, try exploring if "passive" scroll listeners will work for you.

Collapse
 
sakun profile image
sakun

Ah that looks cool. Will be sure to check that out, thanks!

Collapse
 
anirudhbagri profile image
Anirudh Bagri

This is great!

I have a page that is empty (no header/footer or any-body) and is supposed to put everything that comes from an API in an infinity scrollable page.
However, When my page starts with an empty document, it doesn't load anything?
Of course, I can call the function once or twice to initialize with some data.. but is that correct?

Collapse
 
rishudc119 profile image
Deepak Chauhan

You are awesome man.