Created
February 9, 2025 22:15
-
-
Save Vlad78/e6418087f55c8431ff89c8f56fcd2e92 to your computer and use it in GitHub Desktop.
hooks
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 { useEffect, useState } = require('react') | |
export function useWindowSize() { | |
// Initialize state with undefined width/height so server and client renders match | |
// Learn more here: https://joshwcomeau.com/react/the-perils-of-rehydration/ | |
const [windowSize, setWindowSize] = useState({ | |
width: undefined, | |
height: undefined, | |
}) | |
useEffect(() => { | |
// Handler to call on window resize | |
function handleResize() { | |
// Set window width/height to state | |
setWindowSize({ | |
width: window.innerWidth, | |
height: window.innerHeight, | |
}) | |
} | |
// Add event listener | |
window.addEventListener('resize', handleResize) | |
// Call handler right away so state gets updated with initial window size | |
handleResize() | |
// Remove event listener on cleanup | |
return () => window.removeEventListener('resize', handleResize) | |
}, []) // Empty array ensures that effect is only run on mount | |
return windowSize | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment