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

suggest-plugin

v1.8.0

Published

This JS native accessible plugin will propose suggestions from ajax response.

Downloads

27

Readme

suggestPlugin

This JS native accessible plugin will propose suggestions from ajax response.

The display and animations are to be managed in CSS side using defaults or configured classes. You can also use JS custom events provided by the plugin to listen and make custom actions.

It provide also a minimal template system to display more informations in the list, see below.

Demo: Codepen

You can also find it on npm: https://www.npmjs.com/package/suggest-plugin

npm install suggest-plugin

The plugin is commonJS (tested with browserify) and AMD (untested) compliant.

Plugin initialization

Default options are:

{
  matchWith      : 'label',               // match user input with this name ('matchWith' is the new name for 'label')
  minLength      : 1,                     // request after [minLength] characters
  wrapperClass   : 'suggest-wrapper',     // class for the div that wrap both input and results
  activeClass    : 'active',              // class for active items (hover+active)
  resultsClass   : 'suggest-list',        // class to the results list element
  itemClass      : 'suggest-list__item',  // class on each items
  visibilityClass: 'is-opened'            // class to define results list visibility
};

Simple use with defaults options:

suggestPlugin();

Custom example:

suggestPlugin({
  minLength: 3,
  activeClass: 'is-focused'
});

HTML markup

Example for OMDb API:

Note the data-suggest-template attribute usage. By default, items will be the defined 'label'. If needed, you can also display other informations coming from the API such as the 'Type' in that case with custom template for the desired display.

<div data-suggest='{"arrayName": "Search", "label": "Title"}' data-suggest-template='<span class="type">+<% Type %>+</span> - +<% Title %>' data-suggest-url="//www.omdbapi.com/?s=">
  <label for="searchFilm">search film title</label>
  <input id="searchFilm" type="text" name="searchFilm">
</div>

Example for restcountries API:

<div data-suggest='{"label": "name"}' data-suggest-url="//restcountries.eu/rest/v1/name/">
  <label for="searchCountry">search country name</label>
  <input id="searchCountry" type="text" name="searchCountry"/>
</div>

Example for stackexchange API (stackOverflow here):

<div data-suggest='{"arrayName": "items", "label": "title"}' data-suggest-url="//api.stackexchange.com/2.0/search?site=stackoverflow.com&amp;tagged=javascript&amp;pagesize=10&amp;intitle=">
  <label for="searchStackoverflow">search question on stackoverflow</label>
  <input id="searchStackoverflow" type="text" name="searchStackoverflow"/>
</div>

Custom events

The plugin send some custom events that can be listened:

  • suggestRequest: before the ajax call
  • suggestOpen: before results list opening
  • suggestClose: before results list closing
  • suggestSelected: after the user has made a choice

Example usage:

var suggestPluginElements = document.querySelectorAll('[data-suggest]');

for (var i = 0, len = suggestPluginElements.length; i < len; i++){
  suggestPluginElements[i].addEventListener('suggestRequest', function(e){
    console.log(e);
  });
}