Package Exports
- react-hook-inview
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-hook-inview) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-hook-inview
Detect if an element is in the viewport using a React Hook. Utilizes the Intersection Observer API, so check for compatibility.
Install
npm install react-hook-inviewUsage
Hooks can only be used inside functional components.
import React, { useState, useRef } from 'react'
import useInView from 'react-hook-inview'
const Component = () => {
const element = useRef()
const [isVisible, setVisible] = useState(false)
useInView({
target: element,
threshold: 1,
onEnter: ([entry]) => setVisible(entry.isIntersecting),
onLeave: ([entry]) => setVisible(entry.isIntersecting),
})
return (
<div ref={element}>
{isVisible
? 'Hello World!'
: ''
}
</div>
)
}Options
These are the default options. target is the only one that's required.
useInView({
target: null, // *required* a ref to the component
root: null, // optional, must be a parent of 'target' ref
rootMargin: '0px', // accepts a string of 'px' or '%' values
threshold: 0, // optionally use an array of numbers: [0, 0.5, 1]
unobserveOnEnter: false, // set 'true' to run only once
onEnter: () => null, // see below
onLeave: () => null, // see below
})onEnter and onLeave recieve a function that returns an array of IntersectionObserverEntry and the observer itself.
function onEnter([entry], observer) {
// entry.boundingClientRect
// entry.intersectionRatio
// entry.intersectionRect
// entry.isIntersecting
// entry.rootBounds
// entry.target
// entry.time
}Polyfill
Not all browser support Intersection Observer. The biggest outlier is Safari 12. As of version 1.1.0, a polyfill is included for convenience, but loaded conditionally. If you need it, supply the option polyfill: true when you call the function, or import useInViewPolyfill and use that instead. This also adds window.IntersectionObserverPolyfill to the global scope, if you need to do feature detection.
useInView({
polyfill: true,
...options
})import { useInViewPolyfill } from 'react-hook-inview'One last thing, the module exports a function IntersectionObserverPolyfill() which simply checks for IntersectionObserver within the global scope and shims it. It's the same function internally, but you can use this if you need to use the API without this particular module.