This repository was archived by the owner on Jun 17, 2023. It is now read-only.
forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPaginationLink.js
103 lines (90 loc) · 1.94 KB
/
PaginationLink.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
const propTypes = {
'aria-label': PropTypes.string,
children: PropTypes.node,
className: PropTypes.string,
cssModule: PropTypes.object,
next: PropTypes.bool,
previous: PropTypes.bool,
first: PropTypes.bool,
last: PropTypes.bool,
tag: tagPropType,
};
const defaultProps = {
tag: 'a',
};
const PaginationLink = (props) => {
let {
className,
cssModule,
next,
previous,
first,
last,
tag: Tag,
...attributes
} = props;
const classes = mapToCssModules(classNames(
className,
'page-link'
), cssModule);
let defaultAriaLabel;
if (previous) {
defaultAriaLabel = 'Previous';
} else if (next) {
defaultAriaLabel = 'Next';
} else if (first) {
defaultAriaLabel = 'First';
} else if (last) {
defaultAriaLabel = 'Last';
}
const ariaLabel = props['aria-label'] || defaultAriaLabel;
let defaultCaret;
if (previous) {
defaultCaret = '\u2039';
} else if (next) {
defaultCaret = '\u203A';
} else if (first) {
defaultCaret = '\u00ab';
} else if (last) {
defaultCaret = '\u00bb';
}
let children = props.children;
if (children && Array.isArray(children) && children.length === 0) {
children = null;
}
if (!attributes.href && Tag === 'a') {
Tag = 'button';
}
if (previous || next || first || last) {
children = [
<span
aria-hidden="true"
key="caret"
>
{children || defaultCaret}
</span>,
<span
className="sr-only"
key="sr"
>
{ariaLabel}
</span>,
];
}
return (
<Tag
{...attributes}
className={classes}
aria-label={ariaLabel}
>
{children}
</Tag>
);
};
PaginationLink.propTypes = propTypes;
PaginationLink.defaultProps = defaultProps;
export default PaginationLink;