Files

23 lines
949 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = require("react");
var useIntersection = function (ref, options) {
var _a = react_1.useState(null), intersectionObserverEntry = _a[0], setIntersectionObserverEntry = _a[1];
react_1.useEffect(function () {
if (ref.current && typeof IntersectionObserver === 'function') {
var handler = function (entries) {
setIntersectionObserverEntry(entries[0]);
};
var observer_1 = new IntersectionObserver(handler, options);
observer_1.observe(ref.current);
return function () {
setIntersectionObserverEntry(null);
observer_1.disconnect();
};
}
return function () { };
}, [ref.current, options.threshold, options.root, options.rootMargin]);
return intersectionObserverEntry;
};
exports.default = useIntersection;