useEventListener
If you find yourself adding a lot of event listeners using useEffect
you might consider moving that logic to a custom hook. In the recipe below we create a useEventListener
hook that handles checking if addEventListener
is supported, adding the event listener, and removal on cleanup.
Usage
useEventListener.ts
Here's how you can use the useEventListener
hook in a React component:
In this example, the useEventListener
hook takes three arguments: the name of the event to listen for, a function to handle the event, and an optional RefObject
that refers to the element on which to listen for the event (defaulting to document
). The ExampleComponent
uses this hook to listen for clicks on a <div>
element and log a message when clicked.
Last updated