![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
react-use-clickout
Advanced tools
custom react hook to handle an event on click ouside of a component
It's a custom hook that handles an event after clicking out of the component
Alright, let's go. First you should install the library
Using yarn
yarn add react-use-clickout
Or npm
npm i react-use-clickout
Prefer to install it derectly on your project, not globally
import React from 'react';
import useClickout from 'react-use-clickout';
function App() {
const [
ref, // it's to be assigned to the component reference
bindHandler // it's a function to bind a callback handler
] = useClickout();
/**
* The function passed as a callback will be called
* if clicked out of the referenced component
*/
bindHandler(() => {
console.log('clickout');
});
return (
<div>
<p ref={ref}>
Referenced component
</p>
<div>
It's out of the referenced component
</div>
</div>
);
}
export default App;
Changing Events is possible. You can pass an array with the events to be listened. The default are mousedown
and touchstart
.
const [ref, bindClickout] = useClickout(['click']);
Although the name of this library is clickout, it isn't only about click event.
It has the react@^16.8.0
and react-dom@^16.8.0
as peer-dependencies
FAQs
custom react hook to handle an event on click ouside of a component
The npm package react-use-clickout receives a total of 0 weekly downloads. As such, react-use-clickout popularity was classified as not popular.
We found that react-use-clickout demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.