0.0.2 • Published 6 years ago

react-search-fuse v0.0.2

Weekly downloads
13
License
MIT
Repository
github
Last release
6 years ago

react-search-fuse

A Fuse.js powered client side fuzzy search react component.

disclaimer: This is still a bit of a work in progress. It has some limitations, so use at your discretion

Build 
Status

Installation and Usage

npm install react-search-fuse

Import ReactSearchFuse where you would like to use it.

import ReactSearchFuse from 'react-search-fuse'

Supply some documents, specify the options, and a filter to search by. Then just supply a children render function which will receive results.

<ReactSearchFuse
  options={{keys: ['name', 'character']}}
  documents=[
    {id: 1, name: 'Logan', character:'Wolverine'},
    {id: 2, name: 'Anna Marie', character: 'Rogue'}
  ]>
  {results => result.map(result => (
    <div key={result.id}>
      <h1>{result.name}</h1> - {result.character}
    </div>
  ))}
</ReactSearchFuse>

Todo

This isn't quite finished. Some of the planned changes:

  • the fuse index is rebuild on every rerender, it could probably be more performant
0.0.2

6 years ago

0.0.1

6 years ago