Phenomenon: We rendered 9999 pieces of data. Since the transfer component renders all the data at once, it is normal for the rendering to be stuck for dozens of seconds. So lazy loading or paging is the basic operation, and solution 2 is paging operation. The lazy loading method can use EUI's infinite scrolling: https://element.eleme.cn/ Even after we do lazy loading, clicking Select All still takes more than 6 seconds, so Solution 1 solves the problem that even after lazy loading or paging operations, the user still experiences a few seconds of lag when clicking on the page. This is because the performance of the 'select all judgment' code in the transfer source code is poor. Solution 1 is to modify the transfer source code. I submitted a PR, the address is: hhttps://github.com/ElemeFE/element/pull/20282 Solution 1: Copy the transfer component of EUI, modify it, and then introduce it into the project directoryEUI's transfer component directory path: node_modules\element-ui\packages\transfer, copy the folder, and then put it in the vue project path Introduce the public component transfer where EUI's transfer is called. <template> <Transfer v-model="value" :data="data"></Transfer> </template> <script> import Transfer from '../common/transfer' export default { components:{ Transfer:Transfer }, //Omitted</script> Start modifying the transfer code: Open the src/common\transfer\src\transfer-panel.vue component. Find the updateAllChecked function. The function of updateAllChecked is: we need to make a judgment when we click on an item. See the code comments. updateAllChecked() { /* Source code this.checkableData is an array of objects. What we need is the key in each object. So checkableDataKeys stores the array of key of the object, which means the collection of 'items that can be selected by clicking'*/ let start = new Date().getTime(); const checkableDataKeys = this.checkableData.map( item => item[this.keyProp] ); this.allChecked = checkableDataKeys.length > 0 && /* There has been no change since 2.4.0. I have to say that the development team is really busy. this.checked stores the array of items selected by the user by clicking on the item. If this.checked exists for every item in checkableDataKeys, then allChecked is true, but if any item does not exist, it is false. allChecked represents whether all are selected. The time complexity here is n^2, which is rubbish*/ checkableDataKeys.every(item => this.checked.indexOf(item) > -1); console.log("updateAllCheckedEnd", new Date().getTime() - start); }, Let's look at the time taken by the source code: Then we start to rewrite the updateAllChecked function: updateAllChecked() { /* Modification Here is the algorithm for constructing element objects in an efficient array containing elements of another array*/ let start = new Date().getTime(); let checkableDataKeys = this.checkableData.map((item) => { let keyProps = {}; keyProps[item[this.keyProp]] = true; return keyProps; }); // Use the object's kv correspondence, n(1) to find out whether an element exists in the array this.allChecked = checkableDataKeys.length > 0 && this.checked.length > 0 && this.checked.every((item) => checkableDataKeys[item]); // The commented source code above is the most time-consuming, so just keep looking at the time consumption console.log("updateAllCheckedEnd", new Date().getTime() - start); }, This way the performance will be much higher. In fact, it is just a basic front-end algorithm problem. It seems that the developers of EUI did not write it because they are lazy. Let's look at the time taken after modifying the code: Obviously much faster. Next is the file: \src\common\transfer\src\main.vue, find the addToRight function addToRight() { let currentValue = this.value.slice(); const itemsToBeMoved = []; const key = this.props.key; let start = new Date().getTime(); // There are two loops here, which takes a long time this.data.forEach((item) => { const itemKey = item[key]; if ( this.leftChecked.indexOf(itemKey) > -1 && this.value.indexOf(itemKey) === -1 ) { itemsToBeMoved.push(itemKey); } }); console.log("addToRightEnd", new Date().getTime() - start); currentValue = this.targetOrder === "unshift" ? itemsToBeMoved.concat(currentValue) : currentValue.concat(itemsToBeMoved); this.$emit("input", currentValue); this.$emit("change", currentValue, "right", this.leftChecked); }, Time to move selected: Modify the addToRight function, addToRight() { let start = new Date().getTime(); let currentValue = this.value.slice(); const itemsToBeMoved = []; const key = this.props.key; // Modify let leftCheckedKeyPropsObj = {}; this.leftChecked.forEach((item, index) => { leftCheckedKeyPropsObj[item] = true; }); let valueKeyPropsObj = {}; this.value.forEach((item, index) => { valueKeyPropsObj[item] = true; }); this.data.forEach((item) => { const itemKey = item[key]; if ( leftCheckedKeyPropsObj[itemKey] && !valueKeyPropsObj[itemKey] ) { itemsToBeMoved.push(itemKey); } }); console.log("addToRightEnd", new Date().getTime() - start); currentValue = this.targetOrder === "unshift" ? itemsToBeMoved.concat(currentValue) : currentValue.concat(itemsToBeMoved); this.$emit("input", currentValue); this.$emit("change", currentValue, "right", this.leftChecked); }, Moving selected time: The time consumption is significantly reduced. The premise of this solution is lazy loading or paging. I tried it on 100,000 data volumes and it was still good. Solution 2: Paging OperationanalyzecheckBox-group has a check array (used to record the selected item array) and a renderItem array (the actual rendered item. Due to paging, not all items will be rendered). If there is an item in the `renderItem array` in the `check array`, then the item will be marked as selected, otherwise it will be unselected. The implementation principle is to simply compare the check array with the renderItem array. When the user clicks Select All, the check array becomes an array of tens of thousands of data. At this time, we have rendered 100 data, so we have to perform a 10000x100 level loop, which is why it takes time. In fact, the page only renders 100 pieces of data. We don't need to put tens of thousands of data into the check array at once. We only need to put these 100 arrays into the check array and display these 100 data as selected. When the page renders more data, just add the new data to the check array. This greatly improves performance. planThe solution I adopted is as follows: 1. Only 100 records are displayed. 2. Pull down to display the next 100 data items, and pull up to display the previous 100 data items. 3. When pulling down or pulling up to increase rendering data, add the new data to the check array. These are just general ideas, I have already implemented them. There are still many details to deal with. If you want to perfect it, you have to use the key-value pairs of the object to implement deletion, etc. This is the end of this article about the solution to the problem of Element's shuttle box freezing when the amount of data is large. For more information about Element's shuttle box freezing, please search 123WORDPRESS.COM's previous articles or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: The rel attribute of the HTML link tag
>>: Example code for circular hover effect using CSS Transitions
The detailed installation and configuration of th...
routing vue-router4 keeps most of the API unchang...
Last year, the open letter was a huge hit, even a...
This article example shares the specific code of ...
This article shares with you how to install the M...
MongoDB installation process and problem records ...
Linux installation JDK1.8 steps 1. Check whether ...
Table of contents 1. classList attribute 2. Pract...
Mysql8.0.12 decompression version installation me...
sort Sort the contents of a text file Usage: sort...
Table of contents 1. Install the psutil package S...
Table of contents How to install and configure To...
Supervisor Introduction Supervisor is a client/se...
Today, I will answer these newbie questions: Build...
Table of contents Preface 1. Recursive components...