You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.9 KiB
56 lines
1.9 KiB
import { useState } from 'react';
|
|
import useStableMemo from './useStableMemo';
|
|
import useEffect from './useIsomorphicEffect';
|
|
import useEventCallback from './useEventCallback';
|
|
/**
|
|
* Setup an [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver) on
|
|
* a DOM Element that returns it's entries as they arrive.
|
|
*
|
|
* @param element The DOM element to observe
|
|
* @param init IntersectionObserver options with a notable change,
|
|
* unlike a plain IntersectionObserver `root: null` means "not provided YET",
|
|
* and the hook will wait until it receives a non-null value to set up the observer.
|
|
* This change allows for easier syncing of element and root values in a React
|
|
* context.
|
|
*/
|
|
|
|
function useIntersectionObserver(element, callbackOrOptions, maybeOptions) {
|
|
var callback;
|
|
var options;
|
|
|
|
if (typeof callbackOrOptions === 'function') {
|
|
callback = callbackOrOptions;
|
|
options = maybeOptions || {};
|
|
} else {
|
|
options = callbackOrOptions || {};
|
|
}
|
|
|
|
var _options = options,
|
|
threshold = _options.threshold,
|
|
root = _options.root,
|
|
rootMargin = _options.rootMargin;
|
|
|
|
var _useState = useState(null),
|
|
entries = _useState[0],
|
|
setEntry = _useState[1];
|
|
|
|
var handler = useEventCallback(callback || setEntry); // We wait for element to exist before constructing
|
|
|
|
var observer = useStableMemo(function () {
|
|
return root !== null && typeof IntersectionObserver !== 'undefined' && new IntersectionObserver(handler, {
|
|
threshold: threshold,
|
|
root: root,
|
|
rootMargin: rootMargin
|
|
});
|
|
}, [handler, root, rootMargin, threshold && JSON.stringify(threshold)]);
|
|
useEffect(function () {
|
|
if (!element || !observer) return;
|
|
observer.observe(element);
|
|
return function () {
|
|
observer.unobserve(element);
|
|
};
|
|
}, [observer, element]);
|
|
return callback ? undefined : entries || [];
|
|
}
|
|
|
|
export default useIntersectionObserver; |