]>
Commit | Line | Data |
---|---|---|
1 | export interface ComponentPagination { | |
2 | currentPage: number | |
3 | itemsPerPage: number | |
4 | totalItems: number | |
5 | } | |
6 | ||
7 | export type ComponentPaginationLight = Omit<ComponentPagination, 'totalItems'> & { totalItems?: number } | |
8 | ||
9 | export function hasMoreItems (componentPagination: ComponentPagination) { | |
10 | // No results | |
11 | if (componentPagination.totalItems === 0) return false | |
12 | ||
13 | // Not loaded yet | |
14 | if (!componentPagination.totalItems) return true | |
15 | ||
16 | const maxPage = componentPagination.totalItems / componentPagination.itemsPerPage | |
17 | return maxPage > componentPagination.currentPage | |
18 | } |