algolia-react-input

1.1.0 • Public • Published

algolia-react-input

npm license github-issues

nodei.co

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

/algolia-react-input/

    Package Sidebar

    Install

    npm i algolia-react-input

    Weekly Downloads

    4

    Version

    1.1.0

    License

    MIT

    Last publish

    Collaborators

    • revolunet