File size: 610 Bytes
1e92f2d |
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 |
"use client"
import { useEffect, useRef } from "react"
export const useUpdateEffect: typeof useEffect = (effect, deps) => {
const renderCycleRef = useRef(false)
const effectCycleRef = useRef(false)
useEffect(() => {
const isMounted = renderCycleRef.current
const shouldRun = isMounted && effectCycleRef.current
if (shouldRun) {
return effect()
}
effectCycleRef.current = true
// eslint-disable-next-line react-hooks/exhaustive-deps
}, deps)
useEffect(() => {
renderCycleRef.current = true
return () => {
renderCycleRef.current = false
}
}, [])
}
|