@@ -2,6 +2,8 @@ import React from 'react';
2
2
import classNames from 'classnames' ;
3
3
import BootstrapMixin from './BootstrapMixin' ;
4
4
import PaginationButton from './PaginationButton' ;
5
+ import CustomPropTypes from './utils/CustomPropTypes' ;
6
+ import SafeAnchor from './SafeAnchor' ;
5
7
6
8
const Pagination = React . createClass ( {
7
9
mixins : [ BootstrapMixin ] ,
@@ -15,7 +17,11 @@ const Pagination = React.createClass({
15
17
last : React . PropTypes . bool ,
16
18
prev : React . PropTypes . bool ,
17
19
next : React . PropTypes . bool ,
18
- onSelect : React . PropTypes . func
20
+ onSelect : React . PropTypes . func ,
21
+ /**
22
+ * You can use a custom element for the buttons
23
+ */
24
+ buttonComponentClass : CustomPropTypes . elementType
19
25
} ,
20
26
21
27
getDefaultProps ( ) {
@@ -28,6 +34,7 @@ const Pagination = React.createClass({
28
34
prev : false ,
29
35
next : false ,
30
36
ellipsis : true ,
37
+ buttonComponentClass : SafeAnchor ,
31
38
bsClass : 'pagination'
32
39
} ;
33
40
} ,
@@ -40,7 +47,8 @@ const Pagination = React.createClass({
40
47
activePage,
41
48
items,
42
49
onSelect,
43
- ellipsis
50
+ ellipsis,
51
+ buttonComponentClass
44
52
} = this . props ;
45
53
46
54
if ( maxButtons ) {
@@ -68,7 +76,8 @@ const Pagination = React.createClass({
68
76
key = { pagenumber }
69
77
eventKey = { pagenumber }
70
78
active = { pagenumber === activePage }
71
- onSelect = { onSelect } >
79
+ onSelect = { onSelect }
80
+ buttonComponentClass = { buttonComponentClass } >
72
81
{ pagenumber }
73
82
</ PaginationButton >
74
83
) ;
@@ -78,7 +87,8 @@ const Pagination = React.createClass({
78
87
pageButtons . push (
79
88
< PaginationButton
80
89
key = 'ellipsis'
81
- disabled >
90
+ disabled
91
+ buttonComponentClass = { buttonComponentClass } >
82
92
< span aria-label = 'More' > ...</ span >
83
93
</ PaginationButton >
84
94
) ;
@@ -97,7 +107,8 @@ const Pagination = React.createClass({
97
107
key = 'prev'
98
108
eventKey = { this . props . activePage - 1 }
99
109
disabled = { this . props . activePage === 1 }
100
- onSelect = { this . props . onSelect } >
110
+ onSelect = { this . props . onSelect }
111
+ buttonComponentClass = { this . props . buttonComponentClass } >
101
112
< span aria-label = 'Previous' > ‹</ span >
102
113
</ PaginationButton >
103
114
) ;
@@ -113,7 +124,8 @@ const Pagination = React.createClass({
113
124
key = 'next'
114
125
eventKey = { this . props . activePage + 1 }
115
126
disabled = { this . props . activePage >= this . props . items }
116
- onSelect = { this . props . onSelect } >
127
+ onSelect = { this . props . onSelect }
128
+ buttonComponentClass = { this . props . buttonComponentClass } >
117
129
< span aria-label = 'Next' > ›</ span >
118
130
</ PaginationButton >
119
131
) ;
@@ -129,7 +141,8 @@ const Pagination = React.createClass({
129
141
key = 'first'
130
142
eventKey = { 1 }
131
143
disabled = { this . props . activePage === 1 }
132
- onSelect = { this . props . onSelect } >
144
+ onSelect = { this . props . onSelect }
145
+ buttonComponentClass = { this . props . buttonComponentClass } >
133
146
< span aria-label = 'First' > «</ span >
134
147
</ PaginationButton >
135
148
) ;
@@ -145,7 +158,8 @@ const Pagination = React.createClass({
145
158
key = 'last'
146
159
eventKey = { this . props . items }
147
160
disabled = { this . props . activePage >= this . props . items }
148
- onSelect = { this . props . onSelect } >
161
+ onSelect = { this . props . onSelect }
162
+ buttonComponentClass = { this . props . buttonComponentClass } >
149
163
< span aria-label = 'Last' > »</ span >
150
164
</ PaginationButton >
151
165
) ;
0 commit comments