2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2016-03-31 17:46: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';
|
2017-03-17 15:23:25 +08:00
|
|
|
import classNames from 'classnames';
|
2017-10-20 14:54:38 +08:00
|
|
|
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
2016-03-31 17:46:35 +08:00
|
|
|
import Select from '../select';
|
|
|
|
import MiniSelect from './MiniSelect';
|
2018-08-21 17:13:12 +08:00
|
|
|
import Icon from '../icon';
|
2016-03-31 17:46:35 +08:00
|
|
|
|
2016-08-15 12:00:05 +08:00
|
|
|
export interface PaginationProps {
|
2017-11-21 13:48:37 +08:00
|
|
|
total?: number;
|
2017-03-17 15:23:25 +08:00
|
|
|
defaultCurrent?: number;
|
|
|
|
current?: number;
|
2016-08-15 12:00:05 +08:00
|
|
|
defaultPageSize?: number;
|
|
|
|
pageSize?: number;
|
2017-11-21 13:48:37 +08:00
|
|
|
onChange?: (page: number, pageSize?: number) => void;
|
2017-12-29 20:14:53 +08:00
|
|
|
hideOnSinglePage?: boolean;
|
2016-08-15 12:00:05 +08:00
|
|
|
showSizeChanger?: boolean;
|
2017-03-17 15:23:25 +08:00
|
|
|
pageSizeOptions?: string[];
|
2016-08-15 12:00:05 +08:00
|
|
|
onShowSizeChange?: (current: number, size: number) => void;
|
|
|
|
showQuickJumper?: boolean;
|
2017-08-02 13:03:42 +08:00
|
|
|
showTotal?: (total: number, range: [number, number]) => React.ReactNode;
|
2016-08-15 12:00:05 +08:00
|
|
|
size?: string;
|
2017-03-06 15:48:03 +08:00
|
|
|
simple?: boolean;
|
2016-08-15 12:00:05 +08:00
|
|
|
style?: React.CSSProperties;
|
|
|
|
locale?: Object;
|
2017-03-17 15:23:25 +08:00
|
|
|
className?: string;
|
2016-09-14 16:18:33 +08:00
|
|
|
prefixCls?: string;
|
|
|
|
selectPrefixCls?: string;
|
2017-07-06 19:17:36 +08:00
|
|
|
itemRender?: (page: number, type: 'page' | 'prev' | 'next' | 'jump-prev' | 'jump-next') => React.ReactNode;
|
2018-07-27 15:14:20 +08:00
|
|
|
role?: string;
|
2016-08-15 12:00:05 +08:00
|
|
|
}
|
|
|
|
|
2018-05-21 21:52:18 +08:00
|
|
|
export interface PaginationConfig extends PaginationProps {
|
|
|
|
position?: 'top' | 'bottom' | 'both';
|
|
|
|
}
|
|
|
|
|
2017-11-21 15:37:39 +08:00
|
|
|
export type PaginationLocale = any;
|
|
|
|
|
|
|
|
export default class Pagination extends React.Component<PaginationProps, {}> {
|
2016-03-31 17:46:35 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-pagination',
|
2016-09-14 16:18:33 +08:00
|
|
|
selectPrefixCls: 'ant-select',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-31 17:46:35 +08:00
|
|
|
|
2018-08-21 17:13:12 +08:00
|
|
|
getIconsProps = () => {
|
|
|
|
const { prefixCls } = this.props;
|
|
|
|
const prevIcon = (
|
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
<Icon type="left" />
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
const nextIcon = (
|
|
|
|
<a className={`${prefixCls}-item-link`}>
|
2018-08-22 20:01:00 +08:00
|
|
|
<Icon type="right" />
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
const jumpPrevIcon = (
|
|
|
|
<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`}>
|
|
|
|
<Icon
|
|
|
|
className={`${prefixCls}-item-link-icon`}
|
2018-08-24 18:11:02 +08:00
|
|
|
type="double-left"
|
2018-08-22 20:01:00 +08:00
|
|
|
/>
|
|
|
|
<span className={`${prefixCls}-item-ellipsis`}>•••</span>
|
|
|
|
</div>
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
const jumpNextIcon = (
|
|
|
|
<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`}>
|
|
|
|
<Icon
|
|
|
|
className={`${prefixCls}-item-link-icon`}
|
|
|
|
type="double-right"
|
|
|
|
/>
|
|
|
|
<span className={`${prefixCls}-item-ellipsis`}>•••</span>
|
|
|
|
</div>
|
2018-08-21 17:13:12 +08:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
return {
|
|
|
|
prevIcon,
|
|
|
|
nextIcon,
|
|
|
|
jumpPrevIcon,
|
|
|
|
jumpNextIcon,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-06-21 12:00:09 +08:00
|
|
|
renderPagination = (contextLocale: PaginationLocale) => {
|
2018-08-21 17:13:12 +08:00
|
|
|
const { className, size, locale: customLocale, ...restProps } = this.props;
|
2018-06-21 12:00:09 +08:00
|
|
|
const locale = { ...contextLocale, ...customLocale };
|
2017-03-17 15:23:25 +08:00
|
|
|
const isSmall = size === 'small';
|
2016-03-31 17:46:35 +08:00
|
|
|
return (
|
2016-11-23 17:53:10 +08:00
|
|
|
<RcPagination
|
2017-03-17 15:23:25 +08:00
|
|
|
{...restProps}
|
2018-08-21 17:13:12 +08:00
|
|
|
{...this.getIconsProps()}
|
2017-03-17 15:23:25 +08:00
|
|
|
className={classNames(className, { mini: isSmall })}
|
|
|
|
selectComponentClass={isSmall ? MiniSelect : Select}
|
2016-03-31 17:46:35 +08:00
|
|
|
locale={locale}
|
2016-06-06 13:54:10 +08:00
|
|
|
/>
|
2016-03-31 17:46:35 +08:00
|
|
|
);
|
|
|
|
}
|
2017-03-17 15:23:25 +08:00
|
|
|
|
2017-10-20 14:54:38 +08:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<LocaleReceiver
|
|
|
|
componentName="Pagination"
|
|
|
|
defaultLocale={enUS}
|
|
|
|
>
|
|
|
|
{this.renderPagination}
|
|
|
|
</LocaleReceiver>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|