pagination-front-end
Version:
pagination-front-end é uma biblioteca voltada para realização de paginação no front end( pagination-front-end is a front-end paging library)
25 lines (22 loc) • 671 B
text/typescript
const indiceCalculation = (
pageSize: number,
AllItems: number,
currentPage: number,
startPage:number,
endPage: number
) => {
// calcula os índices de item inicial e final
// calculate start and end item indexes
let startIndex: number = (currentPage - 1) * pageSize;
let endIndex: number = Math.min(startIndex + pageSize - 1, AllItems - 1);
// cria um array de páginas para repetir no controle de paginas
// create an array of pages to ng-repeat in the pager control
return {
pages: Array.from(Array(endPage + 1 - startPage).keys()).map(
i => startPage + i
),
startIndex,
endIndex
}
}
export default indiceCalculation;