npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

clickout-event

v1.1.2

Published

Provides universal support for `clickout` and other similar events to webpages.

Downloads

2,627

Readme

Clickout-Event

Provides universal support for clickout and other similar events to any front-end frameworks.

npm version npm downloads GitHub package version license

There are many packages that are designed to capture and handle the "click outside" event of an element. Some of them target vanilla JavaScript, while some others target specific front-end framework, possibly specific version. Front-end designers in the past had to look for the right package that works for their particular scenario.

Look no further! Introducing Clickout-Event, a package that provides universal support for clickout and other similar events. It works in all scenarios: plain HTML onclickout attributes, .addEventListener('clickout') of vanilla JavaScript, .on('clickout') of jQuery, v-on:clickout directives of Vue.js, you name it. As long as a front-end framework internally uses addEventListener to handle events, Clickout-Event works for it.

License

MIT License

Requirement

In order to fully implement all native event behaviors, Clickout-Event uses the mutation observer API, so it will not work directly for legacy browsers. You may try using polyfills to make it work, but I haven't tested those yet.

Install (with module)

You can get Clickout-Event as an NPM package by running:

npm install clickout-event --save

Then add one of the following lines to your entry script:

require('clickout-event');
// or
import 'clickout-event';

And watch the magic happen.

Install (without module)

Simply download clickout-event.js. Then all you need to do is add the script tag anywhere (as long as it is before any calling of the addEventListener method, such as the beginning of the <head> section) in your HTML file:

<script src="clickout-event.js"></script>

API

Clickout-Event provides the corresponding "out-events" for the following events: click, dblclick, mousedown, mouseup, touchstart, touchend, pointerdown and pointerup. The corresponding events are then called clickout, dblclickout etc. You can then use them the same way you use any other events; see examples below.

Note that pointer events is not supported in Safari.

With each out-event, you can use event.relatedTarget to find out exactly which element fires the original event (that is, the element being clicked etc.).

Usage

HTML inline attribute

<div onclickout="console.log('clickout detected')">...</div>

Vanilla JavaScript

document.getElementById('myId').addEventListener('clickout', myListener);

jQuery

$('#myId').on('clickout', myListener);

Vue.js

<div v-on:clickout="open=false">...</div>

Angular

<div (clickout)="close()">...</div>

Other frameworks

Some frameworks (such as React and Blazor) have a fixed list of events that are supported by their event attribute syntax, so you cannot directly use their event attributes with out-events (or with any custom events for that matter) in their templates. Still, you can create custom components in these frameworks and use the vanilla addEventListener() method to register event listener.

Details

Event propagation

You can have nested elements using the out-events. In that case, unlike regular events, out-events fire in the top-down ordering; that is, the parent element will fire the event first, and then will the child elements. Similarly, when calling event.stopPropagation() (or, for example, using v-on:clickout.stop in Vue.js) on the out-events, it will be the parent element stopping the child element from firing the event.

By design, even if the propagation of the original event is stopped, the corresponding out-event will still fire regardlessly.

Dynamic elements

Feel free to add or remove elements dynamically! Clickout-Event monitors changes to the document, and will ensure the out-events work no matter which dynamic front-end framework you're using.

Content Security Policy (CSP)

When using inline event attributes, Clickout-Event is subject to the same CSP restriction as any other events; that is, 'unsafe-inline' must be allowed. Now Clickout-Event uses native mechanisms instead of eval-like methods to parse the attribute, so you don't need to allow 'unsafe-eval'.

Caveat

Since out-events are synthetic events, they are untrusted (that is, event.isTrusted == false) by nature, and your event listener is not supposed to reject the event because of this.