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

react-item-filters

v0.1.67

Published

A library that helps filtering data client-side.

Downloads

30

Readme

React Item Filters

GitHub NPM Package Easily create components that offer product filtering in client side react. Created as a way to simply add filtering to a list of items. Currently only usable client side access with hooks.

Note: This is a hobby project in early stage. There is no doubt it has unexpected errors from unforseen edge cases. If you plan on using this, consider testing thoroughly with your use case.

Table of Contents

Installation

To install this React addon, you can use either npm or yarn. Run the following command in your project directory:

npm install react-item-filters

or

yarn add react-item-filters

Usage

Import the necessary components from the react-item-filters package and include them in your code. For example using the checkbox filter ...

import { useEffect, useState } from "react";
import {
  CheckboxFilterProps,
  FilterProvider,
  useCheckboxFilter,
  useFilter,
} from "react-item-filters/src";

function CheckboxElement(props: CheckboxFilterProps) {
  const [checked, setChecked] = useState(
    props.preloadedCheckedLabels.includes(props.label)
  );
  useEffect(() => {
    //must return a function to clear the event listeners or you will have memory leaks.
    const clearingFunction = props.subscribe("filterClear", () => {
      setChecked(false);
    });
    const updateClearFunction = props.subscribe("filterUpdate", () =>
      console.log("Filter updated.")
    );
    return () => {
      clearingFunction();
      updateClearFunction();
    };
  }, [props.onFilterClear]);
  return (
    <div>
      <input
        id={props.label}
        type="checkbox"
        onChange={(e) => {
          props.setChecked(props.label, checked);
        }}
      />
      <label htmlFor={props.label}>{props.label}</label>
    </div>
  );
}
function App() {
  const [products, setProducts] = useState([]);

  useEffect(() => {
    //fetch data
    setProducts(someData);
    //or
    setProducts([
      { color: "Red", weight: 0.2 },
      { color: "Blue", weight: 0.3 },
    ]);
  }, []);

  const checkboxSelectorFunction = (element) => element.color;

  const { filteredData, onFiltersCleared } = useFilter();

  const colorCheckboxes = useCheckboxFilter({
    selectorFunction: checkboxSelectorFunction,
    name: "ColorCheckboxFilter",
    prettyLabels: true,
    serializeToHistory: true,
  });

  const checkboxLabels = colorCheckboxes.labels ?? [];

  return (
    <FilterProvider initialData={products}>
      <div>
        <h1>Colors:</h1>
        {checkboxLabels.map((label) =>
          label ? (
            <CheckboxElement
              key={label}
              label={label}
              subscribe={colorCheckboxes.subscribe}
              setChecked={colorCheckboxes.setChecked}
              preloadedCheckedLabels={colorCheckboxes.preloadedCheckedLabels}
            />
          ) : null
        )}
      </div>
      <div>
        <h1>Item List</h1>
        {filteredData.map((e) => (
          <DataComponent data={e} />
        ))}
      </div>
    </FilterProvider>
  );
}

export default App;

Docs

Link to Documentation or can be generated using:

npm run docs

Plans

Future plans are to increase robustness and usability of the library and possibly add some other features like ...

  • [ ] Add range selector filter
  • [ ] Add sorting functionality

Contributing

Contributions are welcome! If you have any ideas, suggestions, or bug reports, please open an issue.

License

This project is licensed under the MIT License. Feel free to use and modify the code as per the terms of the license.