Skip to content

Instantly share code, notes, and snippets.

@ambroseus
Last active January 2, 2024 09:47
Show Gist options
  • Save ambroseus/c729dcf2e4f5853c27d0c1ee185e3704 to your computer and use it in GitHub Desktop.
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
// 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