2022-05-26 17:14:05 +08:00
|
|
|
import DoubleLeftOutlined from '@ant-design/icons/DoubleLeftOutlined';
|
|
|
|
import DoubleRightOutlined from '@ant-design/icons/DoubleRightOutlined';
|
|
|
|
import LeftOutlined from '@ant-design/icons/LeftOutlined';
|
|
|
|
import RightOutlined from '@ant-design/icons/RightOutlined';
|
|
|
|
import classNames from 'classnames';
|
2023-02-22 18:18:26 +08:00
|
|
|
import type { PaginationLocale, PaginationProps as RcPaginationProps } from 'rc-pagination';
|
2023-01-12 11:04:35 +08:00
|
|
|
import RcPagination from 'rc-pagination';
|
2017-09-26 23:12:47 +08:00
|
|
|
import enUS from 'rc-pagination/lib/locale/en_US';
|
2022-05-26 17:14:05 +08:00
|
|
|
import * as React from 'react';
|
2020-05-24 23:13:32 +08:00
|
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
import useBreakpoint from '../grid/hooks/useBreakpoint';
|
2023-02-22 18:18:26 +08:00
|
|
|
import useLocale from '../locale/useLocale';
|
2022-05-26 17:14:05 +08:00
|
|
|
import { MiddleSelect, MiniSelect } from './Select';
|
2022-03-30 13:54:21 +08:00
|
|
|
import useStyle from './style';
|
2016-03-31 17:46:35 +08:00
|
|
|
|
2021-09-13 12:15:18 +08:00
|
|
|
export interface PaginationProps extends RcPaginationProps {
|
2019-02-14 22:39:11 +08:00
|
|
|
showQuickJumper?: boolean | { goButton?: React.ReactNode };
|
2020-03-10 20:32:34 +08:00
|
|
|
size?: 'default' | 'small';
|
|
|
|
responsive?: boolean;
|
2018-07-27 15:14:20 +08:00
|
|
|
role?: string;
|
2021-07-28 12:18:47 +08:00
|
|
|
totalBoundaryShowSizeChanger?: number;
|
2023-01-20 11:03:50 +08:00
|
|
|
rootClassName?: string;
|
2016-08-15 12:00:05 +08:00
|
|
|
}
|
|
|
|
|
2020-04-27 23:45:14 +08:00
|
|
|
export type PaginationPosition = 'top' | 'bottom' | 'both';
|
2020-03-27 15:48:42 +08:00
|
|
|
|
2022-12-31 19:18:09 +08:00
|
|
|
export type PaginationAlign = 'start' | 'center' | 'end';
|
|
|
|
|
2023-01-20 11:03:50 +08:00
|
|
|
export interface PaginationConfig extends Omit<PaginationProps, 'rootClassName'> {
|
2020-04-27 23:45:14 +08:00
|
|
|
position?: PaginationPosition;
|
2022-12-31 19:18:09 +08:00
|
|
|
align?: PaginationAlign;
|
2018-05-21 21:52:18 +08:00
|
|
|
}
|
|
|
|
|
2022-11-09 12:28:04 +08:00
|
|
|
export type { PaginationLocale };
|
2017-11-21 15:37:39 +08:00
|
|
|
|
2020-05-24 23:13:32 +08:00
|
|
|
const Pagination: React.FC<PaginationProps> = ({
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
selectPrefixCls: customizeSelectPrefixCls,
|
|
|
|
className,
|
2023-01-20 11:03:50 +08:00
|
|
|
rootClassName,
|
2020-05-24 23:13:32 +08:00
|
|
|
size,
|
|
|
|
locale: customLocale,
|
2021-09-13 12:15:18 +08:00
|
|
|
selectComponentClass,
|
2022-02-21 16:48:39 +08:00
|
|
|
responsive,
|
2022-05-26 17:14:05 +08:00
|
|
|
showSizeChanger,
|
2020-05-24 23:13:32 +08:00
|
|
|
...restProps
|
|
|
|
}) => {
|
2022-02-21 16:48:39 +08:00
|
|
|
const { xs } = useBreakpoint(responsive);
|
2020-03-10 20:32:34 +08:00
|
|
|
|
2022-05-26 17:14:05 +08:00
|
|
|
const { getPrefixCls, direction, pagination = {} } = React.useContext(ConfigContext);
|
2020-05-24 23:13:32 +08:00
|
|
|
const prefixCls = getPrefixCls('pagination', customizePrefixCls);
|
2020-03-10 20:32:34 +08:00
|
|
|
|
2022-03-30 13:54:21 +08:00
|
|
|
// Style
|
2022-04-06 21:49:30 +08:00
|
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
2022-03-30 13:54:21 +08:00
|
|
|
|
2022-05-26 17:14:05 +08:00
|
|
|
const mergedShowSizeChanger = showSizeChanger ?? pagination.showSizeChanger;
|
|
|
|
|
2020-05-24 23:13:32 +08:00
|
|
|
const getIconsProps = () => {
|
2020-06-28 22:41:59 +08:00
|
|
|
const ellipsis = <span className={`${prefixCls}-item-ellipsis`}>•••</span>;
|
2020-01-02 19:10:16 +08:00
|
|
|
let prevIcon = (
|
2020-06-28 22:41:59 +08:00
|
|
|
<button className={`${prefixCls}-item-link`} type="button" tabIndex={-1}>
|
2019-11-28 12:34:33 +08:00
|
|
|
<LeftOutlined />
|
2020-06-28 22:41:59 +08:00
|
|
|
</button>
|
2018-08-21 17:13:12 +08:00
|
|
|
);
|
2020-01-02 19:10:16 +08:00
|
|
|
let nextIcon = (
|
2020-06-28 22:41:59 +08:00
|
|
|
<button className={`${prefixCls}-item-link`} type="button" tabIndex={-1}>
|
2019-11-28 12:34:33 +08:00
|
|
|
<RightOutlined />
|
2020-06-28 22:41:59 +08:00
|
|
|
</button>
|
2018-08-21 17:13:12 +08:00
|
|
|
);
|
2020-01-02 19:10:16 +08:00
|
|
|
let jumpPrevIcon = (
|
2018-08-21 17:13:12 +08:00
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
{/* You can use transition effects in the container :) */}
|
|
|
|
<div className={`${prefixCls}-item-container`}>
|
2019-11-28 12:34:33 +08:00
|
|
|
<DoubleLeftOutlined className={`${prefixCls}-item-link-icon`} />
|
2020-06-28 22:41:59 +08:00
|
|
|
{ellipsis}
|
2018-08-22 20:01:00 +08:00
|
|
|
</div>
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
2020-01-02 19:10:16 +08:00
|
|
|
let jumpNextIcon = (
|
2018-08-21 17:13:12 +08:00
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
{/* You can use transition effects in the container :) */}
|
|
|
|
<div className={`${prefixCls}-item-container`}>
|
2019-11-28 12:34:33 +08:00
|
|
|
<DoubleRightOutlined className={`${prefixCls}-item-link-icon`} />
|
2020-06-28 22:41:59 +08:00
|
|
|
{ellipsis}
|
2018-08-22 20:01:00 +08:00
|
|
|
</div>
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
2020-01-02 19:10:16 +08:00
|
|
|
// change arrows direction in right-to-left direction
|
|
|
|
if (direction === 'rtl') {
|
2020-06-28 22:41:59 +08:00
|
|
|
[prevIcon, nextIcon] = [nextIcon, prevIcon];
|
|
|
|
[jumpPrevIcon, jumpNextIcon] = [jumpNextIcon, jumpPrevIcon];
|
2020-01-02 19:10:16 +08:00
|
|
|
}
|
2023-02-22 18:18:26 +08:00
|
|
|
return { prevIcon, nextIcon, jumpPrevIcon, jumpNextIcon };
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-08-21 17:13:12 +08:00
|
|
|
|
2023-02-22 18:18:26 +08:00
|
|
|
const contextLocale = useLocale('Pagination', enUS);
|
|
|
|
|
|
|
|
const locale = { ...contextLocale, ...customLocale };
|
|
|
|
|
|
|
|
const isSmall = size === 'small' || !!(xs && !size && responsive);
|
|
|
|
const selectPrefixCls = getPrefixCls('select', customizeSelectPrefixCls);
|
|
|
|
const extendedClassName = classNames(
|
|
|
|
{
|
|
|
|
[`${prefixCls}-mini`]: isSmall,
|
|
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
|
|
},
|
|
|
|
className,
|
|
|
|
rootClassName,
|
|
|
|
hashId,
|
|
|
|
);
|
|
|
|
|
|
|
|
return wrapSSR(
|
|
|
|
<RcPagination
|
|
|
|
{...getIconsProps()}
|
|
|
|
{...restProps}
|
|
|
|
prefixCls={prefixCls}
|
|
|
|
selectPrefixCls={selectPrefixCls}
|
|
|
|
className={extendedClassName}
|
|
|
|
selectComponentClass={selectComponentClass || (isSmall ? MiniSelect : MiddleSelect)}
|
|
|
|
locale={locale}
|
|
|
|
showSizeChanger={mergedShowSizeChanger}
|
|
|
|
/>,
|
2020-05-24 23:13:32 +08:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-01-08 21:30:41 +08:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
Pagination.displayName = 'Pagination';
|
|
|
|
}
|
|
|
|
|
2020-05-24 23:13:32 +08:00
|
|
|
export default Pagination;
|