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';
|
2023-05-06 15:49:37 +08:00
|
|
|
import * as React from 'react';
|
2020-05-24 23:13:32 +08:00
|
|
|
import { ConfigContext } from '../config-provider';
|
2023-05-12 14:53:47 +08:00
|
|
|
import useSize from '../config-provider/hooks/useSize';
|
2020-05-24 23:13:32 +08:00
|
|
|
import useBreakpoint from '../grid/hooks/useBreakpoint';
|
2023-03-21 13:08:43 +08:00
|
|
|
import { useLocale } from '../locale';
|
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
|
|
|
|
2023-07-11 11:20:11 +08:00
|
|
|
const Pagination: React.FC<PaginationProps> = (props) => {
|
|
|
|
const {
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
selectPrefixCls: customizeSelectPrefixCls,
|
|
|
|
className,
|
|
|
|
rootClassName,
|
|
|
|
style,
|
|
|
|
size: customizeSize,
|
|
|
|
locale: customLocale,
|
|
|
|
selectComponentClass,
|
|
|
|
responsive,
|
|
|
|
showSizeChanger,
|
|
|
|
...restProps
|
|
|
|
} = props;
|
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;
|
|
|
|
|
2023-03-26 23:51:33 +08:00
|
|
|
const iconsProps = React.useMemo<Record<PropertyKey, React.ReactNode>>(() => {
|
2020-06-28 22:41:59 +08:00
|
|
|
const ellipsis = <span className={`${prefixCls}-item-ellipsis`}>•••</span>;
|
2023-03-26 23:51:33 +08:00
|
|
|
const prevIcon = (
|
2020-06-28 22:41:59 +08:00
|
|
|
<button className={`${prefixCls}-item-link`} type="button" tabIndex={-1}>
|
2023-03-26 23:51:33 +08:00
|
|
|
{direction === 'rtl' ? <RightOutlined /> : <LeftOutlined />}
|
2020-06-28 22:41:59 +08:00
|
|
|
</button>
|
2018-08-21 17:13:12 +08:00
|
|
|
);
|
2023-03-26 23:51:33 +08:00
|
|
|
const nextIcon = (
|
2020-06-28 22:41:59 +08:00
|
|
|
<button className={`${prefixCls}-item-link`} type="button" tabIndex={-1}>
|
2023-03-26 23:51:33 +08:00
|
|
|
{direction === 'rtl' ? <LeftOutlined /> : <RightOutlined />}
|
2020-06-28 22:41:59 +08:00
|
|
|
</button>
|
2018-08-21 17:13:12 +08:00
|
|
|
);
|
2023-03-26 23:51:33 +08:00
|
|
|
const jumpPrevIcon = (
|
2018-08-21 17:13:12 +08:00
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
<div className={`${prefixCls}-item-container`}>
|
2023-03-26 23:51:33 +08:00
|
|
|
{direction === 'rtl' ? (
|
|
|
|
<DoubleRightOutlined className={`${prefixCls}-item-link-icon`} />
|
|
|
|
) : (
|
|
|
|
<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>
|
|
|
|
);
|
2023-03-26 23:51:33 +08:00
|
|
|
const jumpNextIcon = (
|
2018-08-21 17:13:12 +08:00
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
<div className={`${prefixCls}-item-container`}>
|
2023-03-26 23:51:33 +08:00
|
|
|
{direction === 'rtl' ? (
|
|
|
|
<DoubleLeftOutlined className={`${prefixCls}-item-link-icon`} />
|
|
|
|
) : (
|
|
|
|
<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>
|
|
|
|
);
|
2023-02-22 18:18:26 +08:00
|
|
|
return { prevIcon, nextIcon, jumpPrevIcon, jumpNextIcon };
|
2023-03-26 23:51:33 +08:00
|
|
|
}, [direction, prefixCls]);
|
2018-08-21 17:13:12 +08:00
|
|
|
|
2023-02-24 10:51:59 +08:00
|
|
|
const [contextLocale] = useLocale('Pagination', enUS);
|
2023-02-22 18:18:26 +08:00
|
|
|
|
|
|
|
const locale = { ...contextLocale, ...customLocale };
|
|
|
|
|
2023-05-12 14:53:47 +08:00
|
|
|
const mergedSize = useSize(customizeSize);
|
|
|
|
|
2023-05-08 11:21:20 +08:00
|
|
|
const isSmall = mergedSize === 'small' || !!(xs && !mergedSize && responsive);
|
2023-03-26 23:51:33 +08:00
|
|
|
|
2023-02-22 18:18:26 +08:00
|
|
|
const selectPrefixCls = getPrefixCls('select', customizeSelectPrefixCls);
|
2023-06-26 15:32:18 +08:00
|
|
|
|
2023-02-22 18:18:26 +08:00
|
|
|
const extendedClassName = classNames(
|
|
|
|
{
|
|
|
|
[`${prefixCls}-mini`]: isSmall,
|
|
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
|
|
},
|
2023-06-26 15:32:18 +08:00
|
|
|
pagination?.className,
|
2023-02-22 18:18:26 +08:00
|
|
|
className,
|
|
|
|
rootClassName,
|
|
|
|
hashId,
|
|
|
|
);
|
|
|
|
|
2023-06-26 15:32:18 +08:00
|
|
|
const mergedStyle: React.CSSProperties = { ...pagination?.style, ...style };
|
|
|
|
|
2023-02-22 18:18:26 +08:00
|
|
|
return wrapSSR(
|
|
|
|
<RcPagination
|
2023-03-26 23:51:33 +08:00
|
|
|
{...iconsProps}
|
2023-02-22 18:18:26 +08:00
|
|
|
{...restProps}
|
2023-06-26 15:32:18 +08:00
|
|
|
style={mergedStyle}
|
2023-02-22 18:18:26 +08:00
|
|
|
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;
|