-
Notifications
You must be signed in to change notification settings - Fork 2
/
pagination_helper.py
34 lines (29 loc) · 1.29 KB
/
pagination_helper.py
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
class PaginationHelper:
# The constructor takes in an array of items and a integer indicating
# how many items fit within a single page
def __init__(self, collection, items_per_page):
self.collection = collection
self.items_per_page = items_per_page
# returns the number of items within the entire collection
def item_count(self):
return len(self.collection)
# returns the number of pages
def page_count(self):
return len(self.collection) // self.items_per_page + 1
# returns the number of items on the current page. page_index is zero based
# this method should return -1 for page_index values that are out of range
def page_item_count(self, page_index):
pages = self.page_count()
if page_index < 0 or page_index >= pages:
return -1
elif page_index == pages - 1:
return self.item_count() % self.items_per_page
else:
return self.items_per_page
# determines what page an item is on. Zero based indexes.
# this method should return -1 for item_index values that are out of range
def page_index(self, item_index):
if item_index < 0 or item_index >= self.item_count():
return -1
else:
return item_index // self.items_per_page