Pagination.js
4.47 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import _extends from "@babel/runtime/helpers/extends";
var __rest = this && this.__rest || function (s, e) {
var t = {};
for (var p in s) {
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
}
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
import * as React from 'react';
import RcPagination from 'rc-pagination';
import enUS from "rc-pagination/es/locale/en_US";
import classNames from 'classnames';
import LeftOutlined from '@ant-design/icons/LeftOutlined';
import RightOutlined from '@ant-design/icons/RightOutlined';
import DoubleLeftOutlined from '@ant-design/icons/DoubleLeftOutlined';
import DoubleRightOutlined from '@ant-design/icons/DoubleRightOutlined';
import MiniSelect from './MiniSelect';
import Select from '../select';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import { ConfigContext } from '../config-provider';
import useBreakpoint from '../grid/hooks/useBreakpoint';
var Pagination = function Pagination(_a) {
var customizePrefixCls = _a.prefixCls,
customizeSelectPrefixCls = _a.selectPrefixCls,
className = _a.className,
size = _a.size,
customLocale = _a.locale,
restProps = __rest(_a, ["prefixCls", "selectPrefixCls", "className", "size", "locale"]);
var _useBreakpoint = useBreakpoint(),
xs = _useBreakpoint.xs;
var _React$useContext = React.useContext(ConfigContext),
getPrefixCls = _React$useContext.getPrefixCls,
direction = _React$useContext.direction;
var prefixCls = getPrefixCls('pagination', customizePrefixCls);
var getIconsProps = function getIconsProps() {
var ellipsis = /*#__PURE__*/React.createElement("span", {
className: "".concat(prefixCls, "-item-ellipsis")
}, "\u2022\u2022\u2022");
var prevIcon = /*#__PURE__*/React.createElement("button", {
className: "".concat(prefixCls, "-item-link"),
type: "button",
tabIndex: -1
}, /*#__PURE__*/React.createElement(LeftOutlined, null));
var nextIcon = /*#__PURE__*/React.createElement("button", {
className: "".concat(prefixCls, "-item-link"),
type: "button",
tabIndex: -1
}, /*#__PURE__*/React.createElement(RightOutlined, null));
var jumpPrevIcon = /*#__PURE__*/React.createElement("a", {
className: "".concat(prefixCls, "-item-link")
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefixCls, "-item-container")
}, /*#__PURE__*/React.createElement(DoubleLeftOutlined, {
className: "".concat(prefixCls, "-item-link-icon")
}), ellipsis));
var jumpNextIcon = /*#__PURE__*/React.createElement("a", {
className: "".concat(prefixCls, "-item-link")
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(prefixCls, "-item-container")
}, /*#__PURE__*/React.createElement(DoubleRightOutlined, {
className: "".concat(prefixCls, "-item-link-icon")
}), ellipsis)); // change arrows direction in right-to-left direction
if (direction === 'rtl') {
var _ref = [nextIcon, prevIcon];
prevIcon = _ref[0];
nextIcon = _ref[1];
var _ref2 = [jumpNextIcon, jumpPrevIcon];
jumpPrevIcon = _ref2[0];
jumpNextIcon = _ref2[1];
}
return {
prevIcon: prevIcon,
nextIcon: nextIcon,
jumpPrevIcon: jumpPrevIcon,
jumpNextIcon: jumpNextIcon
};
};
var renderPagination = function renderPagination(contextLocale) {
var locale = _extends(_extends({}, contextLocale), customLocale);
var isSmall = size === 'small' || !!(xs && !size && restProps.responsive);
var selectPrefixCls = getPrefixCls('select', customizeSelectPrefixCls);
var extendedClassName = classNames(_defineProperty({
mini: isSmall
}, "".concat(prefixCls, "-rtl"), direction === 'rtl'), className);
return /*#__PURE__*/React.createElement(RcPagination, _extends({}, restProps, {
prefixCls: prefixCls,
selectPrefixCls: selectPrefixCls
}, getIconsProps(), {
className: extendedClassName,
selectComponentClass: isSmall ? MiniSelect : Select,
locale: locale
}));
};
return /*#__PURE__*/React.createElement(LocaleReceiver, {
componentName: "Pagination",
defaultLocale: enUS
}, renderPagination);
};
export default Pagination;