-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updated pagination logic and added loading screen while fetchin…
…g results. fixes #220
- Loading branch information
Showing
10 changed files
with
371 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
@php | ||
if (! isset($scrollTo)) { | ||
$scrollTo = 'body'; | ||
} | ||
$scrollIntoViewJsSnippet = ($scrollTo !== false) | ||
? <<<JS | ||
(\$el.closest('{$scrollTo}') || document.querySelector('{$scrollTo}')).scrollIntoView() | ||
JS | ||
: ''; | ||
@endphp | ||
<div> | ||
@if ($paginator->hasPages()) | ||
<nav class="d-flex justify-items-center justify-content-between"> | ||
<div class="d-flex justify-content-between flex-fill d-sm-none"> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">@lang('pagination.previous')</span> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<button type="button" dusk="previousPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="previousPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.previous')</button> | ||
</li> | ||
@endif | ||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<li class="page-item"> | ||
<button type="button" dusk="nextPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="nextPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.next')</button> | ||
</li> | ||
@else | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link" aria-hidden="true">@lang('pagination.next')</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</div> | ||
<div class="d-none flex-sm-fill d-sm-flex align-items-sm-center justify-content-sm-between"> | ||
<div> | ||
<p class="small text-muted"> | ||
{!! __('Showing') !!} | ||
<span class="fw-semibold">{{ $paginator->firstItem() }}</span> | ||
{!! __('to') !!} | ||
<span class="fw-semibold">{{ $paginator->lastItem() }}</span> | ||
{!! __('of') !!} | ||
<span class="fw-semibold">{{ $paginator->total() }}</span> | ||
{!! __('results') !!} | ||
</p> | ||
</div> | ||
<div> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> | ||
<span class="page-link" aria-hidden="true">‹</span> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<button type="button" dusk="previousPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="previousPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled" aria-label="@lang('pagination.previous')">‹</button> | ||
</li> | ||
@endif | ||
{{-- Pagination Elements --}} | ||
@foreach ($elements as $element) | ||
{{-- "Three Dots" Separator --}} | ||
@if (is_string($element)) | ||
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li> | ||
@endif | ||
{{-- Array Of Links --}} | ||
@if (is_array($element)) | ||
@foreach ($element as $page => $url) | ||
@if ($page == $paginator->currentPage()) | ||
<li class="page-item active" wire:key="paginator-{{ $paginator->getPageName() }}-page-{{ $page }}" aria-current="page"><span class="page-link">{{ $page }}</span></li> | ||
@else | ||
<li class="page-item" wire:key="paginator-{{ $paginator->getPageName() }}-page-{{ $page }}"><button type="button" class="page-link" wire:click="gotoPage({{ $page }}, '{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}">{{ $page }}</button></li> | ||
@endif | ||
@endforeach | ||
@endif | ||
@endforeach | ||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<li class="page-item"> | ||
<button type="button" dusk="nextPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="nextPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled" aria-label="@lang('pagination.next')">›</button> | ||
</li> | ||
@else | ||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> | ||
<span class="page-link" aria-hidden="true">›</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
@endif | ||
</div> |
53 changes: 53 additions & 0 deletions
53
resources/views/vendor/livewire/simple-bootstrap.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
@php | ||
if (! isset($scrollTo)) { | ||
$scrollTo = 'body'; | ||
} | ||
$scrollIntoViewJsSnippet = ($scrollTo !== false) | ||
? <<<JS | ||
(\$el.closest('{$scrollTo}') || document.querySelector('{$scrollTo}')).scrollIntoView() | ||
JS | ||
: ''; | ||
@endphp | ||
<div> | ||
@if ($paginator->hasPages()) | ||
<nav> | ||
<ul class="pagination"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">@lang('pagination.previous')</span> | ||
</li> | ||
@else | ||
@if(method_exists($paginator,'getCursorName')) | ||
<li class="page-item"> | ||
<button dusk="previousPage" type="button" class="page-link" wire:key="cursor-{{ $paginator->getCursorName() }}-{{ $paginator->previousCursor()->encode() }}" wire:click="setPage('{{$paginator->previousCursor()->encode()}}','{{ $paginator->getCursorName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.previous')</button> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<button type="button" dusk="previousPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="previousPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.previous')</button> | ||
</li> | ||
@endif | ||
@endif | ||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
@if(method_exists($paginator,'getCursorName')) | ||
<li class="page-item"> | ||
<button dusk="nextPage" type="button" class="page-link" wire:key="cursor-{{ $paginator->getCursorName() }}-{{ $paginator->nextCursor()->encode() }}" wire:click="setPage('{{$paginator->nextCursor()->encode()}}','{{ $paginator->getCursorName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.next')</button> | ||
</li> | ||
@else | ||
<li class="page-item"> | ||
<button type="button" dusk="nextPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="nextPage('{{ $paginator->getPageName() }}')" x-on:click="{{ $scrollIntoViewJsSnippet }}" wire:loading.attr="disabled">@lang('pagination.next')</button> | ||
</li> | ||
@endif | ||
@else | ||
<li class="page-item disabled" aria-disabled="true"> | ||
<span class="page-link">@lang('pagination.next')</span> | ||
</li> | ||
@endif | ||
</ul> | ||
</nav> | ||
@endif | ||
</div> |
Oops, something went wrong.