aurelia-mousetrap

0.1.3 • Public • Published

aurelia-mousetrap

This plugin is integrates mousetrap.js and Aurelia by dispatching messages through the Event Aggregator. The keymap and callback are both configurable.

It also provides three custom attributes:

  • mousetrap-focus
  • mousetrap-blur
  • mousetrap-click

Which allow you to bind the published event names into DOM events, see below.

Using the plugin

Install the plugin and configure the plugin in main.js

$ jspm install npm:aurelia-mousetrap

.plugin('aurelia-mousetrap', config => {
    // Example keymap
    config.set('keymap', {
        "/": "KS_SEARCH",
        "n": "KS_NEW"
    });
})

The example keymap above will bind the / key to publish an event named KS_SEARCH on press, and n to send KS_NEW. You can name the events however you please but the key combination should be the same spec as Mousetrap library.

Custom Attributes

Custom attributes allow you to simply make the connection between the event which is published via the EventAggregator and UI/DOM events.

mousetrap-focus

When the event is published, it focuses on the element

<input type="text" mousetrap-focus="KS_SEARCH">

mousetrap-blur

When the event is published, it blurs the element

<input type="text" mousetrap-blur="KS_BLUR">

mousetrap-click

When the event is published, it clicks on the element

<a class="btn btn-primary" mousetrap-click="KS_NEW">

Custom callback

You can specify a custom callback with the configuration as well:

config.set('callback', eventName => {
    // Do something with the eventName! 
});

Building The Code

To build the code, follow these steps.

  1. Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
  2. From the project folder, execute the following command:
npm install
  1. Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
  1. To build the code, you can now run:
gulp build
  1. You will find the compiled code in the dist folder, available in three module formats: AMD, CommonJS and ES6.

  2. See gulpfile.js for other tasks related to generating the docs and linting.

Running The Tests

To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:

  1. Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cli
  1. Ensure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspm
  1. Install the client-side dependencies with jspm:
jspm install
  1. You can now run the tests with this command:
karma start

Contributing

Source code is located in src/index.js. To build the source, run gulp build. Please follow Aurelia/Durandal Contribution Guidelines where possible through the use of GitHub pull requests.

Readme

Keywords

Package Sidebar

Install

npm i aurelia-mousetrap

Homepage

tomnewby.net

Weekly Downloads

1

Version

0.1.3

License

CC0-1.0

Last publish

Collaborators

  • tomtomau