You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
import React from 'react';
|
|
import RcPagination from 'rc-pagination';
|
|
import enUS from 'rc-pagination/lib/locale/en_US';
|
|
import classNames from 'classnames';
|
|
import injectLocale from '../locale-provider/injectLocale';
|
|
import Select from '../select';
|
|
import MiniSelect from './MiniSelect';
|
|
|
|
export interface PaginationProps {
|
|
total: number;
|
|
defaultCurrent?: number;
|
|
current?: number;
|
|
defaultPageSize?: number;
|
|
pageSize?: number;
|
|
onChange?: (page: number, pageSize: number) => void;
|
|
showSizeChanger?: boolean;
|
|
pageSizeOptions?: string[];
|
|
onShowSizeChange?: (current: number, size: number) => void;
|
|
showQuickJumper?: boolean;
|
|
showTotal?: (total: number, range: [number, number]) => React.ReactNode;
|
|
size?: string;
|
|
simple?: boolean;
|
|
style?: React.CSSProperties;
|
|
locale?: Object;
|
|
className?: string;
|
|
prefixCls?: string;
|
|
selectPrefixCls?: string;
|
|
itemRender?: (page: number, type: 'page' | 'prev' | 'next' | 'jump-prev' | 'jump-next') => React.ReactNode;
|
|
}
|
|
|
|
abstract class Pagination extends React.Component<PaginationProps, any> {
|
|
static defaultProps = {
|
|
prefixCls: 'ant-pagination',
|
|
selectPrefixCls: 'ant-select',
|
|
};
|
|
|
|
abstract getLocale();
|
|
|
|
render() {
|
|
const { className, size, ...restProps } = this.props;
|
|
const locale = this.getLocale();
|
|
const isSmall = size === 'small';
|
|
return (
|
|
<RcPagination
|
|
{...restProps}
|
|
className={classNames(className, { mini: isSmall })}
|
|
selectComponentClass={isSmall ? MiniSelect : Select}
|
|
locale={locale}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
const injectPaginationLocale = injectLocale('Pagination', enUS);
|
|
export default injectPaginationLocale<PaginationProps>(Pagination as any);
|
|
|