Concepts / Building Search UI / UI and UX patterns
Aug. 20, 2019

UI and UX Patterns

Autocomplete

A common pattern in search is to implement a search box with an autocomplete as a first step of the search experience.

Query Suggestions

In order to help users with their search, Algolia provides a feature called query suggestions. This feature creates an index with the best queries done by the users. You can then use this index to propose suggestions to your users as they are typing into the searchBox. The great thing with this feature is that once you’ve configured the generation of the index, it’s just about querying another index and you can easily use multi-index search to for that.

Infinite Scroll

The infinite list is a very common pattern to display a list of results. Most of the times this pattern comes with two variants:

with a button to click on at the end of the list of results with a listener on the scroll event that is called when the list of results reaches the end

We will see how we can leverage the geo search capabilities of Algolia with the geoSearch widget.

Places

Algolia Places provides a fast, distributed, and easy way to use an address search autocomplete JavaScript library on your website.

Filtering on Mobile

Providing filtering options is omnipresent in advanced search experiences. The issue at hand is mobile screen real estate since it is hard to include both filters and search results in the same view without the screen getting cluttered. Good filtering UX always show some sort of feedback when the user applies a filter.

Did you find this page helpful?