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

rasher

v1.0.488

Published

A web browser DOM event listener and delegate management mechanism. DOM queries with native DOM methods or Sizzle. Supports current and legacy browsers (including IE7)

Downloads

351

Readme

Rasher

Rasher is a small set of utilities for managing browser DOM event listeners and delegates.

It's written in ES6 for projects which don't warrant React or Angular but may have lots of forms with user interactions.

Wherever possible, Rasher queries the DOM using the browser's native DOM methods; otherwise, it uses Sizzle.

Rasher's components are exposed as ES6 classes, too, so if you want to you can use them directly.

Rasher

Listeners and Delegates

Listeners are event handlers bound to the element raising an event. You might attach a listener to each <li /> in a <ul />, for example, or perhaps more appropriately it would be bound to a specific element inviting a particular action, like a button or a link.

Delegates are event handlers bound to a container as though they were bound to the contained element. You might attach a delegate to the <ul /> for events raised by any of its <li /> children. Perhaps it would be bound to a form, listening for changes to some radio inputs.

With Rasher, listeners and delegates are indistinguishable, and have only a simple difference in how they are applied.

Listeners

import Rasher from 'rasher'

const rasher = new Rasher()

rasher
  .find('form input[type="submit"]')
  .then((r) => {
    r.on('click').do((e) => { e.stop() })
  })

First, we use find to query the DOM for elements, using a selector.

Second, we use then to interact with the DOM elements which have been found.

Delegates

import Rasher from 'rasher'

const rasher = new Rasher()

rasher
  .find('form input[type="radio"]')
  .delegateTo('form')
  .then((r) => {
    r.on('click').do((e) => { e.stop() })
  })

Here, there is an additional method call between find and then: it is delegateTo.

We use delegateTo to query the DOM for an element, using a selector, exactly as we do with find.

Attaching handlers

In either case, whether we want to attach a listener or a delegate, we do the work with the function given to then.

The function given to then is the callOut.

The callOut is called once for each DOM element matching the query. It receives three arguments:

  1. A plain object
  2. An index
  3. A length

So:

rasher
  .find('form input[type="radio"]')
  .then((r, index, length) => {
    /* */
  })

The plain object is named r. The index identifies the position of the current element as though iterating through an array, while length is the total number of elements to iterate over.

Or:

rasher
  .find('form input[type="radio"]')
  .delegateTo('form')
  .then((r, index, length) => {
    /* */
  })

The plain object is named r. Here, the index identifies the position of the current delegate element as though iterating through an array, while length is the total number of delegate elements to iterate over.

In either case, the plain object is the entry point for attaching handlers. It follows the pattern on ... do.

r.on('click').do((event) => { /* */ })

Detaching handlers

Similarly, whether we want to detach a listener or a delegate, we do the work with the return value from then.

const R = rasher
  .find('form input[type="radio"]')
  .then((r, index, length) => {
    /* */
  })

R.stopAll()

The return value of then is a plain object, named R.

Invoking stopAll will detach handlers from all listener and delegate elements in the collection, R.

Individual handlers are identified by index, and invoking listAll will return a plain object with methods for accessing the items in the collection.

{
  size () { },
  node (index) { },
  type (index) { },
  stop (index) { },
  indexOf (element) { }
}
  1. size returns the length of the whole collection
  2. node returns the DOM element at this position
  3. type returns the DOM event type at this position
  4. stop removes the handler, as well as the object at this position in the collection

If size() returns 1 then we can call stop(0) to remove both the handler from the DOM and the item from the collection. In this case, the return value from stop(0) will be true.

Another invocation of size() will return 0, and another invocation of stop(0) will return false.

We can find the position of a specific DOM element in the collection by giving it as an argument to indexOf. Since the collection is a dynamically resizing array, the position of each element in the collection might change whenever stop is called.