forked from rehooks/component-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
76 lines (65 loc) · 1.83 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict'
var React = require('react')
var useState = React.useState
var useCallback = React.useCallback
var useLayoutEffect = React.useLayoutEffect
var useEffect = React.useEffect
/**
* To properly measure. we need useLayoutEffect in the client but it generates a warning in the console
* since it has no effect when it runs on the server. This is to work around it.
* We've used this implementation: https://github.com/streamich/react-use/blob/master/src/useIsomorphicLayoutEffect.ts
*
* See this issue for more details: https://github.com/rehooks/component-size/issues/32
*/
var useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect
function getSize(el) {
if (!el) {
return {
width: 0,
height: 0
}
}
return {
width: el.offsetWidth,
height: el.offsetHeight
}
}
function useComponentSize(ref) {
var _useState = useState(getSize(ref ? ref.current : {}))
var ComponentSize = _useState[0]
var setComponentSize = _useState[1]
var handleResize = useCallback(
function handleResize() {
if (ref.current) {
setComponentSize(getSize(ref.current))
}
},
[ref]
)
useIsomorphicLayoutEffect(
function() {
if (!ref.current) {
return
}
handleResize()
if (typeof ResizeObserver === 'function') {
var resizeObserver = new ResizeObserver(function() {
handleResize()
})
resizeObserver.observe(ref.current)
return function() {
resizeObserver.disconnect(ref.current)
resizeObserver = null
}
} else {
window.addEventListener('resize', handleResize)
return function() {
window.removeEventListener('resize', handleResize)
}
}
},
[ref.current]
)
return ComponentSize
}
module.exports = useComponentSize