@@ -23,7 +23,7 @@ let defaultLabels = {
23
23
* @param {string } [options.labels.next] Label for the Next link
24
24
* @param {string } [options.labels.first] Label for the First link
25
25
* @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
27
27
* @param {number } [options.padding=3] The number of pages to display on each side of the current page
28
28
* @param {string|DOMElement|boolean } [options.scrollTo='body'] Where to scroll after a click, set to `false` to disable
29
29
* @param {boolean } [options.showFirstLast=true] Define if the First and Last links should be displayed
@@ -46,7 +46,7 @@ pagination({
46
46
container,
47
47
[ cssClasses.{root,item,page,previous,next,first,last,active,disabled}={} ],
48
48
[ labels.{previous,next,first,last} ],
49
- [ maxPages=20 ],
49
+ [ maxPages ],
50
50
[ padding=3 ],
51
51
[ showFirstLast=true ],
52
52
[ autoHideContainer=true ],
@@ -56,7 +56,7 @@ function pagination({
56
56
container,
57
57
cssClasses : userCssClasses = { } ,
58
58
labels = { } ,
59
- maxPages = 20 ,
59
+ maxPages,
60
60
padding = 3 ,
61
61
showFirstLast = true ,
62
62
autoHideContainer = true ,
@@ -88,9 +88,15 @@ function pagination({
88
88
helper . search ( ) ;
89
89
} ,
90
90
91
+ getMaxPage : function ( results ) {
92
+ if ( maxPages !== undefined ) {
93
+ return Math . min ( maxPages , results . nbPages ) ;
94
+ }
95
+ return results . nbPages ;
96
+ } ,
97
+
91
98
render : function ( { results, helper, createURL, state} ) {
92
99
let currentPage = results . page ;
93
- let nbPages = results . nbPages ;
94
100
let nbHits = results . nbHits ;
95
101
let hasNoResults = nbHits === 0 ;
96
102
let cssClasses = {
@@ -106,18 +112,14 @@ function pagination({
106
112
disabled : cx ( bem ( 'item' , 'disabled' ) , userCssClasses . disabled )
107
113
} ;
108
114
109
- if ( maxPages !== undefined ) {
110
- nbPages = Math . min ( maxPages , results . nbPages ) ;
111
- }
112
-
113
115
ReactDOM . render (
114
116
< Pagination
115
117
createURL = { ( page ) => createURL ( state . setPage ( page ) ) }
116
118
cssClasses = { cssClasses }
117
119
currentPage = { currentPage }
118
120
labels = { labels }
119
121
nbHits = { nbHits }
120
- nbPages = { nbPages }
122
+ nbPages = { this . getMaxPage ( results ) }
121
123
padding = { padding }
122
124
setCurrentPage = { this . setCurrentPage . bind ( this , helper ) }
123
125
shouldAutoHideContainer = { hasNoResults }
0 commit comments