1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
| <template> <div ref="virtualRefs" @scroll="_handleScroll" :style="virtualFixedHeight" class="af-virtual_fixed-height"> <div class="af-virtual_scroll" :style="virtualScrollHeight"></div> <div class="af-virtual_content" :style="virtualTranslate"> <div ref="virtualListRefs" class="content-item" :data-index="item.$index" v-for="item in virtualList" :key="`${item[rowKey]}_${item.$index}`" > <slot :item="item" :index="item.$index"></slot> </div> </div> </div> </template>
<script> import { unThrottle } from '@/af3.0/plugins/utils/index.js'; export default { name: 'afVirtualDynamicHeight', props: { // 列表数据 list: { type: Array, required: true, },
// 列表高度 virtualMaxHeight: { type: String, default: '250px', },
// 数据总数量 virtualTotal: { type: Number, required: true, },
// 单个高度 itemHeight: { type: Number, default: 40, },
// 默认展示条数 limit: { type: Number, default: 15, },
// 唯一标识 rowKey: { type: String, required: true, },
// 距离顶部缓冲区条数 bufferSize: { type: Number, default: 5, },
// 是否开启分页 isPaging: { type: Boolean, default: false, },
// 距离滚动底部 多少px 触发分页 offsetBottom: { type: Number, default: 100, }, }, data() { this._virtualRefs = null; // 滚动实例 this._cacheListOption = []; // 缓存数据的高度 this._currentStartIndex = 0; // 当前滚动的位置 this._handleScroll = () => {}; // 节流函数 return { isLoad: true, // 分页节流触发 endIndex: 0, scrollTop: 0, startIndex: 0, virtualList: [], currentIndex: 0, dynamicHeight: 0, // 动态高度 }; }, computed: { // 当前list长度 getListCount() { return (Array.isArray(this.list) && this.list.length) || 0; },
// 滚动可视区最大高度 virtualFixedHeight() { return `max-height:${this.virtualMaxHeight};`; },
// 滚动的高度 virtualScrollHeight() { return `height:${this.dynamicHeight}px;`; },
// 每一项高度样式 virtualItemHeight() { return `height:${this.itemHeight}px;`; },
// 动画 virtualTranslate() { // 每次滚动的Y const y = this.startIndex >= 1 ? this._cacheListOption[this.startIndex - 1].offset : 0; return `transform:translate3d(0,${y}px,0); transform 0.01s cubic-bezier(0.25, 0.02, 0.35, 0.89) 0s`; }, }, watch: { list(arr) { if (!this.startIndex) { if (!Array.isArray(arr) || arr.length <= 0) { this.virtualList = []; } else { this.init(); } } else { this.isLoad = true; } }, }, /** * 不固定高度的虚拟列表逻辑 * 不必在意每一项的高度 * 只要在意这个滚动列表的高度,在滚动的时候,去计算每一项的高度 ,然后去加剪总高度即可 */ mounted() { if (!this._virtualRefs) { this._virtualRefs = this.$refs.virtualRefs; }
// 有时候父级使用v-if 的时候,第一次watch 并不会执行 if (Array.isArray(this.list) && this.list.length) { this.init(); }
// 滚动防抖 this._handleScroll = unThrottle(this.handleScroll, 180); }, methods: { // 初始化数据 init() { this.isLoad = true; this.startIndex = 0; this.endIndex = this.limit + this.bufferSize; this._cacheListOption = this.cacheVirtualList(); this._virtualRefs && (this._virtualRefs.scrollTop = 0); if (Array.isArray(this.list) && this.list.length > 0) { this.virtualList = this.getVirtualList(); this.getDynamicHeight(); }
// 判断数据是否相等 if (!this.isPaging && this.list.length - this.virtualTotal < 0) { console.error( `当前不是分页获取数据,传入数据【list:${this.list.length}】与数据总数【virtualTotal:${this.virtualTotal}】不相等,请注意查看数据是否正确` ); } },
// 搜索初始化 initSearch() { this.scrollTop = 0; this.startIndex = 0; this.isLoad = false; this.endIndex = this.limit + this.bufferSize; this._virtualRefs && (this._virtualRefs.scrollTop = 0); },
// 缓存计算高度 cacheVirtualList() { const arr = []; // 注意这块我们用了 <= 是为了渲染x+1个元素用来在让滚动变得连续(永远渲染在判断&渲染x+2) for (let i = 0; i < this.virtualTotal; i++) { arr.push({ currentIndex: i, // 当前位置 isComputed: false, // 是否计算过高度 height: this.itemHeight, // 默认高度 offset: (i + 1) * this.itemHeight, // 所在的位置 }); } this.dynamicHeight = arr[arr.length - 1].offset; return arr; },
// 动态计算高度 getDynamicHeight() { this.clearTimeout(); this._timeout = setTimeout(() => { const nodeList = this.$refs.virtualListRefs; let index = 0; let item = null; // 当前个 let prevItem = null; // 上一个 for (let i = 0; i < nodeList.length; i++) { if (!nodeList[i]) continue; // 当前下标 index = nodeList[i].getAttribute('data-index'); // 当前数据 item = this._cacheListOption[index]; // 如果计算过,就不计算 if (item.isComputed) continue; // 自身的高度 item.height = nodeList[i].getBoundingClientRect().height; // 上一个 prevItem = this._cacheListOption[index - 1]; // 缓存 offset = 当前个height + 上有给的offset item.offset = prevItem ? prevItem.offset + item.height : item.height; // 缓存起来 item.isComputed = true;
// 计算高度 if (i == nodeList.length - 1) { this.getComputedList(index); } } this.clearTimeout(); }, 0); },
// 重新计算位置 getComputedList(endIndex = 0) { let item = null; for (let i = endIndex; i < this._cacheListOption.length; i++) { if (!this._cacheListOption[i]) continue; item = this._cacheListOption[i]; item.offset = this._cacheListOption[i - 1].offset + item.height; this._isScrollBottom = item.isComputed; } this.dynamicHeight = this._cacheListOption[this._cacheListOption.length - 1].offset; },
// 滚动获取值 handleScroll(e) { if (e.target !== this._virtualRefs) return false;
// 是否开启分页 if (this.isPaging) { if ( this._cacheListOption[this.list.length - 1].offset - (e.target.scrollTop + e.target.offsetHeight) <= this.offsetBottom ) { // 分页节流触发 if (this.isLoad && this.list.length < this.virtualTotal) { this.isLoad = false; this.$emit('load', e); } } }
// 计算当前startIndex this._currentStartIndex = this.getStartIndex(e.target.scrollTop);
// 如果currentStartIndex 和 startIndex 不同(我们需要更新数据了) if (this._currentStartIndex !== this.currentIndex) { // 保存当前第一位 this.currentIndex = this._currentStartIndex;
// 重新计算开始位置 - 头部缓冲区位置 this.startIndex = Math.max(this._currentStartIndex - this.bufferSize, 0);
// 结束位置 = 当前位置 + 显示条数 + 缓冲区条数 this.endIndex = Math.min(this._currentStartIndex + this.limit + this.bufferSize, this.getListCount - 1);
// 获取数据 this.virtualList = this.getVirtualList(); this.getDynamicHeight(); } },
// 获取startIndex位置 getStartIndex(scrollTop = 0) { return this.handleBinarySearch(this._cacheListOption, scrollTop); },
// 获取当前展示区域的数据 getVirtualList() { const content = []; let item = null; // 注意这块我们用了 <= 是为了渲染x+1个元素用来在让滚动变得连续(永远渲染在判断&渲染x+2) for (let i = this.startIndex; i <= this.endIndex; ++i) { if (!this.list[i]) continue; item = this.list[i]; item.$index = i; content.push(item); } item = null; return content; },
// 二分查找位置 handleBinarySearch(list = [], offset = 0) { let low = 0; let mid = 0; let _offset = 0; let high = list.length - 1;
while (low <= high) { // 获取中间数 mid = Math.floor((high - low) / 2) + low; // 中间的位置 _offset = list[mid].offset; // 如果当前滚动和某个位置相等,返回对应坐标 if (_offset === offset) { return mid; } else if (_offset < offset) { // 如果当前位置小于滚动的位置,那就往后找 low = mid + 1; } else { // 如果滚动小于当前位置,那就往前找 high = mid - 1; } } // 最后返回 return high < 0 ? 0 : high; },
clearTimeout() { if (this._timeout) { clearTimeout(this._timeout); this._timeout = null; } }, }, beforeDestroy() { this._virtualRefs = null; // 滚动实例 this._handleScroll = null; // 节流函数 this._cacheListOption = []; // 缓存数据的高度 this._currentStartIndex = 0; // 当前滚动的位置 }, }; </script>
<style lang="scss" scoped> .af-virtual_fixed-height { position: relative; width: 100%; height: 100%; flex: 1; overflow: hidden; overflow-y: auto;
.af-virtual_scroll { position: relative; }
.af-virtual_content { position: absolute; top: 0; left: 0; width: 100%; display: flex; flex-direction: column; align-content: flex-start; overflow: hidden; will-change: transform;
.content-item { box-sizing: border-box; overflow: hidden; background: transparent; } } } </style>
|