在本篇文章你將會學到:css
IntersectionObserver API
的用法,以及如何兼容。React Hook
中實現無限滾動。當你使用滾動做爲發現數據的主要方法時,它可能使你的用戶在網頁上停留更長時間並提高用戶參與度。隨着社交媒體的流行,大量的數據被用戶消費。無線滾動提供了一個高效的方法讓用戶瀏覽海量信息,而沒必要等待頁面的預加載。前端
如何構建一個體驗良好的無限滾動,是每一個前端不管是項目或面試都會碰到的一個課題。vue
本文的原版實現來自:Creating Infinite Scroll with 15 Elementsnode
關於無限滾動,早期的解決方案基本都是依賴監聽scroll事件:react
function fetchData() {
fetch(path).then(res => doSomeThing(res.data));
}
window.addEventListener('scroll', fetchData);
複製代碼
而後計算各類.scrollTop()
、.offset().top
等等。git
手寫一個也是很是枯燥。並且:github
scroll
事件會頻繁觸發,所以咱們還須要手動節流。DOM
,容易形成卡頓。IntersectionObserver API
,在與
Vue
、
React
這類數據驅動視圖的框架後,無限滾動的通用方案就出來了。
IntersectionObserver
const box = document.querySelector('.box');
const intersectionObserver = new IntersectionObserver((entries) => {
entries.forEach((item) => {
if (item.isIntersecting) {
console.log('進入可視區域');
}
})
});
intersectionObserver.observe(box);
複製代碼
敲重點: IntersectionObserver API是異步的,不隨着目標元素的滾動同步觸發,性能消耗極低。面試
IntersectionObserverEntry
對象IntersectionObserverEntry
對象vue-cli
callback
函數被調用時,會傳給它一個數組,這個數組裏的每一個對象就是當前進入可視區域或者離開可視區域的對象(IntersectionObserverEntry
對象)後端
這個對象有不少屬性,其中最經常使用的屬性是:
target
: 被觀察的目標元素,是一個 DOM 節點對象isIntersecting
: 是否進入可視區域intersectionRatio
: 相交區域和目標元素的比例值,進入可視區域,值大於0,不然等於0options
調用IntersectionObserver
時,除了傳一個回調函數,還能夠傳入一個option
對象,配置以下屬性:
threshold
: 決定了何時觸發回調函數。它是一個數組,每一個成員都是一個門檻值,默認爲[0],即交叉比例(intersectionRatio)達到0時觸發回調函數。用戶能夠自定義這個數組。好比,[0, 0.25, 0.5, 0.75, 1]就表示當目標元素 0%、25%、50%、75%、100% 可見時,會觸發回調函數。root
: 用於觀察的根元素,默認是瀏覽器的視口,也能夠指定具體元素,指定元素的時候用於觀察的元素必須是指定元素的子元素rootMargin
: 用來擴大或者縮小視窗的的大小,使用css的定義方法,10px 10px 30px 20px表示top、right、bottom 和 left的值const io = new IntersectionObserver((entries) => {
console.log(entries);
}, {
threshold: [0, 0.5],
root: document.querySelector('.container'),
rootMargin: "10px 10px 30px 20px",
});
複製代碼
observer
observer.observer(nodeone); //僅觀察nodeOne
observer.observer(nodeTwo); //觀察nodeOne和nodeTwo
observer.unobserve(nodeOne); //中止觀察nodeOne
observer.disconnect(); //沒有觀察任何節點
複製代碼
React Hook
中使用IntersectionObserver
在看Hooks
版以前,來看正常組件版的:
class SlidingWindowScroll extends React.Component {
this.$bottomElement = React.createRef();
...
componentDidMount() {
this.intiateScrollObserver();
}
intiateScrollObserver = () => {
const options = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
this.observer = new IntersectionObserver(this.callback, options);
this.observer.observe(this.$bottomElement.current);
}
render() {
return (
<li className='img' ref={this.$bottomElement}>
)
}
複製代碼
衆所周知,React 16.x
後推出了useRef
來替代原有的createRef
,用於追蹤DOM節點。那讓咱們開始吧:
實現一個組件,能夠顯示具備15個元素的固定窗口大小的n個項目的列表: 即在任什麼時候候,無限滾動n元素上也僅存在15個DOM
節點。
relative/absolute
定位來肯定滾動位置ref
: top/bottom
來決定向上/向下滾動的渲染與否useState
聲明狀態變量咱們開始編寫組件SlidingWindowScrollHook
:
const THRESHOLD = 15;
const SlidingWindowScrollHook = (props) => {
const [start, setStart] = useState(0);
const [end, setEnd] = useState(THRESHOLD);
const [observer, setObserver] = useState(null);
// 其它代碼...
}
複製代碼
useState的簡單理解:
const [屬性, 操做屬性的方法] = useState(默認值);
複製代碼
start
:當前渲染的列表第一個數據,默認爲0end
: 當前渲染的列表最後一個數據,默認爲15observer
: 當前觀察的視圖ref
元素useRef
定義追蹤的DOM
元素const $bottomElement = useRef();
const $topElement = useRef();
複製代碼
正常的無限向下滾動只需關注一個dom元素,但因爲咱們是固定15個dom
元素渲染,須要判斷向上或向下滾動。
useEffect
請配合註釋食用:
useEffect(() => {
// 定義觀察
intiateScrollObserver();
return () => {
// 放棄觀察
resetObservation()
}
},[end]) //由於[end] 是同步刷新,這裏用一個就好了。
// 定義觀察
const intiateScrollObserver = () => {
const options = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const Observer = new IntersectionObserver(callback, options)
// 分別觀察開頭和結尾的元素
if ($topElement.current) {
Observer.observe($topElement.current);
}
if ($bottomElement.current) {
Observer.observe($bottomElement.current);
}
// 設初始值
setObserver(Observer)
}
// 交叉觀察的具體回調,觀察每一個節點,並對實時頭尾元素索引處理
const callback = (entries, observer) => {
entries.forEach((entry, index) => {
const listLength = props.list.length;
// 向下滾動,刷新數據
if (entry.isIntersecting && entry.target.id === "bottom") {
const maxStartIndex = listLength - 1 - THRESHOLD; // 當前頭部的索引
const maxEndIndex = listLength - 1; // 當前尾部的索引
const newEnd = (end + 10) <= maxEndIndex ? end + 10 : maxEndIndex; // 下一輪增長尾部
const newStart = (end - 5) <= maxStartIndex ? end - 5 : maxStartIndex; // 在上一輪的基礎上計算頭部
setStart(newStart)
setEnd(newEnd)
}
// 向上滾動,刷新數據
if (entry.isIntersecting && entry.target.id === "top") {
const newEnd = end === THRESHOLD ? THRESHOLD : (end - 10 > THRESHOLD ? end - 10 : THRESHOLD); // 向上滾動尾部元素索引不得小於15
let newStart = start === 0 ? 0 : (start - 10 > 0 ? start - 10 : 0); // 頭部元素索引最小值爲0
setStart(newStart)
setEnd(newEnd)
}
});
}
// 中止滾動時放棄觀察
const resetObservation = () => {
observer && observer.unobserve($bottomElement.current);
observer && observer.unobserve($topElement.current);
}
// 渲染時,頭尾ref處理
const getReference = (index, isLastIndex) => {
if (index === 0)
return $topElement;
if (isLastIndex)
return $bottomElement;
return null;
}
複製代碼
const {list, height} = props; // 數據,節點高度
const updatedList = list.slice(start, end); // 數據切割
const lastIndex = updatedList.length - 1;
return (
<ul style={{position: 'relative'}}>
{updatedList.map((item, index) => {
const top = (height * (index + start)) + 'px'; // 基於相對 & 絕對定位 計算
const refVal = getReference(index, index === lastIndex); // map循環中賦予頭尾ref
const id = index === 0 ? 'top' : (index === lastIndex ? 'bottom' : ''); // 綁ID
return (<li className="li-card" key={item.key} style={{top}} ref={refVal} id={id}>{item.value}</li>);
})}
</ul>
);
複製代碼
App.js
:
import React from 'react';
import './App.css';
import { SlidingWindowScrollHook } from "./SlidingWindowScrollHook";
import MY_ENDLESS_LIST from './Constants';
function App() {
return (
<div className="App">
<h1>15個元素實現無限滾動</h1>
<SlidingWindowScrollHook list={MY_ENDLESS_LIST} height={195}/>
</div>
);
}
export default App;
複製代碼
定義一下數據 Constants.js
:
const MY_ENDLESS_LIST = [
{
key: 1,
value: 'A'
},
{
key: 2,
value: 'B'
},
{
key: 3,
value: 'C'
},
// 中間就不貼了...
{
key: 45,
value: 'AS'
}
]
複製代碼
SlidingWindowScrollHook.js
:
import React, { useState, useEffect, useRef } from "react";
const THRESHOLD = 15;
const SlidingWindowScrollHook = (props) => {
const [start, setStart] = useState(0);
const [end, setEnd] = useState(THRESHOLD);
const [observer, setObserver] = useState(null);
const $bottomElement = useRef();
const $topElement = useRef();
useEffect(() => {
intiateScrollObserver();
return () => {
resetObservation()
}
// eslint-disable-next-line react-hooks/exhaustive-deps
},[start, end])
const intiateScrollObserver = () => {
const options = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const Observer = new IntersectionObserver(callback, options)
if ($topElement.current) {
Observer.observe($topElement.current);
}
if ($bottomElement.current) {
Observer.observe($bottomElement.current);
}
setObserver(Observer)
}
const callback = (entries, observer) => {
entries.forEach((entry, index) => {
const listLength = props.list.length;
// Scroll Down
if (entry.isIntersecting && entry.target.id === "bottom") {
const maxStartIndex = listLength - 1 - THRESHOLD; // Maximum index value `start` can take
const maxEndIndex = listLength - 1; // Maximum index value `end` can take
const newEnd = (end + 10) <= maxEndIndex ? end + 10 : maxEndIndex;
const newStart = (end - 5) <= maxStartIndex ? end - 5 : maxStartIndex;
setStart(newStart)
setEnd(newEnd)
}
// Scroll up
if (entry.isIntersecting && entry.target.id === "top") {
const newEnd = end === THRESHOLD ? THRESHOLD : (end - 10 > THRESHOLD ? end - 10 : THRESHOLD);
let newStart = start === 0 ? 0 : (start - 10 > 0 ? start - 10 : 0);
setStart(newStart)
setEnd(newEnd)
}
});
}
const resetObservation = () => {
observer && observer.unobserve($bottomElement.current);
observer && observer.unobserve($topElement.current);
}
const getReference = (index, isLastIndex) => {
if (index === 0)
return $topElement;
if (isLastIndex)
return $bottomElement;
return null;
}
const {list, height} = props;
const updatedList = list.slice(start, end);
const lastIndex = updatedList.length - 1;
return (
<ul style={{position: 'relative'}}>
{updatedList.map((item, index) => {
const top = (height * (index + start)) + 'px';
const refVal = getReference(index, index === lastIndex);
const id = index === 0 ? 'top' : (index === lastIndex ? 'bottom' : '');
return (<li className="li-card" key={item.key} style={{top}} ref={refVal} id={id}>{item.value}</li>);
})}
</ul>
);
}
export { SlidingWindowScrollHook };
複製代碼
以及少量樣式:
.li-card {
display: flex;
justify-content: center;
list-style: none;
box-shadow: 2px 2px 9px 0px #bbb;
padding: 70px 0;
margin-bottom: 20px;
border-radius: 10px;
position: absolute;
width: 80%;
}
複製代碼
而後你就能夠慢慢耍了。。。
IntersectionObserver
不兼容Safari
?
莫慌,咱們有polyfill
版
項目源地址:github.com/roger-hiro/…
參考文章:
若是你以爲這篇內容對你挺有啓發,我想邀請你幫我三個小忙: