Code Monkey home page Code Monkey logo

react-search-box-hooks's Introduction

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
}
Edit react-search-box-hooks-useSearchBox-demo

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 */}
    </>
  )
}
Edit react-search-box-hooks-useSearchBoxInput-demo

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.

react-search-box-hooks's People

Contributors

dendrofen avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.