Last active
September 8, 2021 20:07
-
-
Save reecelucas/cd110ece696cca8468db895281fa28cb to your computer and use it in GitHub Desktop.
React hook to detect scroll direction, based on the API of https://github.com/dollarshaveclub/scrolldir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const SCROLL_UP = "up"; | |
const SCROLL_DOWN = "down"; | |
const useScrollDirection = ({ | |
initialDirection, | |
thresholdPixels, | |
off | |
} = {}) => { | |
const [scrollDir, setScrollDir] = useState(initialDirection); | |
useEffect(() => { | |
const threshold = thresholdPixels || 0; | |
let lastScrollY = window.pageYOffset; | |
let ticking = false; | |
const updateScrollDir = () => { | |
const scrollY = window.pageYOffset; | |
if (Math.abs(scrollY - lastScrollY) < threshold) { | |
// We haven't exceeded the threshold | |
ticking = false; | |
return; | |
} | |
setScrollDir(scrollY > lastScrollY ? SCROLL_DOWN : SCROLL_UP); | |
lastScrollY = scrollY > 0 ? scrollY : 0; | |
ticking = false; | |
}; | |
const onScroll = () => { | |
if (!ticking) { | |
window.requestAnimationFrame(updateScrollDir); | |
ticking = true; | |
} | |
}; | |
/** | |
* Bind the scroll handler if `off` is set to false. | |
* If `off` is set to true reset the scroll direction. | |
*/ | |
!off | |
? window.addEventListener("scroll", onScroll) | |
: setScrollDir(initialDirection); | |
return () => window.removeEventListener("scroll", onScroll); | |
}, [initialDirection, thresholdPixels, off]); | |
return scrollDir; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try this -
Install this package from npm - https://www.npmjs.com/package/react-use-scroll-direction
Then Detect Scroll Direction : - )