summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Control/PaginationControl.php
blob: 00f5c207194d39d8c242592b8ebbb8c5b071288c (plain)
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<?php

namespace ipl\Web\Control;

use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
use ipl\Stdlib\Contract\Paginatable;
use ipl\Web\Compat\CompatForm;
use ipl\Web\Url;
use ipl\Web\Widget\Icon;

/**
 * The pagination control displays a list of links that point to different pages of the current view
 *
 * The default HTML markup (tag and attributes) for the paginator look like the following:
 * <div class="pagination-control" role="navigation">...</div>
 */
class PaginationControl extends BaseHtmlElement
{
    /** @var int Default maximum number of items which should be shown per page */
    protected $defaultPageSize;

    /** @var string Name of the URL parameter which stores the current page number */
    protected $pageParam = 'page';

    /** @var string Name of the URL parameter which holds the page size. If given, overrides {@link $defaultPageSize} */
    protected $pageSizeParam = 'limit';

    /** @var string */
    protected $pageSpacer = '…';

    /** @var Paginatable The pagination adapter which handles the underlying data source */
    protected $paginatable;

    /** @var Url The URL to base off pagination URLs */
    protected $url;

    /** @var int Cache for the total number of items */
    private $totalCount;

    protected $tag = 'div';

    protected $defaultAttributes = [
        'class' => 'pagination-control',
        'role'  => 'navigation'
    ];

    /**
     * Create a pagination control
     *
     * @param Paginatable $paginatable The paginatable
     * @param Url         $url         The URL to base off paging URLs
     */
    public function __construct(Paginatable $paginatable, Url $url)
    {
        $this->paginatable = $paginatable;
        $this->url = $url;
    }

    /**
     * Set the URL to base off paging URLs
     *
     * @param Url $url
     *
     * @return $this
     */
    public function setUrl(Url $url)
    {
        $this->url = $url;

        return $this;
    }

    /**
     * Get the default page size
     *
     * @return int
     */
    public function getDefaultPageSize()
    {
        return $this->defaultPageSize ?: LimitControl::DEFAULT_LIMIT;
    }

    /**
     * Set the default page size
     *
     * @param int $defaultPageSize
     *
     * @return $this
     */
    public function setDefaultPageSize($defaultPageSize)
    {
        $this->defaultPageSize = $defaultPageSize;

        return $this;
    }

    /**
     * Get the name of the URL parameter which stores the current page number
     *
     * @return string
     */
    public function getPageParam()
    {
        return $this->pageParam;
    }

    /**
     * Set the name of the URL parameter which stores the current page number
     *
     * @param string $pageParam
     *
     * @return $this
     */
    public function setPageParam($pageParam)
    {
        $this->pageParam = $pageParam;

        return $this;
    }

    /**
     * Get the name of the URL parameter which stores the page size
     *
     * @return string
     */
    public function getPageSizeParam()
    {
        return $this->pageSizeParam;
    }
    /**
     * Set the name of the URL parameter which stores the page size
     *
     * @param string $pageSizeParam
     *
     * @return $this
     */
    public function setPageSizeParam($pageSizeParam)
    {
        $this->pageSizeParam = $pageSizeParam;

        return $this;
    }

    /**
     * Get the total number of items
     *
     * @return int
     */
    public function getTotalCount()
    {
        if ($this->totalCount === null) {
            $this->totalCount = $this->paginatable->count();
        }

        return $this->totalCount;
    }

    /**
     * Get the current page number
     *
     * @return int
     */
    public function getCurrentPageNumber()
    {
        return (int) $this->url->getParam($this->pageParam, 1);
    }

    /**
     * Get the configured page size
     *
     * @return int
     */
    public function getPageSize()
    {
        return (int) $this->url->getParam($this->pageSizeParam, $this->getDefaultPageSize());
    }

    /**
     * Get the total page count
     *
     * @return int
     */
    public function getPageCount()
    {
        $pageSize = $this->getPageSize();

        if ($pageSize === 0) {
            return 0;
        }

        if ($pageSize < 0) {
            return 1;
        }

        return (int) ceil($this->getTotalCount() / $pageSize);
    }

