react-use-fusejs
v2.0.2
Published
React hook to search a Fuse.js index
Downloads
117
Readme
react-use-fusejs
React hook to search a Fuse.js index
If you have plan to using this with
gatsby-plugin-fusejs
. please see gatsby-plugin-fusejs
Install
npm install --save react-use-fusejs
How to use
useFusejs
import Fuse from 'fuse.js'
import useFusejs from 'react-use-fusejs'
const books = [
{
title: "Old Man's War",
author: {
firstName: 'John',
lastName: 'Scalzi',
},
},
{
title: 'The Lock Artist',
author: {
firstName: 'Steve',
lastName: 'Hamilton',
},
},
]
// Create the Fuse index
const myIndex = Fuse.createIndex(['title', 'author.firstName'], books)
export function Search() {
const [query, setQuery] = useState('')
const results = useFusejs(query, books, myIndex)
return (
<div>
<input
type="text"
value={query}
onChange={(e) => setQuery(e.target.value)}
/>
<ul>
{results.map((result) => (
<li key={result.id}>
{result.title} by {result.author.firstName} {result.author.lastName}
</li>
))}
</ul>
</div>
)
}
Arguments
query
: The search querydata
: The search dataindex
: The Fuse index. see Fuse.js indexingfuseOpts
: A object of Fuse.js options. see Fuse.js optionsparseOpts
: A object of Fuse.parseIndex. see Fuse.parseIndexsearchOpts
: A object of Fuse.search
useGatsbyPluginFusejs
React hook for index data from gatsby-plugin-fusejs
Please see gatsby-plugin-fusejs to read more details
import { useStaticQuery, graphql } from 'gatsby'
import * as React from 'react'
import { useGatsbyPluginFusejs } from 'react-use-fusejs'
export function Search() {
const data = useStaticQuery(graphql`
{
fusejs {
index
data
}
}
`)
const [query, setQuery] = React.useState('')
const result = useGatsbyPluginFusejs(query, data.fusejs)
return (
<div>
<input
type="text"
value={query}
onChange={(e) => setQuery(e.target.value)}
/>
<ul>
{result.map(({ item }) => (
<li key={item.id}>{item.title}</li>
))}
</ul>
</div>
)
}
export default Search
Arguments
query
: The search querydata
: A object fromgatsby-plugin-fusejs
plugin (You don't need processing that. just pass to this hook)fuseOpts
: A object of Fuse.js options. see Fuse.js optionsparseOpts
: A object of Fuse.parseIndex. see Fuse.parseIndexsearchOpts
: A object of Fuse.search