Last active
January 2, 2024 09:47
-
-
Save ambroseus/c729dcf2e4f5853c27d0c1ee185e3704 to your computer and use it in GitHub Desktop.
A Hook to define an event handler with an always-stable function identity
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
// A Hook to define an event handler with an always-stable function identity | |
function useEvent(handler) { | |
const handlerRef = useRef(null); | |
// In a real implementation, this would run before layout effects | |
useLayoutEffect(() => { | |
handlerRef.current = handler; | |
}); | |
return useCallback((...args) => { | |
// In a real implementation, this would throw if called during render | |
const fn = handlerRef.current; | |
return fn(...args); | |
}, []); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/reactjs/rfcs/blob/useevent/text/0000-useevent.md
https://react.dev/reference/react/experimental_useEffectEvent