Table of Contents
Virtual Scrolling
Real-World Example
Service Setup
Component Setup
Conclusion
Home Web Front-end CSS Tutorial Virtually Infinite Scrolling with Angular

Virtually Infinite Scrolling with Angular

Jan 07, 2025 pm 08:15 PM

Infinite scrolling has been around for a while. The basic idea: as you scroll, new content loads at the bottom, creating a seemingly endless scroll. Implementing this is simple, but without careful planning, performance suffers. After a few content refetches, you could have hundreds of DOM elements, many invisible. Luckily, patterns exist to mitigate this, and we'll explore one using Angular.

Virtually Infinite Scrolling with Angular

This is what we want to avoid.

Virtual Scrolling

Virtual scrolling renders only a subset of a large list at any time—distinct from infinite scrolling. It's ideal for large datasets where rendering everything at once is inefficient. Only visible (and near-visible) items are rendered; as the user scrolls, items are dynamically swapped. This significantly reduces DOM elements, boosting performance.

Virtual scrolling works by creating a container matching the viewport height. Only the visible items (plus a buffer) are rendered within this container at a specific scroll depth, managed via CSS. Scrolling updates the container, showing new items and removing those out of view, adjusting scroll depth. Combining this with infinite scrolling creates a virtually infinite list without performance penalties.

The example below shows a list of thousands of items, but renders a maximum of 8 at once. Scrolling adjusts the CSS scroll height, creating the illusion of a much longer list.

Virtually Infinite Scrolling with Angular

Real-World Example

Let's build an Angular application fetching media from Reddit's paginated API and displaying it in a virtual scrolling list. It will include a search bar for subreddit selection and a filter. Scrolling down loads more content. Our key requirements:

  1. Driven by RxJS Observables and the async pipe.
  2. Resets content on subreddit or filter changes, but not on appending new content.
  3. Stores previous content in memory for seamless up/down scrolling without redundant API calls.

We'll use the @angular/cdk package (containing the Virtual Scroller component). Install it with npm i @angular/cdk.

While this example uses Angular, similar patterns are applicable to React, Vue, or vanilla JavaScript. A basic demo illustrating the underlying principles is available here.

Service Setup

First, we create a service to fetch content from the Reddit API using Angular's HttpClient and RxJS Observables to manage the subreddit name and filter. (Some code is omitted for brevity; the complete implementation is here).

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The content fetching method tracks specific properties during data requests. A page property is added to the query string to ensure new content is fetched after the last item. We also filter out NSFW content and items lacking a post hint. This ensures only expected content is displayed.

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The query$ observable (previously omitted) merges different observable streams before fetching content. The scan operator combines previous and current stream results, building a large data array across multiple pages.

This allows for extensive scrolling; only subreddit name or filter changes trigger a complete refetch. nextPage, a property of query$, stores the last item ID in the current set, used to determine which page to fetch next when nearing the bottom of the Virtual Scroller.

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The power of RxJS lies in combining and manipulating data streams. This allows us to handle business logic before it reaches the component, keeping the component cleaner and re-usable.

Component Setup

Next, we set up the component to display content using Angular's CdkVirtualScrollViewport. A method handles scrolling near the viewport bottom, fetching the next page via the subRedditPage$ observable.

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The template uses the async pipe to subscribe to query$. Note: Virtual Scrollers become more complex with variable-height content; consistent item heights are recommended for performance.

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The onScroll method fetches more content when the user nears the bottom. It uses the nextPage ID (from query$) and emits to subRedditPage$, triggering the next API call and updating the list via query$.

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

The search bar and tab controls are also integrated (simplified example below).

// ... (Omitted for brevity) ...
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login

Conclusion

This creates a virtually infinite scroller. You can test it here. Reddit's API has rate limits; you might hit them during testing. For more details, including additional features, see the GitHub repository here.

The above is the detailed content of Virtually Infinite Scrolling with Angular. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1269
29
C# Tutorial
1248
24
How to Create an Animated Countdown Timer With HTML, CSS and JavaScript How to Create an Animated Countdown Timer With HTML, CSS and JavaScript Apr 11, 2025 am 11:29 AM

Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more

HTML Data Attributes Guide HTML Data Attributes Guide Apr 11, 2025 am 11:50 AM

Everything you ever wanted to know about data attributes in HTML, CSS, and JavaScript.

A Proof of Concept for Making Sass Faster A Proof of Concept for Making Sass Faster Apr 16, 2025 am 10:38 AM

At the start of a new project, Sass compilation happens in the blink of an eye. This feels great, especially when it’s paired with Browsersync, which reloads

While You Weren't Looking, CSS Gradients Got Better While You Weren't Looking, CSS Gradients Got Better Apr 11, 2025 am 09:16 AM

One thing that caught my eye on the list of features for Lea Verou's conic-gradient() polyfill was the last item:

A Comparison of Static Form Providers A Comparison of Static Form Providers Apr 16, 2025 am 11:20 AM

Let’s attempt to coin a term here: "Static Form Provider." You bring your HTML

How to Build Vue Components in a WordPress Theme How to Build Vue Components in a WordPress Theme Apr 11, 2025 am 11:03 AM

The inline-template directive allows us to build rich Vue components as a progressive enhancement over existing WordPress markup.

The Three Types of Code The Three Types of Code Apr 11, 2025 pm 12:02 PM

Every time I start a new project, I organize the code I’m looking at into three types, or categories if you like. And I think these types can be applied to

PHP is A-OK for Templating PHP is A-OK for Templating Apr 11, 2025 am 11:04 AM

PHP templating often gets a bad rap for facilitating subpar code — but that doesn't have to be the case. Let’s look at how PHP projects can enforce a basic

See all articles