Skip to content

Commit 607fe9a

Browse files
committed
fix(pagination): remove default value of maxPages. Fixes #761
1 parent 0f2de3c commit 607fe9a

File tree

2 files changed

+61
-9
lines changed

2 files changed

+61
-9
lines changed

src/widgets/pagination/__tests__/pagination-test.js

+50
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,53 @@ describe('pagination()', () => {
136136
};
137137
}
138138
});
139+
140+
describe('pagination MaxPage', () => {
141+
jsdom({useEach: true});
142+
143+
let ReactDOM;
144+
let container;
145+
let widget;
146+
let results;
147+
let cssClasses;
148+
let paginationOptions;
149+
150+
beforeEach(() => {
151+
ReactDOM = {render: sinon.spy()};
152+
pagination.__Rewire__('ReactDOM', ReactDOM);
153+
pagination.__Rewire__('autoHideContainerHOC', sinon.stub().returns(Pagination));
154+
155+
container = document.createElement('div');
156+
cssClasses = {
157+
root: 'root',
158+
item: 'item',
159+
link: 'link',
160+
page: 'page',
161+
previous: 'previous',
162+
next: 'next',
163+
first: 'first',
164+
last: 'last',
165+
active: 'active',
166+
disabled: 'disabled'
167+
};
168+
results = {hits: [{first: 'hit', second: 'hit'}], nbHits: 300, hitsPerPage: 10, nbPages: 30};
169+
paginationOptions = {container, scrollTo: false, cssClasses};
170+
});
171+
172+
it('does to have any default', () => {
173+
widget = pagination(paginationOptions);
174+
expect(widget.getMaxPage(results)).toEqual(30);
175+
});
176+
177+
it('does reduce the number of page if lower than nbPages', () => {
178+
paginationOptions.maxPages = 20;
179+
widget = pagination(paginationOptions);
180+
expect(widget.getMaxPage(results)).toEqual(20);
181+
});
182+
183+
it('does not reduce the number of page if greater than nbPages', () => {
184+
paginationOptions.maxPages = 40;
185+
widget = pagination(paginationOptions);
186+
expect(widget.getMaxPage(results)).toEqual(30);
187+
});
188+
});

src/widgets/pagination/pagination.js

+11-9
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let defaultLabels = {
2323
* @param {string} [options.labels.next] Label for the Next link
2424
* @param {string} [options.labels.first] Label for the First link
2525
* @param {string} [options.labels.last] Label for the Last link
26-
* @param {number} [options.maxPages=20] The max number of pages to browse
26+
* @param {number} [options.maxPages] The max number of pages to browse
2727
* @param {number} [options.padding=3] The number of pages to display on each side of the current page
2828
* @param {string|DOMElement|boolean} [options.scrollTo='body'] Where to scroll after a click, set to `false` to disable
2929
* @param {boolean} [options.showFirstLast=true] Define if the First and Last links should be displayed
@@ -46,7 +46,7 @@ pagination({
4646
container,
4747
[ cssClasses.{root,item,page,previous,next,first,last,active,disabled}={} ],
4848
[ labels.{previous,next,first,last} ],
49-
[ maxPages=20 ],
49+
[ maxPages ],
5050
[ padding=3 ],
5151
[ showFirstLast=true ],
5252
[ autoHideContainer=true ],
@@ -56,7 +56,7 @@ function pagination({
5656
container,
5757
cssClasses: userCssClasses = {},
5858
labels = {},
59-
maxPages = 20,
59+
maxPages,
6060
padding = 3,
6161
showFirstLast = true,
6262
autoHideContainer = true,
@@ -88,9 +88,15 @@ function pagination({
8888
helper.search();
8989
},
9090

91+
getMaxPage: function(results) {
92+
if (maxPages !== undefined) {
93+
return Math.min(maxPages, results.nbPages);
94+
}
95+
return results.nbPages;
96+
},
97+
9198
render: function({results, helper, createURL, state}) {
9299
let currentPage = results.page;
93-
let nbPages = results.nbPages;
94100
let nbHits = results.nbHits;
95101
let hasNoResults = nbHits === 0;
96102
let cssClasses = {
@@ -106,18 +112,14 @@ function pagination({
106112
disabled: cx(bem('item', 'disabled'), userCssClasses.disabled)
107113
};
108114

109-
if (maxPages !== undefined) {
110-
nbPages = Math.min(maxPages, results.nbPages);
111-
}
112-
113115
ReactDOM.render(
114116
<Pagination
115117
createURL={(page) => createURL(state.setPage(page))}
116118
cssClasses={cssClasses}
117119
currentPage={currentPage}
118120
labels={labels}
119121
nbHits={nbHits}
120-
nbPages={nbPages}
122+
nbPages={this.getMaxPage(results)}
121123
padding={padding}
122124
setCurrentPage={this.setCurrentPage.bind(this, helper)}
123125
shouldAutoHideContainer={hasNoResults}

0 commit comments

Comments
 (0)