Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-advanced-click-away

mbixby3.8kMIT2.1.7TypeScript support: included

A worry-free click away listener for advanced use cases.

click away, click outside, react

readme

react-advanced-click-away

A worry-free click away listener for advanced use cases.

NPM CI Coverage

Installation

npm install --save react-advanced-click-away
# or
yarn add react-advanced-click-away

Simple example

import React from 'react';
import ClickAwayListener from 'react-advanced-click-away';

const MyComponent = () => (
  <ClickAwayListener onClickAway={() => console.log('Clicked away!')}>
    <div>
      Inside
    </div>
  </ClickAwayListener>
);

export default MyComponent;

Motivation

The original version of this component is adapted from Material UI's ClickAwayListener and inherits basic features like support for touch events and React portals, as well as many fixes for non-obvious issues, like with handling iframes or for this bug with useEffect timing in React v16. It passes all of Material UI's original unit tests1.

This library however aims to support some advanced cases when nesting multiple <ClickAwayListener> components, which is useful when building nested popovers, menus and modals. Notably, we listen to events during the capture phase, which often lets us stop mouse event propagation elsewhere our React tree without affecting the click away behaviour of unrelated components.

Docs and demos

Check out the docs and demos to see everything in action.

Props

| Name | Description | | Default | |------------------|-----------------------------------------------------------------------------------------------|---------|---------| | onClickAway* | Handler called on click away | (event: MouseEvent | TouchEvent) => void | | children | A ref-accepting child | ReactElement | | mouseEvent | Mouse click away event to listen to | "click" | "mousedown" | "mouseup" | "mousedown" | | touchEvent | Touch click away event to listen to | "touchstart" | "touchend" | "touchstart" | | disableReactTree | If true, elements inside portals will be considered to be outside of the click away listener. | boolean | false | | ignoreScrollbars | If true, clicking the window scrollbars will not trigger the onClickAway() handler. | boolean | false | | layer | Root element, document by default. | boolean | |

Layers

Wrap modal contents in a <ClickAwayLayer> to freeze any click away listeners underneath the modal.

If building modals you may also consider locking scroll, locking focus and in some cases stopping event propagation.

// Click away listeners underneath the modal will be disabled until the modal is unmounted.
const BaseModal = ({ open, children }) => (
  <>
    {open && (
      <ScrollLock>
        <FocusLock>
          <StopPropagation all>
            <ClickAwayLayer>
              <div role="dialog">{children}</div>
            </ClickAwayLayer>
          </StopPropagation>
        </FocusLock>
      </ScrollLock>
    )}
  </>
);

// Don't forget to establish a root layer in the app.
// This is not needed if you don't use click away layers.
const App = ({ children }) => <ClickAwayLayer root><Component /></Layer>

See docs for examples of usage.

Attribution

The original version of this component was adapted from Material UI.

https://github.com/mui-org/material-ui/blob/512896/packages/mui-material/src/ClickAwayListener/ClickAwayListener.tsx

License

This project is licensed under the terms of the MIT license.


1. With one minor prop change in mouseEvent / touchEvent. Compatibility with MUI is not guaranteed.

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.1.7 (2022-12-02)

2.1.6 (2022-05-18)

Bug Fixes

  • fix touch handler, don't handle synthetic events in disabled state (04d5c79)

2.1.5 (2022-05-11)

Bug Fixes

  • pass through props in StopPropagation (a8255f9)

2.1.4 (2022-05-09)

Bug Fixes

  • remove erroneous usage of composedPath (dd4a3a6)

2.1.3 (2022-05-09)

Bug Fixes

  • allow an undefined native event when stopping event propagation (a5a62a8)

2.1.2 (2022-05-09)

Bug Fixes

  • allow passing null as child to StopPropagation (1cd024a)

2.1.1 (2022-05-09)

Bug Fixes

  • revert to original mechanism for propagation through portals (3061482)

2.1.0 (2022-05-09)

Features

  • make layer context optional (e21e9b8)

2.0.0 (2022-05-09)

⚠ BREAKING CHANGES

  • Update click away technique to use capture phase event listeners

Features

  • update click away method (e4d3319)

1.0.1 (2022-03-24)

1.0.0 (2022-03-23)

Features