generated from wayofdev/laravel-package-tpl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCyclePaginator.php
83 lines (66 loc) · 2.14 KB
/
CyclePaginator.php
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
<?php
declare(strict_types=1);
namespace WayOfDev\Paginator;
use Illuminate\Contracts\Pagination\LengthAwarePaginator as LengthAwarePaginatorContract;
use Illuminate\Pagination\AbstractPaginator;
use Illuminate\Support\Collection;
use Illuminate\Support\LazyCollection;
use Spiral\Pagination\Paginator as SpiralPaginator;
use Symfony\Component\WebLink\GenericLinkProvider;
use Symfony\Component\WebLink\HttpHeaderSerializer;
use WayOfDev\Paginator\Concerns\NotRenders;
use WayOfDev\Paginator\Concerns\WithHeaders;
use function array_values;
final class CyclePaginator extends AbstractPaginator implements LengthAwarePaginatorContract
{
use WithHeaders;
use NotRenders;
protected LazyCollection $results;
protected SpiralPaginator $paginator;
public function __construct(SpiralPaginator $paginator, Collection $items, string $pageName = 'page')
{
$this->paginator = $paginator;
$this->perPage = $paginator->getLimit();
$this->currentPage = $paginator->getPage();
$this->pageName = $pageName;
$this->items = $items;
}
public function total(): int
{
return $this->paginator->count();
}
public function lastPage(): int
{
return $this->paginator->countPages();
}
public function nextPageUrl(): ?string
{
if ($this->hasMorePages()) {
return $this->url($this->currentPage() + 1);
}
return null;
}
public function hasMorePages(): bool
{
return $this->currentPage() < $this->lastPage();
}
public function toArray(): array
{
return array_values($this->items->toArray());
}
public function headers(): array
{
$linkProvider = $this->headerLinks(new GenericLinkProvider());
return [
'Link' => (new HttpHeaderSerializer())->serialize($linkProvider->getLinks()),
'X-Page' => $this->currentPage(),
'X-Per-Page' => $this->perPage(),
'X-Total-Count' => $this->total(),
'X-Count' => $this->currentCount(),
];
}
private function currentCount(): int
{
return $this->items->count();
}
}