import * as React from 'react'; import RcPagination from 'rc-pagination'; import enUS from 'rc-pagination/lib/locale/en_US'; import classNames from 'classnames'; import MiniSelect from './MiniSelect'; import Icon from '../icon'; import Select from '../select'; import LocaleReceiver from '../locale-provider/LocaleReceiver'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; export interface PaginationProps { total?: number; defaultCurrent?: number; current?: number; defaultPageSize?: number; pageSize?: number; onChange?: (page: number, pageSize?: number) => void; hideOnSinglePage?: boolean; showSizeChanger?: boolean; pageSizeOptions?: string[]; onShowSizeChange?: (current: number, size: number) => void; showQuickJumper?: boolean | { goButton?: React.ReactNode }; 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', originalElement: React.ReactElement, ) => React.ReactNode; role?: string; } export interface PaginationConfig extends PaginationProps { position?: 'top' | 'bottom' | 'both'; } export type PaginationLocale = any; export default class Pagination extends React.Component { getIconsProps = (prefixCls: string) => { const prevIcon = ( ); const nextIcon = ( ); const jumpPrevIcon = ( {/* You can use transition effects in the container :) */}
•••
); const jumpNextIcon = ( {/* You can use transition effects in the container :) */}
•••
); return { prevIcon, nextIcon, jumpPrevIcon, jumpNextIcon, }; }; renderPagination = (contextLocale: PaginationLocale) => { const { prefixCls: customizePrefixCls, selectPrefixCls: customizeSelectPrefixCls, className, size, locale: customLocale, ...restProps } = this.props; const locale = { ...contextLocale, ...customLocale }; const isSmall = size === 'small'; return ( {({ getPrefixCls }: ConfigConsumerProps) => { const prefixCls = getPrefixCls('pagination', customizePrefixCls); const selectPrefixCls = getPrefixCls('select', customizeSelectPrefixCls); return ( ); }} ); }; render() { return ( {this.renderPagination} ); } }