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

filterlist

v3.4.4

Published

filter lists, tables, or any collection of html elements without page reload. Multiple filters can be set using data attributes or url parameters or javascript.

Downloads

50

Readme

Filterlist is a small (4kb) TypeScript library with no dependencies that allows filtering of arbitrary HTML elements via data attributes. Filtering can be triggered using URL parameters, or by adding form elements to page, or programmatically via another script.

Examples

Examples in GitHub Repo:

Examples on Web:

Features

  • Requires no CSS
  • Optionally updates URL when filters are changed without page refresh
  • Can be used with any group of HTML elements
  • Allows binding form fields to HTML elements via data-attributes (no scripting necessay)

Usage

  • Below snippet shows how to filter a list via a select element:
		<select data-ignore="all" name="type">
			<option value="all">Select type</option>
			<option value="fruit">fruit</option>
			<option value="vegetable">vegetable</option>
			<option value="dairy">dairy</option>
		</select>
		<ul data-filter-names="type">
			<li data-filter-type="fruit">Apple</li>
			<li data-filter-type="fruit">Banana</li>
			<li data-filter-type="dairy">Butter</li>
			<li data-filter-type="vegetable">Carrot</li>
			<li data-filter-type="dairy">Cheese</li>
			<li data-filter-type="dairy">Cream</li>
			<li data-filter-type="fruit">Kiwi</li>
			<li data-filter-type="dairy">Milk</li>
			<li data-filter-type="vegetable">Onion</li>
			<li data-filter-type="fruit">Orange</li>
			<li data-filter-type="fruit">Pear</li>
			<li data-filter-type="vegetable">Tomato</li>
			<li data-filter-type="dairy">Yogurt</li>
		</ul>

		<script type="module">
			import Filterlist from '../dist/filterlist.js';
			const filterlist = new Filterlist({
				element: document.querySelector('ul'),
				urlIsUpdatable: true
			});
		</script>
  • Name of filters should be set on the list's parent element using data attribute with the syntax data-filter-names=“filtername1 filtername2”.
  • List items that match a filter need a data attribute with syntax data-filter-filtername=“filtervalue1”. If an item has multiple values for a certain filter separate them by space: data-filter-filtername=“filtervalue1 filtervalue2”.
  • Use data-ignore="ignoreValue" on form elements such as "Select" to specify value that should be taken into account during filtering, for example an "all" value in dropdown list.

Options

  • element: document.getElementById('myList') This is the only required option.

  • urlIsUpdatable: true If urlIsUpdatable is set to true (default is false) script updates browser URL when a filter changes.

  • lastClass: type string, default = 'last' This allows you to define a class to be set on last visible list item in case you want special styling for the last item in your list.

  • hiddenClass: type string, default = 'hidden' This allows you to define a class to be set on elements that are filtered out. Styles you set with this class will be applied to elements that do not mach the currently set filters.

  • initCallback: function() { console.log(this); } This callback function is invoked as soon as FilterList is initialised.

  • filtersCallback: function() { console.log(this); } This callback function is invoked every time filters are applied.

Public methods

  • setFilter({filtername: filtervalue}) Use this method to change a filter's value from javascript. For example you may want to add a button to your page that once clicked, it resets all filters to their initial value. For usage example see the demo page.