analytics
instantsearch.widgets.analytics({ pushFunction: function, // Optional parameters delay: number, triggerOnUIInteraction: boolean, pushInitialSearch: boolean, pushPagination: boolean, });
About this widget
The analytics
widget pushes the current state of the search to the analytics platform of your choice. It requires the implementation of a function that pushes the data.
This is a headless widget, which means it doesn’t render anything in the UI.
This widget is deprecated and is only supported on InstantSearch.js versions 1.9 - 4.8. We recommend using the the insights
middleware instead. Please refer to the upgrade guide for details.
Examples
Plug with Google Analytics
1
2
3
4
5
6
instantsearch.widgets.analytics({
pushFunction(formattedParameters, state, results) {
window.ga('set', 'page', window.location.pathname + window.location.search);
window.ga('send', 'pageView');
},
});
Plug with Google Tag Manager (GTM)
1
2
3
4
5
6
7
8
9
10
instantsearch.widgets.analytics({
pushFunction(formattedParameters, state, results) {
dataLayer.push({
'event': 'search',
'Search Query': state.query,
'Facet Parameters': formattedParameters,
'Number of Hits': results.nbHits,
});
},
});
Plug with Segment.io
1
2
3
4
5
6
7
8
9
10
instantsearch.widgets.analytics({
pushFunction(formattedParameters, state, results) {
analytics.page(
'[SEGMENT] instantsearch',
{
path: '/instantsearch/?query=' + state.query + '&' + formattedParameters
}
);
},
});
Plug with Kissmetrics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
instantsearch.widgets.analytics({
pushFunction(formattedParameters, state, results) {
const objParams = JSON.parse('{"' + decodeURI(formattedParameters.replace(/&/g, "\",\"").replace(/=/g,"\":\"")) + '"}');
const arrParams = $.map(objParams, (value, index) => {
return [value];
});
_kmq.push(['record', '[KM] Viewed Result page', {
'Query': state.query ,
'Number of Hits': results.nbHits,
'Search Params': arrParams
}]);
}
})
Options
pushFunction
|
type: function
Required
A function that is called every time the query or refinements changes. You need to add the logic to push the data to your analytics platform. The function takes three parameters:
|
||
Copy
|
|||
delay
|
type: number
default: 3000
Optional
The number of milliseconds between the last search keystroke and calling |
||
Copy
|
|||
triggerOnUIInteraction
|
type: boolean
default: false
Optional
Triggers |
||
Copy
|
|||
pushInitialSearch
|
type: boolean
default: true
Optional
Triggers |
||
Copy
|
|||
pushPagination
|
type: boolean
default: false
Optional
Triggers |
||
Copy
|