ConfigureRelatedItems
<ExperimentalConfigureRelatedItems hit={object} matchingPatterns={object} // Optional parameters transformSearchParameters={function} />
About this widget
We released React InstantSearch Hooks, a new InstantSearch library for React. We recommend using React InstantSearch Hooks in new projects or upgrading from React InstantSearch.
This widget is experimental and is subject to change in minor versions.
The ExperimentalConfigureRelatedItems
widget computes search parameters to create related items experiences without rendering anything.
The hit passed to the widget is used as a reference to compute the search parameters and retrieve related items.
We recommend that you use this widget in a separate Index
that you use specifically for related items.
This widget can be used with react-dom
and react-native
. It doesn’t render anything on screen, it only applies the provided parameters to the search.
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { ExperimentalConfigureRelatedItems } from 'react-instantsearch-dom';
const hit = {
objectID: '1234',
name: 'Remote controller',
brand: 'Amazon',
categories: ['TV & Home Theater', 'Streaming Media Players'],
};
<Index indexName="related_items">
<ExperimentalConfigureRelatedItems
hit={hit}
matchingPatterns={{
brand: { score: 1 },
categories: { score: 2 }
}}
/>
// This displays only related hits
<Hits />
</Index>
Props
hit
|
type: object
Required
The hit passed to the widget and used as a reference to compute the search parameters sent to Algolia. This hit can be retrieved from any location (the app state, the backend, the history, etc.). |
||
Copy
|
|||
matchingPatterns
|
type: object
Required
A schema that creates scored filters based on the hit’s attributes. In the example below, the The preceding hit would generate the following search parameters:
Copy
You can use nested attributes by using the dot notation to score them: |
||
Copy
|
|||
transformSearchParameters
|
type: function
Optional
Transforms the generated search parameters. This can be useful to override default parameters or to increase chances of finding related items. A recommended pattern is to consider the words of a hit’s name as |
||
Copy
|
HTML output
This widget has no HTML output.