Search UI
Libraries for the fast development of modern, engaging search experiences.
A React library that allows you to quickly implement search experiences without re-inventing the wheel.
Use it with Elastic App Search or Elastic Site Search to have a search experience up and running in minutes.
Getting started ?
Install React Search UI and the App Search connector.
Creating a search experience
Use out of the box components, styles, and layouts to build a search experience in a matter of minutes.
Or go "headless", and take complete control over the look and feel of your search experience.
A search experience built with Search UI is composed of the following layers:
Styles and Layout -> Components -> SearchProvider -> Connector -> Search API
1. Search API
A Search API is any API that you use to search data.
We recommend Elastic App Search.
It has Elasticsearch at its core, offering refined search UIs, robust documentation, and accessible dashboard tools.
You can start a 14 day trial of the managed service or host the self managed package for free.
Once your data is indexed into App Search or a similar service, you're good to go.
2. Connectors
A connector is a module that tell Search UI how to connect and communicate with your Search API.
It generates Search API calls for you so that Search UI will "just work", right out of the box.
3. SearchProvider
SearchProvider
is the top level component in your Search UI implementation.
It is where you configure your search experience and it ties all of your components together, so that they work as a cohesive application.
While components can be handy, a search experience can have requirements that don't quite fit what components provide "out of the box". Use WithSearch
to access "actions" and "state" in a Render Prop, giving you maximum flexibility over the experience.
4. Components
Components are the building blocks from which you craft your search experience.
Each Component - like SearchBox
and Results
- is a child of the SearchProvider
object:
The following Components are available:
- SearchBox
- Results
- Result
- ResultsPerPage
- Facet
- Sorting
- Paging
- PagingInfo
- ErrorBoundary
5. Styles and Layout
For basic styles, include:
For a basic layout, which helps quickly get a UI bootstrapped, use the Layout Component.