New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-advanced-click-away

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-advanced-click-away

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

latest
Source
npmnpm
Version
2.1.7
Version published
Maintainers
1
Created
Source

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.

Keywords

click away

FAQs

Package last updated on 02 Dec 2022

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