Skip to content

Commit beaa1fa

Browse files
committed
[changed] PaginationButton to use SafeAnchor
Using the `SafeAnchor` for better accessibility. Per react-bootstrap#786 commitcomment-11527424 Resolves react-bootstrap#788
1 parent d3c2eca commit beaa1fa

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

src/PaginationButton.js

+14-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react';
22
import classNames from 'classnames';
33
import BootstrapMixin from './BootstrapMixin';
44
import createSelectedEvent from './utils/createSelectedEvent';
5+
import SafeAnchor from './SafeAnchor';
56

67
const PaginationButton = React.createClass({
78
mixins: [BootstrapMixin],
@@ -25,24 +26,29 @@ const PaginationButton = React.createClass({
2526
},
2627

2728
handleClick(event) {
28-
// This would go away once SafeAnchor is available
29-
event.preventDefault();
30-
3129
if (this.props.onSelect) {
3230
let selectedEvent = createSelectedEvent(this.props.eventKey);
3331
this.props.onSelect(event, selectedEvent);
3432
}
3533
},
3634

3735
render() {
38-
let classes = this.getBsClassSet();
36+
let classes = {
37+
active: this.props.active,
38+
disabled: this.props.disabled,
39+
...this.getBsClassSet()
40+
};
3941

40-
classes.active = this.props.active;
41-
classes.disabled = this.props.disabled;
42+
let {
43+
className,
44+
...anchorProps // eslint-disable-line object-shorthand
45+
} = this.props;
4246

4347
return (
44-
<li className={classNames(this.props.className, classes)}>
45-
<a href='#' onClick={this.handleClick}>{this.props.children}</a>
48+
<li className={classNames(className, classes)}>
49+
<SafeAnchor
50+
{...anchorProps}
51+
onClick={this.handleClick} />
4652
</li>
4753
);
4854
}

0 commit comments

Comments
 (0)