Skip to content

Commit e50bafd

Browse files
author
Alexandre Stanislawski
committed
fix(url-sync): adds indexName in the helper configuration
This solves a bug found using safari and that may or may not break an implementation based on InstantSearch. Safari triggers a pop state event on load, which triggers a new search. But at this point the index is not in the initial configuration, so this search will fail with a 400, indexName not valid. With this fix the value for the index name is taken from the parameters and its value is added to the initial search configuration.
1 parent b5db072 commit e50bafd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/Hits.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Hits extends React.Component {
2121
}
2222

2323
renderNoResults() {
24-
let className = `${this.props.cssClasses.root} ${this.props.cssClasses.empty}`;
24+
let className = this.props.cssClasses.root + ' ' + this.props.cssClasses.empty;
2525
return (
2626
<Template
2727
cssClass={className}

src/lib/InstantSearch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Usage: instantsearch({
6060
this.client = client;
6161
this.helper = null;
6262
this.indexName = indexName;
63-
this.searchParameters = searchParameters || {};
63+
this.searchParameters = {...searchParameters, index: indexName};
6464
this.widgets = [];
6565
this.templatesConfig = {
6666
helpers: require('./helpers.js')({numberLocale}),

src/lib/__tests__/InstantSearch-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('InstantSearch lifecycle', () => {
3939
apiKey = 'apiKey';
4040
indexName = 'lifeycle';
4141

42-
searchParameters = {some: 'configuration', values: [-2, -1], another: {config: 'parameter'}};
42+
searchParameters = {some: 'configuration', values: [-2, -1], index: indexName, another: {config: 'parameter'}};
4343

4444
InstantSearch.__Rewire__('algoliasearch', algoliasearch);
4545
InstantSearch.__Rewire__('algoliasearchHelper', algoliasearchHelper);
@@ -113,7 +113,7 @@ describe('InstantSearch lifecycle', () => {
113113
.toEqual([
114114
client,
115115
indexName,
116-
{some: 'modified', values: [-2, -1], another: {different: 'parameter', config: 'parameter'}}
116+
{some: 'modified', values: [-2, -1], index: indexName, another: {different: 'parameter', config: 'parameter'}}
117117
]);
118118
});
119119

0 commit comments

Comments
 (0)