mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
775d1800bb
* chore(deps-dev): bump eslint-config-prettier from 6.15.0 to 7.0.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.15.0 to 7.0.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.15.0...v7.0.0) Signed-off-by: dependabot[bot] <support@github.com> * chore: fix eslint style * chore: prettier code style Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
109 lines
2.9 KiB
TypeScript
109 lines
2.9 KiB
TypeScript
import { useState } from 'react';
|
|
import { PaginationProps } from '../../pagination';
|
|
import { TablePaginationConfig } from '../interface';
|
|
|
|
export const DEFAULT_PAGE_SIZE = 10;
|
|
|
|
export function getPaginationParam(
|
|
pagination: TablePaginationConfig | boolean | undefined,
|
|
mergedPagination: TablePaginationConfig,
|
|
) {
|
|
const param: any = {
|
|
current: mergedPagination.current,
|
|
pageSize: mergedPagination.pageSize,
|
|
};
|
|
const paginationObj = pagination && typeof pagination === 'object' ? pagination : {};
|
|
|
|
Object.keys(paginationObj).forEach(pageProp => {
|
|
const value = (mergedPagination as any)[pageProp];
|
|
|
|
if (typeof value !== 'function') {
|
|
param[pageProp] = value;
|
|
}
|
|
});
|
|
|
|
return param;
|
|
}
|
|
|
|
function extendsObject<T extends Object>(...list: T[]) {
|
|
const result: T = {} as T;
|
|
|
|
list.forEach(obj => {
|
|
if (obj) {
|
|
Object.keys(obj).forEach(key => {
|
|
const val = (obj as any)[key];
|
|
if (val !== undefined) {
|
|
(result as any)[key] = val;
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
export default function usePagination(
|
|
total: number,
|
|
pagination: TablePaginationConfig | false | undefined,
|
|
onChange: (current: number, pageSize: number) => void,
|
|
): [TablePaginationConfig, () => void] {
|
|
const { total: paginationTotal = 0, ...paginationObj } =
|
|
pagination && typeof pagination === 'object' ? pagination : {};
|
|
|
|
const [innerPagination, setInnerPagination] = useState<{
|
|
current?: number;
|
|
pageSize?: number;
|
|
}>(() => ({
|
|
current: 'defaultCurrent' in paginationObj ? paginationObj.defaultCurrent : 1,
|
|
pageSize:
|
|
'defaultPageSize' in paginationObj ? paginationObj.defaultPageSize : DEFAULT_PAGE_SIZE,
|
|
}));
|
|
|
|
// ============ Basic Pagination Config ============
|
|
const mergedPagination = extendsObject<Partial<TablePaginationConfig>>(
|
|
innerPagination,
|
|
paginationObj,
|
|
{
|
|
total: paginationTotal > 0 ? paginationTotal : total,
|
|
},
|
|
);
|
|
|
|
if (!paginationTotal) {
|
|
// Reset `current` if data length changed. Only reset when paginationObj do not have total
|
|
const maxPage = Math.ceil(total / mergedPagination.pageSize!);
|
|
if (maxPage < mergedPagination.current!) {
|
|
mergedPagination.current = 1;
|
|
}
|
|
}
|
|
|
|
const refreshPagination = (current: number = 1, pageSize?: number) => {
|
|
setInnerPagination({
|
|
current,
|
|
pageSize: pageSize || mergedPagination.pageSize,
|
|
});
|
|
};
|
|
|
|
const onInternalChange: PaginationProps['onChange'] = (current, pageSize) => {
|
|
const paginationPageSize = mergedPagination?.pageSize;
|
|
if (pageSize && pageSize !== paginationPageSize) {
|
|
current = 1;
|
|
}
|
|
if (pagination && pagination.onChange) pagination.onChange(current, pageSize);
|
|
|
|
refreshPagination(current, pageSize);
|
|
onChange(current, pageSize || paginationPageSize!);
|
|
};
|
|
|
|
if (pagination === false) {
|
|
return [{}, () => {}];
|
|
}
|
|
|
|
return [
|
|
{
|
|
...mergedPagination,
|
|
onChange: onInternalChange,
|
|
},
|
|
refreshPagination,
|
|
];
|
|
}
|