Home > Web Front-end > JS Tutorial > body text

Boosting Angular Performance with @defer and Lazy Loading

王林
Release: 2024-08-06 04:26:42
Original
616 people have browsed it

Introduction

The new @defer feature in Angular is part of the framework's enhancements to improve performance, especially in lazy loading and rendering optimization. Here’s a quick overview of the @defer feature and the @placeholder and @loading blocks.

Overview of @defer

Purpose

  • The @defer feature is designed to delay the loading and rendering of components or parts of the application until they are needed. This can significantly improve the initial load time of the application and enhance the user experience.

Usage

  • @defer can be applied to components or parts of the template to indicate that they should be loaded lazily. This can be particularly useful for large applications or sections of an application that are not immediately visible or necessary when the user first lands on a page.

Syntax

  • The syntax for using @defer is straightforward and integrates seamlessly with Angular's existing template syntax. Here’s an example of how it might be used:
  @defer {
  <large-component />
  }
Copy after login

Advantages

  • Performance Optimization: By deferring the loading of certain parts of the application, the initial load time can be reduced, leading to a faster and more responsive user experience.
  • Resource Management: Deferring the loading of components helps in better resource management, as resources are only utilized when necessary.
  • User Experience: It enhances the user experience by loading critical content first and deferring less critical content until it's needed.

Integration with Angular's Ecosystem

  • The @defer feature integrates well with other Angular features and tools, allowing developers to take advantage of lazy loading, change detection strategies, and other performance optimization techniques in a cohesive manner.

Future Prospects

  • As Angular continues to evolve, the @defer feature is likely to see further enhancements and optimizations. Developers can expect more fine-tuned control over how and when parts of their application are loaded and rendered.

@defer and the IntersectionObserver

Under the hood, @defer uses the IntersectionObserver API. This API allows you to observe changes in the intersection of a target element with an ancestor element or the top-level document’s viewport. By deferring the loading of components until they are about to enter the viewport, you can avoid loading resources that the user may never see, thus conserving bandwidth and processing power.

Other Benefits of IntersectionObserver

Improved Initial Load Time: Deferring components until they are needed ensures that only the most critical parts of the application are loaded initially. This reduces the initial load time and improves the perceived performance of the application, making it feel faster and more responsive. Angular will create separate bundles for the components that are deferred, thus also reducing the size of your main bundle.

Enhanced User Experience: By loading content just before it becomes visible, you can ensure a smoother and more seamless experience for users. This technique can be especially beneficial for long-scrolling pages, where loading content as the user scrolls can prevent the application from becoming sluggish.

Better Performance on Low-Power Devices: Devices with limited processing power or slow network connections can benefit significantly from deferred loading. By only loading necessary components, these devices can handle applications more efficiently, providing a better experience for users on a wide range of devices.

Examples

Using @defer without Any Options

Here’s an example demonstrating how to use @defer in an Angular application. First, create a component that loads images. Using standalone components is a requirement for @defer.

import { Component } from "@angular/core";

@Component({
  selector: "app-images",
  standalone: true,
  template: `<div style="display: flex; flex-direction: column;">
    @for(image of list; track image) {
    <img [src]="image" width="600" height="400" />
    }
  </div> `,
})
export class ImagesComponent {
  list = Array(5).fill("https://placehold.co/600x400");
}
Copy after login

And here we are using @defer without any options.

<h1>Angular Defer Sample Application</h1>
@defer () {
<app-images></app-images>
}
Copy after login

Now, looking at the generated bundle, we can see that the image component has its own chunk.

Boosting Angular Performance with @defer and Lazy Loading

In the network tab, when the page is loaded, we can see that this bundle is now loaded at runtime.

Boosting Angular Performance with @defer and Lazy Loading

Using @defer with Options

Several options are available to enhance the user experience. In this section, we will go through some of them.

Using @placeholder

By default, the defer block will render the content when it is visible in the viewport. However, there can be delays, for example, when the components are making HTTP requests. In those scenarios, we can use the @placeholder option. The content used for the placeholder is not lazy loaded. The content in the @placeholder is shown first until the @defer block's contents are ready to render. The placeholder itself comes with an optional argument called minimum. This allows you to set the time to display the content.

Here is how this would look:

<h1>Angular Defer Sample Application</h1>
@defer () {
<app-images></app-images>
} @placeholder (minimum 500ms) {
<p>Loading Images</p>
}
Copy after login

And here is how this looks:

Boosting Angular Performance with @defer and Lazy Loading

Using @loading

The @loading block is used to display some content while the content defined in the @defer block is still loading or has started to load. This is different from the @placeholder block, which will appear before the loading starts. This block comes with two optional arguments, after and minimum. Similar to the @placeholder argument, the minimum argument is used to set the time to display the content. The second argument, after, is used to define the waiting time before showing the @loading content.

Here is how this would look:

<h1>Angular Defer Sample Application</h1>
@defer () {
<app-images></app-images>
} @loading (after 1s; minimum 500ms) {
<p>Loading Images</p>
}
Copy after login

While you may not see this properly in the animated GIF, we are telling the block to wait at least 1 second before displaying the @loading content and show it for at least 500 ms.

Boosting Angular Performance with @defer and Lazy Loading

Conclusion

The @defer feature in Angular is a powerful tool for enhancing performance and user experience by delaying the loading of components until they are needed. By integrating this feature with options like @placeholder and @loading, developers can create more efficient and responsive applications. As Angular continues to evolve, features like @defer will play a crucial role in optimizing resource management and improving application performance across various devices and network conditions.

The above is the detailed content of Boosting Angular Performance with @defer and Lazy Loading. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!