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

aurelia-blur-attribute

v0.1.5

Published

A plugin to help manage focus inside an application.

Downloads

33

Readme

aurelia-blur-attribute

Join the chat at https://gitter.im/aurelia/discuss CircleCI

[Introduction]

This article covers the blur plugin for Aurelia. This plugin is created for managing focus in your application. The plugin supports the use of dynamic elements matching, via either element references or CSS selectors. Online Demo

[Installing The Plugin]

  1. In your JSPM-based project install the plugin via jspm with following command
jspm install aurelia-blur-attribute

If you use Webpack, install the plugin with the following command

npm install aurelia-blur-attribute --save

If you use the Aurelia CLI, install the plugin with the following command

au import aurelia-blur-attribute

alternatively you can manually add these dependencies to your vendor bundle:

  ...
  "dependencies": [
    {
      "name": "aurelia-blur-attribute",
      "path": "../node_modules/aurelia-blur-attribute/dist/amd",
      "main": "aurelia-blur-attribute"
    }
  ]
  1. Make sure you use manual bootstrapping. In order to do so open your index.html and locate the element with the attribute aurelia-app. Change it to look like this:
  <body aurelia-app="main">...</body>
  1. Create (if you haven't already) a file main.js in your src folder with following content:
  export function configure(aurelia) {

    /**
     * We will cover reasons behind these options in later sections
     */
    let listeningModeOptions = {
      pointer: false, // listen for pointer event interaction
      touch: false, // listen for touch event interaction
      mouse: true, // listen for mouse event interaction
      focus: false, // listen for foucs event
      windowBlur: false // listen for window blur event (navigating away from window)
    };

    aurelia.use
      .standardConfiguration()
      .developmentLogging()
      .plugin('aurelia-blur-attribute', listeningModeOptions);

    aurelia.start().then(a => a.setRoot());
  }

[Using The Plugin]

There are a few scenarios you can take advantage of the Aurelia blur plugin.

  1. You can use the dialog service to control when a form should be hidden. This is a common case, consider the following dom structure

It's clear that our intent is only trigger the blur, when we interact with any elements outside the form element. One may implement it like following:

  <div>
    <button click.delegate="formIsBlur = false">Show Form</button>
    <form if.bind="formIsBlur">
      <input blur.trigger="formIsBlur = true" />
      <select blur.trigger="formIsBlur = true"></select>
      <input blur.trigger="formIsBlur = true" />
    </form>

    <!-- Or more optimized version -->
    <form if.bind="formIsBlur" blur.capture="formIsBlur = true">
      <input />
      <select></select>
      <input />
    </form>
  </div>

This is often insufficient, as what we do want is to react when either (pointer/ touch/ mouse) down, or focus on elements outside of the form, but what we will get is any focus navigation between inputs. The plugin solves this for you, by listening to some critical events to determine if focus is still inside an element.

  <div>
    <button click.delegate="formIsBlur = false">Show Form</button>
    <form if.bind="formIsBlur" blur.bind="formIsBlur">
      <input />
      <select ></select>
      <input />
    </form>

Notice the attribute differences: blur.capture / blur.trigger vs blur.bind. When using blur.bind, we are using the plugin, instead event listener.

Usage Examples / Scenarios

TODO

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:
npm run 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

npm run test

Acknowledgement

Thanks goes to Dwayne Charrington for his Aurelia-TypeScript starter package https://github.com/Vheissu/aurelia-typescript-plugin