@react-hook/event
Version:
A React hook for managing event listeners, e.g. removing events when a component unmounts.
92 lines (76 loc) • 4.49 kB
Markdown
<hr>
<div align="center">
<h1 align="center">
useEvent()
</h1>
</div>
<p align="center">
<a href="https://bundlephobia.com/result?p=@react-hook/event">
<img alt="Bundlephobia" src="https://img.shields.io/bundlephobia/minzip/@react-hook/event?style=for-the-badge&labelColor=24292e">
</a>
<a aria-label="Types" href="https://www.npmjs.com/package/@react-hook/event">
<img alt="Types" src="https://img.shields.io/npm/types/@react-hook/event?style=for-the-badge&labelColor=24292e">
</a>
<a aria-label="Build status" href="https://travis-ci.com/jaredLunde/react-hook">
<img alt="Build status" src="https://img.shields.io/travis/com/jaredLunde/react-hook?style=for-the-badge&labelColor=24292e">
</a>
<a aria-label="NPM version" href="https://www.npmjs.com/package/@react-hook/event">
<img alt="NPM Version" src="https://img.shields.io/npm/v/@react-hook/event?style=for-the-badge&labelColor=24292e">
</a>
<a aria-label="License" href="https://jaredlunde.mit-license.org/">
<img alt="MIT License" src="https://img.shields.io/npm/l/@react-hook/event?style=for-the-badge&labelColor=24292e">
</a>
</p>
<pre align="center">npm i @react-hook/event</pre>
<hr>
A React hook for adding events to HTML elements. This hook cleans up your listeners
automatically when it unmounts. You won't have to worry about wrapping your
listener in a `useCallback()` because this hook makes sure your most recent callback
is always invoked.
## Quick Start
```jsx harmony
import * as React from 'react'
import useEvent from '@react-hook/event'
// Logs an event each time target.current is clicked
const Component = () => {
const target = useRef(null)
useEvent(target, 'click', (event) => console.log(event))
return <div ref={target} />
}
// Logs an event each time the `document` is clicked
const useLogDocumentClick = () => {
useEvent(document, 'click', (event) => console.log(event))
}
// Logs an event each time the `window` is clicked
const useLogWindowClick = () => {
useEvent(window, 'click', (event) => console.log(event))
}
// Logs an event each time element#foo` is clicked
const useLogElementClick = () => {
useEvent(document.getElementById('foo'), 'click', (event) =>
console.log(event)
)
}
```
## API
### useEvent(target, type, listener)
```ts
const useEvent = <
// Also has Window, Document overloads
T extends HTMLElement = HTMLElement,
K extends keyof HTMLElementEventMap = keyof HTMLElementEventMap
>(
target: React.RefObject<T> | T | Window | Document | null,
type: K,
listener: EventListener<K>,
cleanup?: (...args: any[]) => any
)
```
| Argument | Type | Required? | Description |
| -------- | ---------------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| target | <code>React.RefObject<T> | T | Window | Document | null</code> | Yes | The React ref, `window`, or `document` to add the event listener to |
| type | `keyof EventMap` | Yes | The type of event to listen for |
| listener | `(this: T, ev: EventMap[K]) => any` | Yes | The callback invoked when the event type fires |
| cleanup | `(...args: any[]) => any` | No | This callback will be invoked when the event unmounts. This is _in addition_ to the automatic event listener cleanup that occurs. A common use case could be something like clearing a timeout. |
## LICENSE
MIT