Skip to content

Commit e14a344

Browse files
committed
fix(hitsPerPageSelector): Be more tolerant in options
Removes the dependency on hitsPerPage. Follow-up of #450.
1 parent 67406ed commit e14a344

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

widgets/hits-per-page-selector/__tests__/hits-per-page-selector-test.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@ describe('hitsPerPageSelector()', () => {
2323
let helper;
2424
let results;
2525
let autoHideContainer;
26+
let consoleLog;
2627

2728
beforeEach(() => {
2829
autoHideContainer = sinon.stub().returns(Selector);
2930
ReactDOM = {render: sinon.spy()};
3031

3132
hitsPerPageSelector.__Rewire__('ReactDOM', ReactDOM);
3233
hitsPerPageSelector.__Rewire__('autoHideContainer', autoHideContainer);
34+
consoleLog = sinon.spy(window.console, 'log');
3335

3436
container = document.createElement('div');
3537
options = [
@@ -90,16 +92,16 @@ describe('hitsPerPageSelector()', () => {
9092
it('should throw if there is no name attribute in a passed object', () => {
9193
options.length = 0;
9294
options.push({label: 'Label without a value'});
93-
expect(() => {
94-
widget.init(helper.state, helper);
95-
}).toThrow(/No option in `options` with `value: 20`/);
95+
widget.init(helper.state, helper);
96+
expect(consoleLog.calledOnce).toBe(true, 'console.log called once');
97+
expect(consoleLog.firstCall.args[0]).toMatch(/No option in `options` with `value: hitsPerPage` \(hitsPerPage: 20\)/);
9698
});
9799

98100
it('must include the current hitsPerPage at initialization time', () => {
99101
helper.state.hitsPerPage = -1;
100-
expect(() => {
101-
widget.init(helper.state, helper);
102-
}).toThrow(/No option in `options` with `value: -1`/);
102+
widget.init(helper.state, helper);
103+
expect(consoleLog.calledOnce).toBe(true, 'console.log called once');
104+
expect(consoleLog.firstCall.args[0]).toMatch(/No option in `options` with `value: hitsPerPage` \(hitsPerPage: -1\)/);
103105
});
104106

105107
it('should not throw an error if state does not have a `hitsPerPage`', () => {
@@ -112,5 +114,6 @@ describe('hitsPerPageSelector()', () => {
112114
afterEach(() => {
113115
hitsPerPageSelector.__ResetDependency__('ReactDOM');
114116
hitsPerPageSelector.__ResetDependency__('autoHideContainer');
117+
consoleLog.restore();
115118
});
116119
});

widgets/hits-per-page-selector/hits-per-page-selector.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ function hitsPerPageSelector({
4141
return {
4242
init: function(state) {
4343
let isCurrentInOptions = reduce(options, function(res, option) {
44-
if (state.hitsPerPage === undefined) {
45-
return true;
46-
}
4744
return res || +state.hitsPerPage === +option.value;
4845
}, false);
4946

5047
if (!isCurrentInOptions) {
51-
throw new Error('[hitsPerPageSelector]: No option in `options` with `value: ' + state.hitsPerPage + '`');
48+
options = [{value: undefined, label: ''}].concat(options);
49+
if (window.console) {
50+
window.console.log('[Warning][hitsPerPageSelector] No option in `options` with `value: hitsPerPage` (hitsPerPage: ' + state.hitsPerPage + ')');
51+
}
5252
}
5353
},
5454

0 commit comments

Comments
 (0)