Skip to content

Commit 2561154

Browse files
author
Alexandre Stanislawski
committed
feat(core): sends a custom User Agent
1 parent 7defdbc commit 2561154

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

lib/InstantSearch.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ let union = require('lodash/array/union');
88
let EventEmitter = require('events').EventEmitter;
99

1010
let urlSyncWidget = require('./url-sync');
11+
let version = require('./version');
1112

1213
function defaultCreateURL() { return '#'; }
1314

@@ -19,9 +20,14 @@ function defaultCreateURL() { return '#'; }
1920
* @param {string} [options.numberLocale] The locale used to display numbers.
2021
* @param {string} [options.searchParameters] Initial search configuration.
2122
* @param {string} [options.urlSync] Url synchronization configuration.
22-
* @param {string} [options.urlSync.trackedParameters] Parameters that will be synchronized in the URL. By default, it will track the query, all the refinable attribute (facets and numeric filters), the index and the page.
23-
* @param {string} [options.urlSync.useHash] If set to true, the url will be hash based. Otherwise, it'll use the query parameters using the modern history API.
24-
* @param {string} [options.urlSync.threshold] Time in ms after which a new state is created in the browser history. The default value is 700.
23+
* @param {string} [options.urlSync.trackedParameters] Parameters that will
24+
* be synchronized in the URL. By default, it will track the query, all the
25+
* refinable attribute (facets and numeric filters), the index and the page.
26+
* @param {string} [options.urlSync.useHash] If set to true, the url will be
27+
* hash based. Otherwise, it'll use the query parameters using the modern
28+
* history API.
29+
* @param {string} [options.urlSync.threshold] Time in ms after which a new
30+
* state is created in the browser history. The default value is 700.
2531
* @return {Object} the instantsearch instance
2632
*/
2733
class InstantSearch extends EventEmitter {
@@ -45,6 +51,7 @@ Usage: instantsearch({
4551
}
4652

4753
let client = algoliasearch(appId, apiKey);
54+
client.addAlgoliaAgent('instantsearch.js ' + version);
4855

4956
this.client = client;
5057
this.helper = null;
@@ -62,7 +69,8 @@ Usage: instantsearch({
6269
* Add a widget
6370
* @param {Object} [widget] The widget to add
6471
* @param {function} [widget.render] Called after each search response has been received
65-
* @param {function} [widget.getConfiguration] Let the widget update the configuration of the search with new parameters
72+
* @param {function} [widget.getConfiguration] Let the widget update the configuration
73+
* of the search with new parameters
6674
* @param {function} [widget.init] Called once before the first search
6775
* @return {Object} the added widget
6876
*/

lib/__tests__/InstantSearch-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('InstantSearch lifecycle', () => {
2323
let search;
2424

2525
beforeEach(() => {
26-
client = {algolia: 'client'};
26+
client = {algolia: 'client', addAlgoliaAgent: () => {}};
2727
helper = new EventEmitter();
2828

2929
helper.search = sinon.spy();

0 commit comments

Comments
 (0)