2.1.7 • Published 1 year ago

react-advanced-click-away v2.1.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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

NameDescriptionDefault
onClickAway*Handler called on click away(event: MouseEvent | TouchEvent) => void
childrenA ref-accepting childReactElement
mouseEventMouse click away event to listen to"click" | "mousedown" | "mouseup""mousedown"
touchEventTouch click away event to listen to"touchstart" | "touchend""touchstart"
disableReactTreeIf true, elements inside portals will be considered to be outside of the click away listener.booleanfalse
ignoreScrollbarsIf true, clicking the window scrollbars will not trigger the onClickAway() handler.booleanfalse
layerRoot 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.

2.1.7

1 year ago

2.1.6

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.5

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago