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

lively.keyboard

v0.1.1

Published

- capturing DOM key, input, composition and clipboard events - mapping that to human readable event specs (e.g. via `Keys.canonicalizeEvent(evt)`) - command handler that maps key specs like `Ctrl-A` to executable command objects (`{name, exec}`).

Downloads

2

Readme

lively.keyboard

  • capturing DOM key, input, composition and clipboard events
  • mapping that to human readable event specs (e.g. via Keys.canonicalizeEvent(evt))
  • command handler that maps key specs like Ctrl-A to executable command objects ({name, exec}).

Key bindings + commands

Example spec for bindings:

An object that should act as a target for key events can implement properties (or getters) for keybindings and commands:

let obj = {
  // ...
  get keybindings() {
    return [
      {keys: {mac: "Meta-A|Ctrl-X H", win: "Ctrl-A|Ctrl-X H"}, command: "select all"}
    ];
  },

  get commands() {
    return [
      {
        name: "select all",
        doc: "Selects entire text contents.",
        scrollCursorIntoView: false,
        multiSelectAction: "single",
        exec: function(obj, args, count, evt) {/*magic happens here*/}
      }
    ];
  }
};

The CommandTrait and KeyBindingsTrait will then provide a) an interface to run those commands programmatically (obj.execCommand) and b) list supported commands, c) lookup keybindings given a command name, d) simulate key inputs.

Event integration

Keyboard relevant DOM events are:

  • keydown
  • keyup
  • input
  • compositionupdate
  • compositionend
  • compositionstart
  • copy, cut, paste

Those will be bound by DOMInputCapture, composed to be used with the KeyHandler mentioned above and then mapped via an event dispatcher object to the real event target.

An event integration can look like this:

let methodMap = {
  keydown: "onKeyDown",
  keyup: "onKeyUp",
  input: "onTextInput",
  copy: "onCopy",
  cut: "onCut",
  paste: "onPaste",
}

let eventDispatcher = {
  dispatchDOMEvent: evt => {
    tScene.pointerEvent.event2D = evt;

    let target = tScene.keyboardTObject || tScene,
        method = methodMap[evt.type];

    // invokes onXXX handler method of target tObject.
    // if the return value is truthy than stop event dispatch
    // otherwise, bubble up the parent chain
    while (target) {
      if (typeof target[method] !== "function") {
        tScene.logError(`${target} does not have method ${method}!`);
      }
      try {
        let result = target[method](tScene.pointerEvent);
        if (result) { evt.stopPropagation(); return; }
        target = target.parent;
      } catch (err) {
        console.error(`Error in event handler ${target}.${method}:`, err);
        return;
      }
    }
    console.warn(`Unhandled event: ${evt.type}`);
  }
};

tScene.domInputCapture = new lively.keyboard.DOMInputCapture(eventDispatcher);
tScene.domInputCapture.install(document.body);

License

MIT