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

@cogizmo/fluid-triggered-method

v0.7.5

Published

Custom Element that invokes an element's method when a specified event is received.

Downloads

69

Readme

<fluid-triggered-method>

Listens for an event on one or more subjects and calls a method on one or more targets when that event is handled.

Usage

Invoke the remote method on the parent element every time a trigger event is received by the window.

<fluid-triggered-method handle="trigger" method="remote">
</fluid-triggered-method>

Installation

<fluid-triggered-method> is available on NPM and may be installed as a dependency.

> npm install @cogizmo/fluid-triggered-method
  1. Place the files on your server.

  2. Install the appropriate cogizmo/Cogizmo.

    • From npm
    > npm install @cogizmo/cogizmo
    • From github
  3. Add Cogizmo to your document <head>.

    <script src="path/to/Cogizmo.js"></script>
  4. Add <fluid-triggered-method> element to your document.

    <script src="path/to/fluid-triggered-method/component.js"></script>
  5. Use element whereever you want to transclude html.

    <fluid-triggered-method></fluid-triggered-method>

Declarative API (HTML)

handle attribute

String<EventName>

The event that the proxy handler listens for to trigger the method call. Will listen for 'trigger', unless specified.

<fluid-triggered-method handle="my-event">
</fluid-triggered-method>

listens attribute

String<CSS Selector>

Will trigger the method for each element returned by a valid CSS query selector. If omitted, <fluid-triggered-method> will listen on the window or global object.

<fluid-triggered-method handle="multi-event" listens=".Class">
</fluid-triggered-method>

method attribute

String<MethodName> Case-Sensitive

The method to call on the target element(s) when the event is handled. The method must be publicly accessible on the element object, not an internal or private API.

<fluid-triggered-method method="callMe">
</fluid-triggered-method>

targets attribute

String<CSS Selector>

Array of element nodes to invoke the method on when the event is handled. If omitted, <fluid-triggered-method> will invoke the method on it's host or it's parentElement.

<fluid-triggered-method targets="">
</fluid-triggered-method>

cancel attribute

Boolean

Event behaves as if preventDefault() has been called on it.

<fluid-triggered-method handle="cancelme" cancel></fluid-triggered-method>

stop attribute

Boolean

Calls stopPropagation() on the event when it is handled.

<fluid-triggered-method handle="happening" stop></fluid-triggered-method>

immediate attribute

Boolean

If stop attribute is true, then when the event is handled, stopImmediatePropagation() will be called on it, preventing further bubbling.

<fluid-triggered-method handle="trigger" stop immediate>
</fluid-triggered-method>

Imperative API (JS/ES)

element.handle

Returns String

The name of the event that <fluid-triggered-method> is listening for. Changing the event will remove all listeners for the previous event name and add new listeners for the new name.

element.listensSelector

Returns String<CSSSelector>

Gets or sets the selector on which to listen for the desired event on. Will remove listeners and add new listeners when the selector is changed.

element.listens

Returns Array - ReadOnly

An Array of element nodes that listeners will be added to.

element.targetSelector

Returns String<CSSSelector>

Gets or sets the selector on which to invoke the method and forward the event. Will remove listeners and add new listeners when the selector is changed.

element.targets

Returns Array - ReadOnly

An Array of element nodes that the method will be called on.

element.cancel

Returns Boolean

Whether to call preventDefault() on the handled event.

element.stop

Returns Boolean

Whether to call stopPropagation() on the handled event.

element.immediate

Returns Boolean

Whether to call stopImmediatePropagation() on the handled event.

DOM Events

<fluid-triggered-method> is intended as a method proxy that is triggerd when events are handled. It does not currently dispatch its own events.