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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
|
<?php
namespace gipfl\IcingaWeb2\Widget;
use Icinga\Exception\ProgrammingError;
use gipfl\IcingaWeb2\Data\Paginatable;
use gipfl\IcingaWeb2\Icon;
use gipfl\IcingaWeb2\Link;
use gipfl\IcingaWeb2\Url;
use gipfl\Translation\TranslationHelper;
use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
class Paginator extends BaseHtmlElement
{
use TranslationHelper;
protected $tag = 'div';
protected $defaultAttributes = [
'class' => 'pagination-control',
'role' => 'navigation',
];
/** @var Paginatable The query the paginator widget is created for */
protected $query;
/** @var int */
protected $pageCount;
/** @var int */
protected $currentCount;
/** @var Url */
protected $url;
/** @var string */
protected $pageParam;
/** @var string */
protected $perPageParam;
/** @var int */
protected $totalCount;
/** @var int */
protected $defaultItemCountPerPage = 25;
public function __construct(
Paginatable $query,
Url $url,
$pageParameter = 'page',
$perPageParameter = 'limit'
) {
$this->query = $query;
$this->setPageParam($pageParameter);
$this->setPerPageParam($perPageParameter);
$this->setUrl($url);
}
public function setItemsPerPage($count)
{
// TODO: this should become setOffset once available
$query = $this->getQuery();
$query->setLimit($count);
return $this;
}
protected function setPageParam($pageParam)
{
$this->pageParam = $pageParam;
return $this;
}
protected function setPerPageParam($perPageParam)
{
$this->perPageParam = $perPageParam;
return $this;
}
public function getPageParam()
{
return $this->pageParam;
}
public function getPerPageParam()
{
return $this->perPageParam;
}
public function getCurrentPage()
{
$query = $this->getQuery();
if ($query->hasOffset()) {
return ($query->getOffset() / $this->getItemsPerPage()) + 1;
} else {
return 1;
}
}
protected function setCurrentPage($page)
{
$page = (int) $page;
$offset = $this->firstRowOnPage($page) - 1;
if ($page > 1) {
$query = $this->getQuery();
$query->setOffset($offset);
}
}
public function getPageCount()
{
if ($this->pageCount === null) {
$this->pageCount = (int) ceil($this->getTotalItemCount() / $this->getItemsPerPage());
}
return $this->pageCount;
}
protected function getItemsPerPage()
{
$limit = $this->getQuery()->getLimit();
if ($limit === null) {
throw new ProgrammingError('Something went wrong, got no limit when there should be one');
} else {
return $limit;
}
}
public function getTotalItemCount()
{
if ($this->totalCount === null) {
$this->totalCount = count($this->getQuery());
}
return $this->totalCount;
}
public function getPrevious()
{
if ($this->hasPrevious()) {
return $this->getCurrentPage() - 1;
} else {
return null;
}
}
public function hasPrevious()
{
return $this->getCurrentPage() > 1;
}
public function getNext()
{
if ($this->hasNext()) {
return $this->getCurrentPage() + 1;
} else {
return null;
}
}
public function hasNext()
{
return $this->getCurrentPage() < $this->getPageCount();
}
public function getQuery()
{
return $this->query;
}
/**
* Returns an array of "local" pages given the page count and current page number
*
* @return array
*/
protected function getPages()
{
$page = $this->getPageCount();
$current = $this->getCurrentPage();
$range = [];
if ($page < 10) {
// Show all pages if we have less than 10
for ($i = 1; $i < 10; $i++) {
if ($i > $page) {
break;
}
$range[$i] = $i;
}
} else {
// More than 10 pages:
foreach ([1, 2] as $i) {
$range[$i] = $i;
}
if ($current < 6) {
// We are on page 1-5 from
for ($i = 1; $i <= 7; $i++) {
$range[$i] = $i;
}
} else {
// Current page > 5
$range[] = '…';
if (($page - $current) < 5) {
// Less than 5 pages left
$start = 5 - ($page - $current);
} else {
$start = 1;
}
for ($i = $current - $start; $i < ($current + (4 - $start)); $i++) {
if ($i > $page) {
break;
}
$range[$i] = $i;
}
}
if ($current < ($page - 2)) {
$range[] = '…';
}
foreach ([$page - 1, $page] as $i) {
$range[$i] = $i;
}
}
if (empty($range)) {
$range[] = 1;
}
return $range;
}
public function getDefaultItemCountPerPage()
{
return $this->defaultItemCountPerPage;
}
public function setDefaultItemCountPerPage($count)
{
$this->defaultItemCountPerPage = (int) $count;
return $this;
}
public function setUrl(Url $url)
{
$page = (int) $url->shift($this->getPageParam());
$perPage = (int) $url->getParam($this->getPerPageParam());
if ($perPage > 0) {
$this->setItemsPerPage($perPage);
} else {
if (! $this->getQuery()->hasLimit()) {
$this->setItemsPerPage($this->getDefaultItemCountPerPage());
}
}
if ($page > 0) {
$this->setCurrentPage($page);
}
$this->url = $url;
return $this;
}
public function getUrl()
{
if ($this->url === null) {
$this->setUrl(Url::fromRequest());
}
return $this->url;
}
public function getPreviousLabel()
{
return $this->getLabel($this->getCurrentPage() - 1);
}
protected function getNextLabel()
{
return $this->getLabel($this->getCurrentPage() + 1);
}
protected function getLabel($page)
{
return sprintf(
$this->translate('Show rows %u to %u of %u'),
$this->firstRowOnPage($page),
$this->lastRowOnPage($page),
$this->getTotalItemCount()
);
}
protected function renderPrevious()
{
return Html::tag('li', [
'class' => 'nav-item'
], Link::create(
Icon::create('angle-double-left'),
$this->makeUrl($this->getPrevious()),
null,
[
'title' => $this->getPreviousLabel(),
'class' => 'previous-page'
]
));
}
protected function renderNoPrevious()
{
return $this->renderDisabled(Html::tag('span', [
'class' => 'previous-page'
], [
$this->srOnly($this->translate('Previous page')),
Icon::create('angle-double-left')
]));
}
protected function renderNext()
{
return Html::tag('li', [
'class' => 'nav-item'
], Link::create(
Icon::create('angle-double-right'),
$this->makeUrl($this->getNext()),
null,
[
'title' => $this->getNextLabel(),
'class' => 'next-page'
]
));
}
protected function renderNoNext()
{
return $this->renderDisabled(Html::tag('span', [
'class' => 'previous-page'
], [
$this->srOnly($this->translate('Next page')),
Icon::create('angle-double-right')
]));
}
protected function renderDots()
{
return $this->renderDisabled(Html::tag('span', null, '…'));
}
protected function renderInnerPages()
{
$pages = [];
$current = $this->getCurrentPage();
foreach ($this->getPages() as $page) {
if ($page === '…') {
$pages[] = $this->renderDots();
} else {
$pages[] = Html::tag(
'li',
$page === $current ? ['class' => 'active'] : null,
$this->makeLink($page)
);
}
}
return $pages;
}
protected function lastRowOnPage($page)
{
$perPage = $this->getItemsPerPage();
$total = $this->getTotalItemCount();
$last = $page * $perPage;
if ($last > $total) {
$last = $total;
}
return $last;
}
protected function firstRowOnPage($page)
{
return ($page - 1) * $this->getItemsPerPage() + 1;
}
protected function makeLink($page)
{
return Link::create(
$page,
$this->makeUrl($page),
null,
['title' => $this->getLabel($page)]
);
}
protected function makeUrl($page)
{
if ($page) {
return $this->getUrl()->with('page', $page);
} else {
return $this->getUrl();
}
}
protected function srOnly($content)
{
return Html::tag('span', ['class' => 'sr-only'], $content);
}
protected function renderDisabled($content)
{
return Html::tag('li', [
'class' => ['nav-item', 'disabled'],
'aria-hidden' => 'true'
], $content);
}
protected function renderList()
{
return Html::tag(
'ul',
['class' => ['nav', 'tab-nav']],
[
$this->hasPrevious() ? $this->renderPrevious() : $this->renderNoPrevious(),
$this->renderInnerPages(),
$this->hasNext() ? $this->renderNext() : $this->renderNoNext()
]
);
}
public function assemble()
{
$this->add([
$this->renderScreenReaderHeader(),
$this->renderList()
]);
}
protected function renderScreenReaderHeader()
{
return Html::tag('h2', [
// 'id' => $this->protectId('pagination') -> why?
'class' => 'sr-only',
'tab-index' => '-1'
], $this->translate('Pagination'));
}
public function render()
{
if ($this->getPageCount() < 2) {
return '';
} else {
return parent::render();
}
}
}
|