
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Perform an action when the user clicks away from an element of interest, such as a popup, dropdown, or modal.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Perform an action when the user clicks away from an element of interest, such as a popup, dropdown, or modal.
# npm
npm install --save click-away
# yarn
yarn add click-away
Suppose you're working on a Modal
component that renders a dialog box, and you wish to close the modal if the user clicks away.
import React from 'react';
// Not shown: CSS rules for `.modal`, `.modal-open`, `.modal-closed`
export default function Modal({isOpen, onClose, children}) {
const className = `modal modal-${isOpen ? 'open' : 'closed'}`;
return (
<div className={className}>
{children}
</div>
);
}
Adding behavior to close the modal is as easy as passing click-away
as a ref
, with a reference to the callback you wish to use:
import React from 'react';
import callOnClickAway from 'click-away';
export default function Modal({isOpen, onClose, children}) {
const className = `modal modal-${isOpen ? 'open' : 'closed'}`;
return (
<div className={className} ref={callOnClickAway(onClose)}>
{children}
</div>
);
}
Returns a function you can pass as a React or Preact ref
, which calls the given callback when the user clicks anywhere outside the rendered element.
For instance, if you render this:
<div ref={callOnClickAway(handler)}>Hello!</div>
then the handler
function will be called any time the use clicks outside the div.
click-away
If you're using emotion
, styled-components
, glamorous
, or similar, keep in mind you need to pass the callback to innerRef
instead of ref
.
This project uses ESLint-style commit messages.
FAQs
Perform an action when the user clicks away from an element of interest, such as a popup, dropdown, or modal.
The npm package click-away receives a total of 19 weekly downloads. As such, click-away popularity was classified as not popular.
We found that click-away demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.