oa_based/src/helper/paginate/create-pagination.ts

27 lines
560 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { IPaginationMeta } from './interface';
import { Pagination } from './pagination';
2024-02-28 08:32:35 +08:00
export function createPaginationObject<T>({
items,
totalItems,
currentPage,
2024-02-29 09:29:03 +08:00
limit
2024-02-28 08:32:35 +08:00
}: {
2024-02-28 17:02:46 +08:00
items: T[];
totalItems?: number;
currentPage: number;
limit: number;
2024-02-28 08:32:35 +08:00
}): Pagination<T> {
2024-02-28 17:02:46 +08:00
const totalPages = totalItems !== undefined ? Math.ceil(totalItems / limit) : undefined;
2024-02-28 08:32:35 +08:00
const meta: IPaginationMeta = {
totalItems,
itemCount: items.length,
itemsPerPage: limit,
totalPages,
2024-02-29 09:29:03 +08:00
currentPage
2024-02-28 17:02:46 +08:00
};
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
return new Pagination<T>(items, meta);
2024-02-28 08:32:35 +08:00
}