Skip to content

Instantly share code, notes, and snippets.

@leofab86
Last active May 23, 2019 17:03
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/9b210112a5dcc9f1203e7fce2a6990ef to your computer and use it in GitHub Desktop.
Save leofab86/9b210112a5dcc9f1203e7fce2a6990ef to your computer and use it in GitHub Desktop.
Fuzzy search autocomplete v1.1.1
//searchResults.js
componentDidUpdate(prevProps) {
const {searchTerm, searchEngine} = this.props;
if(searchTerm && searchTerm !== prevProps.searchTerm) {
/* stick the update with the expensive search method into
a promise callback: */
Promise.resolve().then(() => {
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