    /**
     * Get the limit
     *
     * Use this method to set the LIMIT part of a query for fetching the current page.
     *
     * @return int If the page size is infinite, -1 will be returned
     */
    public function getLimit()
    {
        $pageSize = $this->getPageSize();

        return $pageSize < 0 ? -1 : $pageSize;
    }

    /**
     * Get the offset
     *
     * Use this method to set the OFFSET part of a query for fetching the current page.
     *
     * @return int
     */
    public function getOffset()
    {
        $currentPageNumber = $this->getCurrentPageNumber();
        $pageSize = $this->getPageSize();

        return $currentPageNumber <= 1 ? 0 : ($currentPageNumber - 1) * $pageSize;
    }

    /**
     * Apply limit and offset on the paginatable
     *
     * @return $this
     */
    public function apply()
    {
        $this->paginatable->limit($this->getLimit());
        $this->paginatable->offset($this->getOffset());

        return $this;
    }

    /**
     * Create a URL for paging from the given page number
     *
     * @param int $pageNumber The page number
     * @param int $pageSize   The number of items per page. If you want to stick to the defaults,
     *                        don't set this parameter
     *
     * @return Url
     */
    public function createUrl($pageNumber, $pageSize = null)
    {
        $params = [$this->getPageParam() => $pageNumber];

        if ($pageSize !== null) {
            $params[$this->getPageSizeParam()] = $pageSize;
        }

        return $this->url->with($params);
    }

    /**
     * Get the first item number of the given page
     *
     * @param int $pageNumber
     *
     * @return int
     */
    protected function getFirstItemNumberOfPage($pageNumber)
    {
        return ($pageNumber - 1) * $this->getPageSize() + 1;
    }

    /**
     * Get the last item number of the given page
     *
     * @param int $pageNumber
     *
     * @return int
     */
    protected function getLastItemNumberOfPage($pageNumber)
    {
        return min($pageNumber * $this->getPageSize(), $this->getTotalCount());
    }

    /**
     * Create the label for the given page number
     *
     * @param int $pageNumber
     *
     * @return string
     */
    protected function createLabel($pageNumber)
    {
        return sprintf(
            $this->translate('Show items %u to %u of %u'),
            $this->getFirstItemNumberOfPage($pageNumber),
            $this->getLastItemNumberOfPage($pageNumber),
            $this->getTotalCount()
        );
    }

    /**
     * Create and return the previous page item
     *
     * @return BaseHtmlElement
     */
    protected function createPreviousPageItem()
    {
        $prevIcon = new Icon('angle-left');

        $currentPageNumber = $this->getCurrentPageNumber();

        if ($currentPageNumber > 1) {
            $prevItem = Html::tag('li', ['class' => 'nav-item']);

            $prevItem->add(Html::tag(
                'a',
                [
                    'class' => 'previous-page',
                    'href'  => $this->createUrl($currentPageNumber - 1),
                    'title' => $this->createLabel($currentPageNumber - 1)
                ],
                $prevIcon
            ));
        } else {
            $prevItem = Html::tag(
                'li',
                [
                    'aria-hidden' => true,
                    'class'       => 'nav-item disabled'
                ]
            );

            $prevItem->add(Html::tag('span', ['class' => 'previous-page'], $prevIcon));
        }

        return $prevItem;
    }

    /**
     * Create and return the next page item
     *
     * @return BaseHtmlElement
     */
    protected function createNextPageItem()
    {
        $nextIcon = new Icon('angle-right');

        $currentPageNumber = $this->getCurrentPageNumber();

        if ($currentPageNumber < $this->getPageCount()) {
            $nextItem = Html::tag('li', ['class' => 'nav-item']);

            $nextItem->add(Html::tag(
                'a',
                [
                    'class' => 'next-page',
                    'href'  => $this->createUrl($currentPageNumber + 1),
                    'title' => $this->createLabel($currentPageNumber + 1)
                ],
                $nextIcon
            ));
        } else {
            $nextItem = Html::tag(
                'li',
                [
                    'aria-hidden' => true,
                    'class'       => 'nav-item disabled'
                ]
            );

            $nextItem->add(Html::tag('span', ['class' => 'next-page'], $nextIcon));
        }

        return $nextItem;
    }

