Skip to content

Instantly share code, notes, and snippets.

@leofab86
Last active May 20, 2019 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leofab86/b67867599d0b1d3e05bebf14238b6e6d to your computer and use it in GitHub Desktop.
Save leofab86/b67867599d0b1d3e05bebf14238b6e6d to your computer and use it in GitHub Desktop.
Fuzzy search autocomplete v1.1.0
//searchResults.js
componentDidUpdate(prevProps) {
const {searchTerm, searchEngine} = this.props;
if(searchTerm && searchTerm !== prevProps.searchTerm) {
this.setState({
searchResults: searchEngine.search(searchTerm)
})
}
}
render () {
return <ReactVirtualizedList searchResults={this.state.searchResults}/>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment