Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-click-away-listener

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-click-away-listener

A simple click away listener built with React Hooks

  • 2.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
61K
increased by6.15%
Maintainers
1
Weekly downloads
 
Created
Source

~700B React Click Away Listener

npm Coverage Status Test downloads/month pullrequest firsttimersonly

Installation

yarn add react-click-away-listener
  • It's quite small in size.
  • It's built with TypeScript.
  • It supports both Mouse and Touch Events.
  • It works with Portals (>= v2).

Usage

import ClickAwayListener from 'react-click-away-listener';

const App = () => {
	const handleClickAway = () => {
		console.log('Maybe close the popup');
	};

	return (
		<div id="app">
			<ClickAwayListener onClickAway={handleClickAway}>
				<div> Triggers whenever a click event is registered outside this div element </div>
			</ClickAwayListener>
		</div>
	);
};

Caveats:

  • Ensure the ClickAway component has just one child else React.only will throw an error.
  • It doesn't work with Text nodes.

Props

NameTypeDefaultDescription
onClickAway(event) => voidFires when a user clicks outside the click away component
mouseEvent'click' |
'mousedown' |
'mouseup'
'click'The mouse event type that gets fired on ClickAway
touchEvent'touchstart' |
'touchend'
'touchend'The touch event type that gets fired on ClickAway

Examples

LICENSE

MIT

FAQs

Package last updated on 11 May 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc