forked from bellshade/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagination_helper.py
124 lines (101 loc) · 3.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
from __future__ import annotations
from math import ceil
from typing import Any
class PaginationHelper:
# Sebuah class yang berisi utilitas-utilitas untuk membantu dalam pagination.
def __init__(self, collection: list[Any], items_per_page: int):
"""
Constructor class ini mengambil 2 parameter:
1. `collection`. List berisi item-item yang ingin di
paginate.
2. `items_per_page`. Angka integer yang menunjukkan
berapa item yang akan ditampilkan dalam 1 halaman.
Contoh:
>>> helper = PaginationHelper(['a', 'b', 'c', 'd', 'e', 'f'], 4)
>>> helper.collection
['a', 'b', 'c', 'd', 'e', 'f']
>>> helper.items_per_page
4
"""
self.collection = collection
self.items_per_page = items_per_page
def item_count(self) -> int:
"""
Method untuk mengembalikan panjang list dari
attribut `collection`.
Contoh:
>>> helper = PaginationHelper(['a', 'b', 'c', 'd', 'e', 'f'], 4)
>>> helper.item_count()
6
"""
return len(self.collection)
def page_count(self) -> int:
"""
Method untuk mengembalikan total halaman berdasarkan
atribut yang dimiliki.
Contoh:
>>> helper = PaginationHelper(['a', 'b', 'c', 'd', 'e', 'f'], 4)
>>> helper.page_count()
2
"""
return ceil(self.item_count() / self.items_per_page)
def page_item_count(self, page_index: int) -> int:
"""
Method untuk mengembalikan total item yang ada di
halaman tertentu berdasarkan parameter `page_index`
dan atribut yang dimiliki. `page_index` adalah angka
integer yang dimulai dari 0.
Contoh:
>>> helper = PaginationHelper(['a', 'b', 'c', 'd', 'e', 'f'], 4)
>>> helper.page_item_count(0)
4
>>> helper.page_item_count(1)
2
>>> helper.page_item_count(2)
-1
"""
if page_index >= self.page_count():
return -1
if page_index + 1 < self.page_count():
return self.items_per_page
return self.item_count() % self.items_per_page
def page_index(self, item_index: int) -> int:
"""
Method untuk mengembalikan nomor halaman dari sebuah item
menggunakan index item tertentu, `item_index`.
`item_index` adalah angka integer yang dimulai dari 0.
Contoh:
>>> helper = PaginationHelper(['a', 'b', 'c', 'd', 'e', 'f'], 4)
>>> helper.page_index(2)
0
>>> helper.page_index(5)
1
>>> helper.page_index(20)
-1
"""
if item_index < 0 or item_index >= self.item_count():
return -1
return item_index // self.items_per_page
if __name__ == "__main__":
import doctest
doctest.testmod()
helper = PaginationHelper(["a", "b", "c", "d", "e", "f"], 4)
# basic tests
print(helper.collection)
print(helper.items_per_page)
print(helper.item_count())
print(helper.page_count())
print(helper.page_item_count(0))
print(helper.page_item_count(1))
print(helper.page_item_count(2))
print(helper.page_index(2))
print(helper.page_index(5))
print(helper.page_index(20))
# custom tests
# pagination_helper = PaginationHelper([
# (1, 'a'),
# (2, 'b'),
# (3, 'c'),
# (4, 'd'),
# (5, 'e'),
# ], 2)