1.1.0 • Published 5 years ago

click-outside-hook v1.1.0

Weekly downloads
816
License
MIT
Repository
github
Last release
5 years ago

click-outside-hook

A simple react hook to detect click or touch events outside an element and execute a provided callback when this happens.

NPM CircleCI Greenkeeper badge module formats: cjs, and es

Install

yarn add click-outside-hook

Usage

import React from 'react';
import useClickOutside from 'click-outside-hook';

export default function SomeAwesomeComponent() {
  const ref = useClickOutside(() => console.log('my callback'));

  return (
    <div>
      <div ref={ref}>Awesome content</div>
    </div>
  );
}

When the user clicks or touches outside the Awesome content element, the callback is executed.

License

MIT © andreoav