Files
online.tbbank.gov.tm-larave…/nova/resources/js/components/Pagination/PaginationLinks.vue
2024-09-01 18:54:23 +05:00

182 lines
4.3 KiB
Vue

<template>
<nav class="rounded-b-lg font-bold flex items-center">
<div class="flex text-sm">
<!-- First Link -->
<button
:disabled="!hasPreviousPages || linksDisabled"
class="border-r border-gray-200 dark:border-gray-700 text-xl h-9 min-w-9 px-2 rounded-bl-lg focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700"
:class="{
'text-gray-500': hasPreviousPages,
'text-gray-500': !hasPreviousPages || linksDisabled,
}"
rel="first"
@click.prevent="selectPage(1)"
dusk="first"
>
&laquo;
</button>
<!-- Previous Link -->
<button
:disabled="!hasPreviousPages || linksDisabled"
class="border-r border-gray-200 dark:border-gray-700 text-xl h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700"
:class="{
'text-gray-500': hasPreviousPages,
'text-gray-500': !hasPreviousPages || linksDisabled,
}"
rel="prev"
@click.prevent="selectPreviousPage()"
dusk="previous"
>
&lsaquo;
</button>
<!-- Pages Links -->
<button
:disabled="linksDisabled"
v-for="n in printPages"
:key="n"
class="border-r border-gray-200 dark:border-gray-700 h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700"
:class="{
'text-gray-500': page !== n,
'text-gray-500 bg-gray-50 dark:bg-gray-700': page === n,
}"
@click.prevent="selectPage(n)"
:dusk="`page:${n}`"
>
{{ n }}
</button>
<!-- Next Link -->
<button
:disabled="!hasMorePages || linksDisabled"
class="border-r border-gray-200 dark:border-gray-700 text-xl h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700"
:class="{
'text-gray-500': hasMorePages,
'text-gray-500': !hasMorePages || linksDisabled,
}"
rel="next"
@click.prevent="selectNextPage()"
dusk="next"
>
&rsaquo;
</button>
<!-- Last Link -->
<button
:disabled="!hasMorePages || linksDisabled"
class="border-r border-gray-200 dark:border-gray-700 text-xl h-9 min-w-9 px-2 focus:outline-none focus:bg-gray-50 hover:bg-gray-50 dark:hover:bg-gray-700"
:class="{
'text-gray-500': hasMorePages,
'text-gray-500': !hasMorePages || linksDisabled,
}"
rel="last"
@click.prevent="selectPage(pages)"
dusk="last"
>
&raquo;
</button>
</div>
<slot />
</nav>
</template>
<script>
export default {
emits: ['page'],
props: {
page: {
type: Number,
required: true,
},
pages: {
type: Number,
default: 0,
},
next: {
type: Boolean,
default: false,
},
previous: {
type: Boolean,
default: false,
},
},
data: () => ({ linksDisabled: false }),
mounted() {
Nova.$on('resources-loaded', this.listenToResourcesLoaded)
},
beforeUnmount() {
Nova.$off('resources-loaded', this.listenToResourcesLoaded)
},
methods: {
/**
* Select the page.
*/
selectPage(page) {
if (this.page != page) {
this.linksDisabled = true
this.$emit('page', page)
}
},
/**
* Select the previous page.
*/
selectPreviousPage() {
this.selectPage(this.page - 1)
},
/**
* Select the next page.
*/
selectNextPage() {
this.selectPage(this.page + 1)
},
listenToResourcesLoaded() {
this.linksDisabled = false
},
},
computed: {
/**
* Determine if prior pages are available.
*/
hasPreviousPages: function () {
return this.page > 1
},
/**
* Determine if more pages are available.
*/
hasMorePages: function () {
return this.page < this.pages
},
/**
* Get printable pages.
*/
printPages() {
const middlePage = Math.min(Math.max(3, this.page), this.pages - 2),
fromPage = Math.max(middlePage - 2, 1),
toPage = Math.min(middlePage + 2, this.pages)
let pages = []
for (let n = fromPage; n <= toPage; ++n) {
if (n > 0) pages.push(n)
}
return pages
},
},
}
</script>