use-dom-outside-click
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

use-dom-outside-click

react hook to handle outside click events

Version

Getting Started

You can install the module via npm or yarn:

npm i use-dom-outside-click --save
yarn add use-dom-outside-click

Example

import { useOutsideClick } from 'use-dom-outside-click';
const [isPanelOpen, setIsPanelOpen] = useState(false)

const triggerRef = useRef<HTMLButtonElement>();
const panelRef= useRef<HTMLDivElement>();

// third argument is optional
useOutsideClick(panelRef, () => setIsPanelOpen(false), [triggerRef]);

const handleClick = () => {
  setIsPanelOpen(open => !open)
}

<Popover>
  <Popover.Button ref={triggerRef} onClick={handleClick}>
    // button code
  </Popover.Button>
  <Popover.Panel ref={panelRef} isOpen={isPanelOpen}>
    // panel code
  </Popover.Panel>
</Popover>

chrome_7DgcqHreNp

Reference

useOutsideClick(elementRef, callback, [...exceptionsRefs]);
  • elementRef - reference of the element from which you want to detect the outside click
  • callback - function to execute when clicked outside the element
  • exceptionsRefs (optional) - array of references in which you want to prevent the callback from being executed if they are clicked

Package Sidebar

Install

npm i use-dom-outside-click

Weekly Downloads

186

Version

1.2.1

License

ISC

Unpacked Size

8.08 kB

Total Files

10

Last publish

Collaborators

  • amendezm