Last active
November 13, 2024 08:19
-
-
Save reecelucas/2f510e6b8504008deaaa52732202d2da to your computer and use it in GitHub Desktop.
React hook to enable/disable page scroll
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
import { useRef } from 'react'; | |
const safeDocument = typeof document !== 'undefined' ? document : {}; | |
/** | |
* Usage: | |
* const [blockScroll, allowScroll] = useScrollBlock(); | |
*/ | |
export default () => { | |
const scrollBlocked = useRef(); | |
const html = safeDocument.documentElement; | |
const { body } = safeDocument; | |
const blockScroll = () => { | |
if (!body || !body.style || scrollBlocked.current) return; | |
const scrollBarWidth = window.innerWidth - html.clientWidth; | |
const bodyPaddingRight = | |
parseInt(window.getComputedStyle(body).getPropertyValue("padding-right")) || 0; | |
/** | |
* 1. Fixes a bug in iOS and desktop Safari whereby setting | |
* `overflow: hidden` on the html/body does not prevent scrolling. | |
* 2. Fixes a bug in desktop Safari where `overflowY` does not prevent | |
* scroll if an `overflow-x` style is also applied to the body. | |
*/ | |
html.style.position = 'relative'; /* [1] */ | |
html.style.overflow = 'hidden'; /* [2] */ | |
body.style.position = 'relative'; /* [1] */ | |
body.style.overflow = 'hidden'; /* [2] */ | |
body.style.paddingRight = `${bodyPaddingRight + scrollBarWidth}px`; | |
scrollBlocked.current = true; | |
}; | |
const allowScroll = () => { | |
if (!body || !body.style || !scrollBlocked.current) return; | |
html.style.position = ''; | |
html.style.overflow = ''; | |
body.style.position = ''; | |
body.style.overflow = ''; | |
body.style.paddingRight = ''; | |
scrollBlocked.current = false; | |
}; | |
return [blockScroll, allowScroll]; | |
}; |
Thank you so much
Thank you!! This works perfectly :)
phenomenal !
++ thanks!
Thanks!
Thanks a lot 👍
Works! Thank you!!!!!!!!!
improved hook for TypeScript:
import { useRef, useEffect } from 'react';
const safeDocument = typeof document !== 'undefined' ? document : {};
/**
* Usage:
* const [blockScroll, allowScroll] = useScrollBlock();
*/
export default function useScrollBlock(): [() => void, () => void] {
const scrollBlocked = useRef<boolean>(false);
const { body } = safeDocument as Document;
const html = (safeDocument as Document).documentElement;
const blockScroll = () => {
if (!body || !body.style || scrollBlocked.current) return;
const scrollBarWidth = window.innerWidth - (html?.clientWidth || 0);
const bodyPaddingRight =
parseInt(
window.getComputedStyle(body).getPropertyValue('padding-right'),
) || 0;
/**
* 1. Fixes a bug in iOS and desktop Safari whereby setting
* `overflow: hidden` on the html/body does not prevent scrolling.
* 2. Fixes a bug in desktop Safari where `overflowY` does not prevent
* scroll if an `overflow-x` style is also applied to the body.
*/
if (html) {
html.style.position = 'relative'; /* [1] */
html.style.overflow = 'hidden'; /* [2] */
}
body.style.position = 'relative'; /* [1] */
body.style.overflow = 'hidden'; /* [2] */
body.style.paddingRight = `${bodyPaddingRight + scrollBarWidth}px`;
scrollBlocked.current = true;
};
const allowScroll = () => {
if (!body || !body.style || !scrollBlocked.current) return;
if (html) {
html.style.position = '';
html.style.overflow = '';
}
body.style.position = '';
body.style.overflow = '';
body.style.paddingRight = '';
scrollBlocked.current = false;
};
useEffect(() => {
return () => {
if (scrollBlocked.current) {
allowScroll();
}
};
}, []);
return [blockScroll, allowScroll];
}
Thanks Lucas :)
thanks @litehacker for the TS version
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This doesn't work for me
The block scroll worked, but allowScroll doesn't work and am using nextjs