algolia-react-input
A simple react input component to query your algolia index
Demo : http://revolunet.github.io/algolia-react-input/#/example1
Usage
const algoliaClient = algoliasearch('APPLICATION_ID', 'SEARCH_ONLY_API_KEY');
const algoliaOptions = {
hitsPerPage: 200
};
return <AlgoliaInput
client={ algoliaClient }
index='Products'
options= { algoliaOptions }
onResults={ this.onResults }
onError={ this.onError }
placeholder='Product Search...'
/>;
See complete example in ./docs/app.js
Contributing
Contributions welcome; Please submit all pull requests the against master branch. If your pull request contains JavaScript patches or features, you should include relevant unit tests. Please check the Contributing Guidelines for more details. Thanks!
Author
License