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

delegate-event-listener

v1.2.0

Published

Delegate event listener.

Downloads

4,971

Readme

delegate-event-listener

Build Status BrowserStack Status

Delegate event listener.

Features:

  • Flexible usage with native addEventListener and removeEventListener
  • Current target reference with event.delegateTarget property
  • Prevents listener triggering if target element is inside form [disabled] element
  • Handles delegating of non-delegated events such as focus, blur, mouseenter/leave, pointerenter/leave

Install

npm install delegate-event-listener --save

Usage

Given following markup and JS functionality clicking only on #frankie will trigger event listener even though event handler is attached on #jackie.

<div id="jackie">
	<div id="frankie">Frankie</div>
	<div id="sally">Sally</div>
</div>
import delegate from 'delegate-event-listener';

const element = document.querySelector('#jackie');

element.addEventListener(
	'click',
	delegate('#frankie', (e) => {
		// e.delegateTarget === document.querySelector('#frankie')
		// Clicked on #frankie!
	})
);

// Delegating non-delegated events such as `focus` is achieved with alternative function output
element.addEventListener(
	...delegate('focus', '#frankie', (e) => {
		// e.delegateTarget === document.querySelector('#frankie')
		// Clicked on #frankie!
	})
);

API

delegate([eventName, ]selector, listener)

Returns: Function|array

Delegated function.

If delegate function call contains 3 arguments, first argument is event name which will then be used to resolve proper delegated event. Array of values is then returned, first argument being event name used to fix event (e.g. mouseover for mouseenter), and second argument being event handler. Those values should then be applied to addEventListener (either via spreading or manual assignment).

Original event (one which was supplied to function) is available as event.originalEventType. Resolved event is available to native event.type:

eventName

Type: string

Event name. Used only for alternative function output. Event will be mapped to proper delegatable event (e.g. mouseenter for mouseover).

selector

Type: string

CSS selector whose ancestor is element on which event handler is attached. If it’s empty string, event handler will be attached to element which called addEventListener.

listener

Type: Function

Event listener for event handler.

Native Event object is decorated with event.delegateTarget property. This property is same as node resolved from selector. event.currentTarget is equal to node on which event listener is attached.

For non-delegated event handlers attached directly to an element, event.delegateTarget will always be equal to event.currentTarget.

FAQ

Triggering custom event doesn’t run listener function

Event propagation in Event constructor is not active by default. You have to explicitly enable it.

document.body.addEventListener(
	'click',
	delegate('button', () => {
		// …
	})
);

// Setting `bubbles: true` makes event propagation active
document
	.querySelector('button')
	.dispatchEvent(new Event('click', { bubbles: true }));

Browser support

Tested in IE9+ and all modern browsers.

Test

For automated tests, run npm run test:automated (append :watch for watcher support).

License

MIT © Ivan Nikolić