Concepts / Building Search UI / Infinite scroll
May. 10, 2019

Infinite Scroll

Overview

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 can cover those two different implementations with Vue InstantSearch. The former is covered by the built-in ais-infinite-hits widget and the latter is covered by the ais-infinite-hits connector. In this guide we will focus on the second implementation using the Intersection Observer API. We choose to use a browser API in the example but the concepts can be applied to any kind of infinite scroll library. You can find the complete example on GitHub.

Note that the Intersection Observer API isn’t yet widely supported. You may want to consider using a polyfill. Here the compatibility table to find more information about its support.

Display a list of hits

The first step to create our infinite scroll component is to render the results with the ais-infinite-hits connector. We have an external Hit component but it’s not the point of this guide, the intent is to keep the code simple. You can find more information about the connectors API in the dedicated guide about widget customisation.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <ol v-if="state">
    <li v-for="hit in state.hits" :key="hit.objectID">
      <slot name="item" :item="hit"> </slot>
    </li>
  </ol>
</template>

<script>
import { createWidgetMixin } from 'vue-instantsearch';
import { connectInfiniteHits } from 'instantsearch.js/es/connectors';
export default {
  mixins: [createWidgetMixin({ connector: connectInfiniteHits })],
};
</script>

Track the scroll position

Once we have our list of results the next step is to track the scroll position to determine when the rest of the content needs to be loaded. For this purpose we are gonna use the Intersection Observer API. To track when the bottom of the list enters inside the viewport we observe a “sentinel” element. We use this trick to avoid observing all the items of our results. We can reuse the same element across the different renders. You can find more information about this pattern on the Web Fundamentals website.

Because adding an Intersection Observer in Vue is not trivial, we will use the vue-observe-visibility library to know when the sentinel is visible.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
  <ol v-if="state">
    <li v-for="hit in state.hits" :key="hit.objectID">
      <slot name="item" :item="hit"> </slot>
    </li>
    <li class="sentinel" v-observe-visibility="visibilityChanged" />
  </ol>
</template>

<script>
import { createWidgetMixin } from 'vue-instantsearch';
import { connectInfiniteHits } from 'instantsearch.js/es/connectors';
export default {
  mixins: [createWidgetMixin({ connector: connectInfiniteHits })],
  methods: {
    visibilityChanged(isVisible, e) {
      console.log(isVisible, e);
    },
  },
};
</script>

<style scoped>
.sentinel {
  list-style-type: none;
}
</style>

Retrieve more results

Now that we are able to track when we reach the end of our results we can hook the showMore function inside the callback function onSentinelIntersection. But we should only trigger the function when we still have results to retrieve. For this use case the connector provide a prop isLastPage that indicates if we still have results to load or not.

1
2
3
4
5
6
7
8
9
10
11
<script>
export default {
  methods: {
    visibilityChanged(isVisible) {
      if (isVisible && !this.state.isLastPage) {
        this.state.showMore();
      }
    },
  },
};
</script>

Go further than 1000 hits

By default Algolia limit the number of hits you can retrieve for a query to 1000; when doing an infinite scroll, you usually want to go over this limit.

1
2
3
$index->setSettings([
  'paginationLimitedTo' => 1000
]);

Disabling the limit does not mean that we will be able to go until the end of the hits, but just that Algolia will go as far as possible in the index to retrieve results in a reasonable time.

That’s it! Now you should have a complete infinite scroll experience! Don’t forget that the complete source code of the example is available on GitHub.

Did you find this page helpful?