hits
instantsearch.widgets.hits({ container: string|HTMLElement, // Optional parameters escapeHTML: boolean, templates: object, cssClasses: object, transformItems: function, });
About this widget
The hits
widget is used to display a list of results.
To configure the number of hits to show, use the hitsPerPage
widget or the configure
widget.
Examples
1
2
3
4
5
6
7
8
9
10
11
instantsearch.widgets.hits({
container: '#hits',
templates: {
item: `
<h2>
{{#helpers.highlight}}{ "attribute": "name" }{{/helpers.highlight}}
</h2>
<p>{{ description }}</p>
`,
},
});
Options
container
|
type: string|HTMLElement
Required
The CSS Selector or |
||
Copy
|
|||
escapeHTML
|
type: boolean
default: true
Optional
Escapes HTML entities from hits string values. |
||
Copy
|
|||
templates
|
type: object
Optional
The templates to use for the widget. |
||
Copy
|
|||
cssClasses
|
type: object
default: {}
Optional
The CSS classes to override.
|
||
Copy
|
|||
transformItems
|
type: function
default: x => x
Optional
Receives the items, and is called before displaying them. Should return a new array with the same shape as the original array. Useful for mapping over the items to transform, and remove or reorder them. |
||
Copy
|
Templates
empty
|
type: string|function
Optional
The template to use when there are no results. It exposes the |
||
Copy
|
|||
item
|
type: string|function
Optional
The template to use for each result. This template receives an object containing a single record. The record has a new property |
||
Copy
|
Customize the UI - connectHits
If you want to create your own UI of the hits
widget, you can use connectors.
It’s a 3-step process:
// 1. Create a render function
const renderHits = (renderOptions, isFirstRender) => {
// Rendering logic
};
// 2. Create the custom widget
const customHits = instantsearch.connectors.connectHits(
renderHits
);
// 3. Instantiate
search.addWidget(
customHits({
// instance params
})
);
Create a render function
This rendering function is called before the first search (init
lifecycle step)
and each time results come back from Algolia (render
lifecycle step).
const renderHits = (renderOptions, isFirstRender) => {
const {
object[] hits,
object results,
object widgetParams,
} = renderOptions;
if (isFirstRender) {
// Do some initial rendering and bind events
}
// Render the widget
}
Rendering options
hits
|
type: object[]
The matched hits from the Algolia API. You can leverage the highlighting feature of Algolia through the |
||
Copy
|
|||
results
|
type: object
The complete response from the Algolia API. It contains the |
||
Copy
|
|||
widgetParams
|
type: object
All original widget options forwarded to the render function. |
||
Copy
|
Create and instantiate the custom widget
We first create custom widgets from our rendering function, then we instantiate them. When doing that, there are two types of parameters you can give:
- Instance parameters: they are predefined parameters that you can use to configure the behavior of Algolia.
- Your own parameters: to make the custom widget generic.
Both instance and custom parameters are available in connector.widgetParams
, inside the renderFunction
.
const customHits = instantsearch.connectors.connectHits(
renderHits
);
search.addWidget(
customHits({
// Optional parameters
escapeHTML: boolean,
transformItems: function,
})
);
Instance options
escapeHTML
|
type: boolean
default: true
Optional
Escapes HTML entities from hits string values. |
||
Copy
|
|||
transformItems
|
type: function
default: x => x
Optional
Receives the items, and is called before displaying them. Should return a new array with the same shape as the original array. Useful for mapping over the items to transform, and remove or reorder them. |
||
Copy
|
Full example
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
// Create the render function
const renderHits = (renderOptions, isFirstRender) => {
const { hits, widgetParams } = renderOptions;
widgetParams.container.innerHTML = `
<ul>
${hits
.map(
item =>
`<li>
${instantsearch.highlight({ attribute: 'name', hit: item })}
</li>`
)
.join('')}
</ul>
`;
};
// Create the custom widget
const customHits = instantsearch.connectors.connectHits(renderHits);
// Instantiate the custom widget
search.addWidget(
customHits({
container: document.querySelector('#hits'),
})
);
Sending Click and Conversion events
InstantSearch can connect with the insights Javascript Client to allow sending click and conversion events right from the hits
widget.
Requirements
This requires installing the search-insights
library separately:
You can refer to our insights documentation for more details.
It’s a 3-step process:
1. Install the Insights API client for JavaScript
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
var ALGOLIA_INSIGHTS_SRC = "https://cdn.jsdelivr.net/npm/search-insights@1.1.1";
!function(e,a,t,n,s,i,c){e.AlgoliaAnalyticsObject=s,e.aa=e.aa||function(){
(e.aa.queue=e.aa.queue||[]).push(arguments)},i=a.createElement(t),c=a.getElementsByTagName(t)[0],
i.async=1,i.src=ALGOLIA_INSIGHTS_SRC,c.parentNode.insertBefore(i,c)
}(window,document,"script",0,"aa");
aa('init', {
appId: 'YourApplicationID',
apiKey: 'YourSearchOnlyAPIKey',
});
</script>
2. Connect the Insights API client for JavaScript with InstantSearch and enable clickAnalytics
1
2
3
4
5
6
7
8
9
10
const search = instantsearch({
// ...
insightsClient: window.aa
});
search.addWidget(
instantsearch.widgets.configure({
clickAnalytics: true,
})
);
3. Call the insights function from your hits
component
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
search.addWidget(
instantsearch.widgets.hits({
// ...
templates: {
item(hit) {
return `
<a href="/product.html?objectID=${hit.objectID}&queryID=${hit.__queryID}">
<h2>${hit.name}</h2>
<button ${
instantsearch.insights('clickedObjectIDsAfterSearch', {
eventName: 'Add to favorite',
objectIDs: [hit.objectID]
})
}>
Add to favorite
</button>
</a>
`;
},
},
});
)
Provided props
insights
|
type: function
signature: (method: string, payload: object) => void
Sends insights events.
When not provided,
It is worth noting that
For more details on the constraints that apply to each |
||
Copy
|
Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
search.addWidget(
instantsearch.widgets.hits({
// ...
templates: {
item(hit) {
return `
<div>
<a href="/product.html?queryID=${hit.__queryID}">
<h2>${hit.name}</h2>
</a>
<button ${
instantsearch.insights('clickedObjectIDsAfterSearch', {
eventName: 'Add to favorite',
objectIDs: [hit.objectID]
})
}>
Add to favorite
</button>
</div>
`;
},
},
});
)
HTML output
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="ais-Hits">
<ol class="ais-Hits-list">
<li class="ais-Hits-item">
...
</li>
<li class="ais-Hits-item">
...
</li>
<li class="ais-Hits-item">
...
</li>
</ol>
</div>