Last active
August 2, 2023 13:21
-
-
Save casprine/9fa26910ad1cbb9cf5e861dc25ad917e to your computer and use it in GitHub Desktop.
React hook to trace why a component re-render because of prop changes
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, useEffect } from 'react'; | |
function useTraceUpdate(props: any) { | |
const prev = useRef(props); | |
useEffect(() => { | |
const changedProps = Object.entries(props).reduce((ps, [k, v]) => { | |
if (prev.current[k] !== v) { | |
ps[k] = [prev.current[k], v]; | |
} | |
return ps; | |
}, {}); | |
if (Object.keys(changedProps).length > 0) { | |
console.log('Changed props:', changedProps); | |
} | |
prev.current = props; | |
}); | |
} | |
export default useTraceUpdate; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment