-
Notifications
You must be signed in to change notification settings - Fork 8
/
PaginationHelper.js
45 lines (36 loc) · 1.69 KB
/
PaginationHelper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
Description:
For this exercise you will be strengthening your page-fu mastery. You will complete the PaginationHelper class, which is a utility class helpful for querying paging information related to an array.
The class is designed to take in an array of values and an integer indicating how many items will be allowed per each page. The types of values contained within the collection/array are not relevant.
The following are some examples of how this class is used:
var helper = new PaginationHelper(['a','b','c','d','e','f'], 4);
helper.pageCount(); //should == 2
helper.itemCount(); //should == 6
helper.pageItemCount(0); //should == 4
helper.pageItemCount(1); // last page - should == 2
helper.pageItemCount(2); // should == -1 since the page is invalid
// pageIndex takes an item index and returns the page that it belongs on
helper.pageIndex(5); //should == 1 (zero based index)
helper.pageIndex(2); //should == 0
helper.pageIndex(20); //should == -1
helper.pageIndex(-10); //should == -1
*/
function PaginationHelper(collection, itemsPerPage){
this.collection = collection, this.itemsPerPage = itemsPerPage;
}
PaginationHelper.prototype.itemCount = function() {
return this.collection.length;
}
PaginationHelper.prototype.pageCount = function() {
return Math.ceil(this.collection.length / this.itemsPerPage);
}
PaginationHelper.prototype.pageItemCount = function(pageIndex) {
return pageIndex < this.pageCount()
? Math.min(this.itemsPerPage, this.collection.length - pageIndex * this.itemsPerPage)
: -1;
}
PaginationHelper.prototype.pageIndex = function(itemIndex) {
return itemIndex < this.collection.length && itemIndex >= 0
? Math.floor(itemIndex / this.itemsPerPage)
: -1;
}