123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Paginator;
- use Countable;
- use Hyperf\Collection\Collection;
- use Hyperf\Contract\Arrayable;
- use Hyperf\Contract\Jsonable;
- use Hyperf\Contract\LengthAwarePaginatorInterface;
- use IteratorAggregate;
- use JsonSerializable;
- use RuntimeException;
- class LengthAwarePaginator extends AbstractPaginator implements Arrayable, Countable, IteratorAggregate, JsonSerializable, Jsonable, LengthAwarePaginatorInterface
- {
- /**
- * The total number of items before slicing.
- */
- protected int $total;
- /**
- * The last available page.
- */
- protected int $lastPage;
- /**
- * Create a new paginator instance.
- *
- * @param array $options (path, query, fragment, pageName)
- */
- public function __construct(mixed $items, int $total, int $perPage, ?int $currentPage = 1, array $options = [])
- {
- $this->options = $options;
- foreach ($options as $key => $value) {
- $this->{$key} = $value;
- }
- $this->total = $total;
- $this->perPage = $perPage;
- $this->lastPage = max((int) ceil($total / $perPage), 1);
- $this->path = $this->path !== '/' ? rtrim($this->path, '/') : $this->path;
- $this->currentPage = $this->setCurrentPage($currentPage, $this->pageName);
- $this->items = $items instanceof Collection ? $items : Collection::make($items);
- }
- public function __toString(): string
- {
- return $this->toJson();
- }
- /**
- * Render the paginator using the given view.
- */
- public function links(?string $view = null, array $data = [])
- {
- return $this->render($view, $data);
- }
- /**
- * Render the paginator using the given view.
- */
- public function render(?string $view = null, array $data = []): string
- {
- if ($view) {
- throw new RuntimeException('WIP.');
- }
- return json_encode(array_merge($data, $this->items()), 0);
- }
- /**
- * Get the total number of items being paginated.
- */
- public function total(): int
- {
- return $this->total;
- }
- /**
- * Determine if there are more items in the data source.
- */
- public function hasMorePages(): bool
- {
- return $this->currentPage() < $this->lastPage();
- }
- /**
- * Get the URL for the next page.
- */
- public function nextPageUrl(): ?string
- {
- if ($this->lastPage() > $this->currentPage()) {
- return $this->url($this->currentPage() + 1);
- }
- return null;
- }
- /**
- * Get the last page.
- */
- public function lastPage(): int
- {
- return $this->lastPage;
- }
- /**
- * Get the instance as an array.
- */
- public function toArray(): array
- {
- return [
- 'current_page' => $this->currentPage(),
- 'data' => $this->items->toArray(),
- 'first_page_url' => $this->url(1),
- 'from' => $this->firstItem(),
- 'last_page' => $this->lastPage(),
- 'last_page_url' => $this->url($this->lastPage()),
- 'next_page_url' => $this->nextPageUrl(),
- 'path' => $this->path,
- 'per_page' => $this->perPage(),
- 'prev_page_url' => $this->previousPageUrl(),
- 'to' => $this->lastItem(),
- 'total' => $this->total(),
- ];
- }
- /**
- * Convert the object into something JSON serializable.
- */
- public function jsonSerialize(): mixed
- {
- return $this->toArray();
- }
- /**
- * Convert the object to its JSON representation.
- */
- public function toJson(int $options = 0): string
- {
- return json_encode($this->jsonSerialize(), $options);
- }
- /**
- * Get the current page for the request.
- */
- protected function setCurrentPage(?int $currentPage, string $pageName): int
- {
- $currentPage = $currentPage ?: static::resolveCurrentPage($pageName);
- return $this->isValidPageNumber($currentPage) ? $currentPage : 1;
- }
- /**
- * Get the array of elements to pass to the view.
- */
- protected function elements(): array
- {
- $window = UrlWindow::make($this);
- return array_filter([
- $window['first'],
- is_array($window['slider']) ? '...' : null,
- $window['slider'],
- is_array($window['last']) ? '...' : null,
- $window['last'],
- ]);
- }
- }
|