@@ -3,44 +3,52 @@ import { useEffect } from 'react';
3
3
import useRafState from './useRafState' ;
4
4
import { isBrowser , off , on } from './misc/util' ;
5
5
6
+ // Define the type for options that can be passed to the hook
6
7
interface Options {
7
- initialWidth ?: number ;
8
- initialHeight ?: number ;
9
- onChange ?: ( width : number , height : number ) => void ;
8
+ initialWidth ?: number ; // Initial width of the window (Default value is Infinity)
9
+ initialHeight ?: number ; // Initial height of the window (Default value is Infinity)
10
+ onChange ?: ( width : number , height : number ) => void ; // Callback function to execute on window resize (optional)
10
11
}
11
12
12
13
const useWindowSize = ( {
13
14
initialWidth = Infinity ,
14
15
initialHeight = Infinity ,
15
16
onChange,
16
17
} : Options = { } ) => {
18
+ // Use the useRafState hook to maintain the current window size (width and height)
17
19
const [ state , setState ] = useRafState < { width : number ; height : number } > ( {
18
20
width : isBrowser ? window . innerWidth : initialWidth ,
19
21
height : isBrowser ? window . innerHeight : initialHeight ,
20
22
} ) ;
21
23
22
24
useEffect ( ( ) : ( ( ) => void ) | void => {
25
+ // Only run the effect on the browser (to avoid issues with SSR)
23
26
if ( isBrowser ) {
24
27
const handler = ( ) => {
25
28
const width = window . innerWidth ;
26
29
const height = window . innerHeight ;
27
30
31
+ // Update the state with the new window size
28
32
setState ( {
29
- width : window . innerWidth ,
30
- height : window . innerHeight ,
33
+ width,
34
+ height,
31
35
} ) ;
32
36
37
+ // If an onChange callback is provided, call it with the new dimensions
33
38
if ( onChange ) onChange ( width , height ) ;
34
39
} ;
35
40
41
+ // Add event listener for the resize event
36
42
on ( window , 'resize' , handler ) ;
37
43
44
+ // Cleanup function to remove the event listener when the component is unmounted (it's for performance optimization)
38
45
return ( ) => {
39
46
off ( window , 'resize' , handler ) ;
40
47
} ;
41
48
}
42
49
} , [ ] ) ;
43
50
51
+ // Return the current window size (width and height)
44
52
return state ;
45
53
} ;
46
54
0 commit comments