Vue first screen performance optimization componentSimply implement a Vue first screen performance optimization component. Modern browsers provide many new interfaces. Without considering IE compatibility, these interfaces can greatly reduce the workload of writing code and doing some performance optimization. Of course, in order to consider IE, we can also provide a backup for it when encapsulating components. The first screen performance optimization component in this article mainly uses the two interfaces of IntersectionObserver and requestIdleCallback. describeLet's first consider the first screen scenario. When making a first screen mainly for display, more resources such as pictures are usually loaded. If we don't want to load all resources when the user opens it, but want the user to scroll to the relevant position before loading the component, then we can choose the IntersectionObserver interface. Of course, we can also use the onscroll event to do a listener, but the performance may be worse. There are also some components that we hope must be loaded, but we don't want them to be loaded synchronously when the page is initialized. In this way, we can use asynchronous methods such as Promise and setTimeout. However, if we want to lower the priority of loading this component, we can consider the requestIdleCallback interface. The relevant code is in the vue--first-screen-optimization branch of https://github.com/WindrunnerMax/webpack-simple-environment. IntersectionObserverThe IntersectionObserver interface, which belongs to the Intersection Observer API, provides a method for asynchronously observing the intersection status of a target element with its ancestor element or the top-level document viewport. The ancestor element and the viewport are called roots. That is to say, the IntersectionObserver API can automatically observe whether the element is visible. Since the essence of visible is that the target element and the viewport produce an intersection area, this API is called the intersection observer. Compatibility https://caniuse.com/?search=IntersectionObserver. const io = new IntersectionObserver(callback, option); // Start observing io.observe(document.getElementById("example")); // Stop observing io.unobserve(element); // Close the observer io.disconnect();
In addition, when the callback function is executed, an IntersectionObserverEntry object parameter is passed, which provides the following information.
{ time: 3893.92, rootBounds: ClientRect { bottom: 920, height: 1024, left: 0, right: 1024, top: 0, width: 920 }, boundingClientRect: ClientRect { // ... }, intersectionRect:ClientRect { // ... }, intersectionRatio: 0.54, target: element } requestIdleCallbackThe requestIdleCallback method can accept a function that will be called during the browser's idle period. This allows developers to perform background and low-priority work on the main event loop without affecting delayed key events such as animations and input responses. Functions are generally executed in the order of first-in-first-out. If the callback function specifies an execution timeout, it is possible to disrupt the execution order in order to execute the function before the timeout. Compatibility https://caniuse.com/?search=requestIdleCallback. const handle = window.requestIdleCallback(callback[, options]);
accomplishIn fact, writing components mainly involves figuring out how to use these two main APIs. First, let's focus on IntersectionObserver. Because we need to use the dynamic component <component />, we need to use the asynchronous component loading () => import("component") form when passing values to it. When listening, you can consider destroying the listener after loading is complete, or destroying it after leaving the visual area, etc. This is mainly a strategic issue. When the page is destroyed, the Intersection Observer must be disconnected to prevent memory leaks. Using requestIdleCallback is relatively simple. You only need to execute the callback function, which is similar to the asynchronous processing of Promise.resolve().then. Here is a simple implementation logic. Usually, the usage of observer is to use a div as a placeholder first, and then monitor the container of the placeholder in the observer. When the container is in the viewport, load the relevant components. The relevant code is in the vue--first-screen-optimization branch of https://github.com/WindrunnerMax/webpack-simple-environment. Please try to use yarn for installation. You can use the yarn.lock file to lock the version to avoid dependency issues. After running with npm run dev, you can see the order in which these four lazy-loaded components are created in the Console. Among them, the lazy loading of A's observer needs to wait until the loading page is rendered and it is judged to be in the visible area before loading, so that it can be seen directly on the first screen. The lazy loading of D requires sliding the scroll bar until the external container of D appears in the view before it appears. In other words, the D component will not be loaded unless it is scrolled to the bottom. In addition, attrs and listeners can be passed to the lazy-loaded component through component-params and component-events, which is similar to $attrs and $listeners. At this point, the lazy-loading component has been simply implemented. <!-- App.vue --> <template> <div> <section>1</section> <section> <div>2</div> <lazy-load :lazy-component="Example" type="observer" :component-params="{ content: 'Example A' }" :component-events="{ 'test-event': testEvent, }" ></lazy-load> </section> <section> <div>3</div> <lazy-load :lazy-component="Example" type="idle" :component-params="{ content: 'Example B' }" :component-events="{ 'test-event': testEvent, }" ></lazy-load> </section> <section> <div>4</div> <lazy-load :lazy-component="Example" type="lazy" :component-params="{ content: 'Example C' }" :component-events="{ 'test-event': testEvent, }" ></lazy-load> </section> <section> <div>5</div> <lazy-load :lazy-component="Example" type="observer" :component-params="{ content: 'Example D' }" :component-events="{ 'test-event': testEvent, }" ></lazy-load> </section> </div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; import LazyLoad from "./components/lazy-load/lazy-load.vue"; @Component({ components: { LazyLoad }, }) export default class App extends Vue { protected Example = () => import("./components/example/example.vue"); protected testEvent(content: string) { console.log(content); } } </script> <style lang="scss"> @import "./common/styles.scss"; body { padding: 0; margin: 0; } section { margin: 20px 0; color: #fff; height: 500px; background: $color-blue; } </style> Daily Question https://github.com/WindrunnerMax/EveryDay refer to
SummarizeThis is the end of this article about the Vue project first screen performance optimization component. For more relevant Vue first screen performance optimization component content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Issues with using Azure Container Registry to store images
>>: Detailed explanation of the pitfalls of mixing MySQL order by and limit
When we make a form, we often set a submit button ...
1. Download 2. Decompression 3. Add the path envi...
Table of contents 1. Resource download 2. Unzip t...
DNS (Domain Name Server) is a server that convert...
This article example shares the specific code of ...
A transaction is a logical group of operations. E...
What is the purpose of this sentence? Copy code Th...
Eating well and getting enough rest sounds simple...
I had been using MySQL 5.7 before, but because My...
This article shares the specific code of jQuery t...
Table of contents 1. Trigger Introduction 1. What...
1 Background JDK1.8-u181 and Tomcat8.5.53 were in...
history route History mode refers to the mode of ...
There are many tools available for backing up MyS...
1. Getting started with setUp Briefly introduce t...