Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

electrum-events

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electrum-events

Electrum Events forwards web component events to the bus.

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
514
increased by99.22%
Maintainers
1
Weekly downloads
 
Created
Source

Electrum Events

NPM version Build Status Build status

The electrum-events module forwards web component events to the bus.

The EventHandlers class provides implementations for the various event handlers needed by React web components:

  • handleFocus
  • handleChange
  • handleKeyDown, handleKeyUp and handleKeyPress
  • handleSelect

Events are of two categories:

  • Events which modify a value (change, key up/down, select).
    They are sent with the bus.notify() function.
  • Events which trigger an action (focus, button click).
    They are sent with the bus.dispatch() function.

Debug with active logging

Class EventHandlers has a property debug which can be set to log events to the console, which may prove convenient to better understand what happens.

For customized logging, set debug to a function:

const eh = new EventHandlers (obj, bus);
eh.debug = (source, event) => { /* ... */ };

The source argument will be one of focus, change, key-down, key-up, key-press and select, while the event property gives full access to the event being processed.

Keywords

FAQs

Package last updated on 11 Dec 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc