antd
Version:
An enterprise-class UI design language and React components implementation
117 lines (101 loc) • 4.96 kB
JavaScript
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
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 prevIcon = /*#__PURE__*/React.createElement("a", {
className: "".concat(prefixCls, "-item-link")
}, /*#__PURE__*/React.createElement(LeftOutlined, null));
var nextIcon = /*#__PURE__*/React.createElement("a", {
className: "".concat(prefixCls, "-item-link")
}, /*#__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")
}), /*#__PURE__*/React.createElement("span", {
className: "".concat(prefixCls, "-item-ellipsis")
}, "\u2022\u2022\u2022")));
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")
}), /*#__PURE__*/React.createElement("span", {
className: "".concat(prefixCls, "-item-ellipsis")
}, "\u2022\u2022\u2022"))); // change arrows direction in right-to-left direction
if (direction === 'rtl') {
var temp;
temp = prevIcon;
prevIcon = nextIcon;
nextIcon = temp;
temp = jumpPrevIcon;
jumpPrevIcon = jumpNextIcon;
jumpNextIcon = temp;
}
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(className, _defineProperty({
mini: isSmall
}, "".concat(prefixCls, "-rtl"), direction === 'rtl'));
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;