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-search-box-hooks

v0.2.6

Published

React hooks for constructing search boxes with filters, using callbacks

Downloads

42

Readme

alt text

Build Size Version Downloads

React Search Box Hooks

This library provides a set of React hooks to construct search boxes for your application.

Installation

To install the package, use:

npm i react-search-box-hooks

or

yarn add react-search-box-hooks

Usage

The library provides two hooks: useSearchBox and useSearchBoxInput.

useSearchBox

The useSearchBox hook provides a state object and an action to update the search parameters, and a method to query the data. It requires two parameters:

  • queryFunc: The function to query the data. It takes a single argument, the search parameters object, and returns a Promise that resolves to an array of search results and the total number of search results.
  • initParams: The initial search parameters object.

The useSearchBox hook returns an object with the following properties:

  • items: The array of search results.
  • totalCount: The total number of search results.
  • isLoading: A boolean value indicating whether the search is in progress.
  • params: The search parameters object.
  • dispatchParams: An action to update the search parameters.

Example of usage

function MyComponent() {
  const queryFunc = useCallback((params) => {
    const items = []
    const totalCount = items.length
    resolve([items, totalCount]);
  }, []);

  const { items, totalCount, isLoading, params, dispatchParams } = useSearchBox(queryFunc, { count: 0 });

  const onInc = useCallback(() => {
    dispatchParams({ key: "count", value: params.count + 1 });
  }, [dispatchParams, params]);

  // render the search box UI
}

useSearchBoxInput

The useSearchBoxInput hook provides handlers for the search box input field. It requires three parameters:

  • dispatchParams: An action to update the search parameters.
  • paramKey: The key of the search parameter to update.
  • debounceTimeout: The debounce timeout value in milliseconds.

The useSearchBoxInput hook returns an object with the following properties:

  • ref: A ref to the input element.
  • onInput: A handler for the input event.
  • onChange: A handler for the change event.
  • onClear: A handler for the clear button event.
  • isClearable: A boolean value indicating whether the clear button should be shown.

Example of usage

function MyComponent() {
  const queryFunc = useCallback((params) => {
    const items = Array.from(params.query || "");
    return [items, items.length];
  }, []);

  const { items, totalCount, isLoading, params, dispatchParams } = useSearchBox(queryFunc, { query: 'search-box-hooks' });

  const { ref, onInput, onChange, onClear, isClearable } = useSearchBoxInput( dispatchParams, "query" );

  return (
    <>
        <input
            defaultValue={params.query} 
            {...{ ref, onInput, onChange }}
        />
        {isClearable && <button onClick={onClear}>clear</button>}

        {/* the search box UI */}
    </>
  )
}

Contributing

Contributions are welcome. To contribute, fork the repository, create a branch for your changes, and submit a pull request. Please make sure that your changes are covered by tests and that the existing tests pass.

License

This library is licensed under the MIT License. See the LICENSE file for more information.