    /** @TODO(el): Use ipl-translation when it's ready instead */
    private function translate($message)
    {
        return $message;
    }

    /**
     * Create and return the first page item
     *
     * @return BaseHtmlElement
     */
    protected function createFirstPageItem()
    {
        $currentPageNumber = $this->getCurrentPageNumber();

        $url = clone $this->url;

        $firstItem = Html::tag('li', ['class' => 'nav-item']);

        if ($currentPageNumber === 1) {
            $firstItem->addAttributes(['class' => 'disabled']);
            $firstItem->add(Html::tag(
                'span',
                ['class' => 'first-page'],
                $this->getFirstItemNumberOfPage(1)
            ));
        } else {
            $firstItem->add(Html::tag(
                'a',
                [
                    'class' => 'first-page',
                    'href' => $url->remove(['page'])->getAbsoluteUrl(),
                    'title' => $this->createLabel(1)
                ],
                $this->getFirstItemNumberOfPage(1)
            ));
        }

        return $firstItem;
    }

    /**
     * Create and return the last page item
     *
     * @return BaseHtmlElement
     */
    protected function createLastPageItem()
    {
        $currentPageNumber = $this->getCurrentPageNumber();
        $lastItem = Html::tag('li', ['class' => 'nav-item']);

        if ($currentPageNumber === $this->getPageCount()) {
            $lastItem->addAttributes(['class' => 'disabled']);
            $lastItem->add(Html::tag(
                'span',
                ['class' => 'last-page'],
                $this->getPageCount()
            ));
        } else {
            $lastItem->add(Html::tag(
                'a',
                [
                    'class' => 'last-page',
                    'href' => $this->url->setParam('page', $this->getPageCount()),
                    'title' => $this->createLabel($this->getPageCount())
                ],
                $this->getPageCount()
            ));
        }

        return $lastItem;
    }

    /**
     * Create and return the page selector item
     *
     * @return BaseHtmlElement
     */
    protected function createPageSelectorItem()
    {
        $currentPageNumber = $this->getCurrentPageNumber();

        $form = new CompatForm($this->url);
        $form->addAttributes(['class' => 'inline']);
        $form->setMethod('GET');

        $select = Html::tag('select', [
            'name' => $this->getPageParam(),
            'class' => 'autosubmit',
            'title' => t('Go to page …')
        ]);

        if (isset($currentPageNumber)) {
            if ($currentPageNumber === 1 || $currentPageNumber === $this->getPageCount()) {
                $select->add(Html::tag('option', ['disabled' => '', 'selected' => ''], '…'));
            }
        }

        foreach (range(2, $this->getPageCount() - 1) as $page) {
            $option = Html::tag('option', [
                'value' => $page
            ], $page);

            if ($page == $currentPageNumber) {
                $option->addAttributes(['selected' => '']);
            }

            $select->add($option);
        }

        $form->add($select);

        $pageSelectorItem = Html::tag('li', $form);

        return $pageSelectorItem;
    }

    protected function assemble()
    {
        if ($this->getPageCount() < 2) {
            return;
        }

        // Accessibility info
        $this->add(Html::tag(
            'h2',
            [
                'class'    => 'sr-only',
                'tabindex' => '-1'
            ],
            $this->translate('Pagination')
        ));

        $paginator = Html::tag('ul', ['class' => 'tab-nav nav']);

        $paginator->add([
            $this->createFirstPageItem(),
            $this->createPreviousPageItem(),
            $this->createPageSelectorItem(),
            $this->createNextPageItem(),
            $this->createLastPageItem()
        ]);

        $this->add($paginator);
    }
}