tethys.backend/resources/js/Components/Admin/Pagination.vue

209 lines
9.2 KiB
Vue
Raw Normal View History

2023-03-03 15:54:28 +00:00
<script setup>
import { Link } from '@inertiajs/vue3';
import { stardust } from '@eidellev/adonis-stardust/client';
import { computed } from 'vue';
const props = defineProps({
data: {
type: Object,
default: () => ({}),
},
});
2024-03-14 19:25:27 +00:00
// meta:
// {total: 19, perPage: 5, currentPage: 1, lastPage: 4, firstPage: 1, …}
// currentPage:
// 1
// firstPage:
// 1
// firstPageUrl:
// '/?page=1'
// lastPage:
// 4
// lastPageUrl:
// '/?page=4'
// nextPageUrl:
// '/?page=2'
// perPage:
// 5
// previousPageUrl:
// null
// total:
// 19
2023-03-03 15:54:28 +00:00
const nextPageLink = computed(() => {
let url = new URL(document.location);
2024-03-14 19:25:27 +00:00
url.searchParams.set('page', props.data.currentPage + 1);
2023-03-03 15:54:28 +00:00
return url.href;
2024-03-14 19:25:27 +00:00
// return url + '&page=' + (Number(props.data.currentPage) + 1);
2023-03-03 15:54:28 +00:00
});
const prevPageLink = computed(() => {
let url = new URL(document.location);
2024-03-14 19:25:27 +00:00
url.searchParams.set('page', props.data.currentPage - 1);
2023-03-03 15:54:28 +00:00
return url.href;
2024-03-14 19:25:27 +00:00
// return url + '&page=' + (props.data.currentPage - 1);
2023-03-03 15:54:28 +00:00
});
const toPage = computed(() => {
2024-03-14 19:25:27 +00:00
let currentPage = props.data.currentPage;
let perPage = props.data.perPage;
2023-03-03 15:54:28 +00:00
2024-03-14 19:25:27 +00:00
if (props.data.currentPage == props.data.lastPage) {
2023-03-03 15:54:28 +00:00
return props.data.total;
} else {
return currentPage * perPage;
}
});
const fromPage = computed(() => {
2024-03-14 19:25:27 +00:00
let currentPage = props.data.currentPage;
let perPage = props.data.perPage;
2023-03-03 15:54:28 +00:00
return currentPage * perPage - (perPage - 1);
});
</script>
2024-03-14 19:25:27 +00:00
<!-- currentPage:
2023-03-03 15:54:28 +00:00
1
2024-03-14 19:25:27 +00:00
firstPage:
2023-03-03 15:54:28 +00:00
1
2024-03-14 19:25:27 +00:00
firstPageUrl:
2023-03-03 15:54:28 +00:00
'/?page=1'
2024-03-14 19:25:27 +00:00
lastPage:
2023-03-03 15:54:28 +00:00
3
2024-03-14 19:25:27 +00:00
lastPageUrl:
2023-03-03 15:54:28 +00:00
'/?page=3'
2024-03-14 19:25:27 +00:00
nextPageUrl:
2023-03-03 15:54:28 +00:00
'/?page=2'
2024-03-14 19:25:27 +00:00
perPage:
2023-03-03 15:54:28 +00:00
5
2024-03-14 19:25:27 +00:00
previousPageUrl:
2023-03-03 15:54:28 +00:00
null
total:
15 -->
<template>
<!-- <nav v-if="data.links.length > 3" -->
<nav v-if="data.total > 3" role="navigation" aria-label="Pagination Navigation" class="flex items-center justify-between">
2023-03-03 15:54:28 +00:00
<div class="flex justify-between flex-1 sm:hidden">
<span
2024-03-14 19:25:27 +00:00
v-if="data.currentPage <= 1"
class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"
>
2023-03-03 15:54:28 +00:00
Previous
</span>
<Link
v-else
2024-03-14 19:25:27 +00:00
:href="data.previousPageUrl"
class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"
>
Previous
2023-03-03 15:54:28 +00:00
</Link>
<Link
2024-03-14 19:25:27 +00:00
v-if="data.currentPage < data.lastPage"
:href="data.nextPageUrl"
class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"
>
Next
2023-03-03 15:54:28 +00:00
</Link>
<span
v-else
class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"
>
2023-03-03 15:54:28 +00:00
Next
</span>
</div>
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
<div>
<p class="text-sm text-gray-700 leading-5">
Showing
<span class="font-medium">{{ fromPage }}</span>
to
<span class="font-medium">{{ toPage }}</span>
of
<span class="font-medium">{{ data.total }}</span>
results
</p>
</div>
<div>
<span class="relative z-0 inline-flex shadow-sm rounded-md">
2024-03-14 19:25:27 +00:00
<span v-if="props.data.currentPage <= 1" aria-disabled="true" aria-label="Previous">
2023-03-03 15:54:28 +00:00
<span
class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-l-md leading-5"
aria-hidden="true"
>
2023-03-03 15:54:28 +00:00
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
fill-rule="evenodd"
2023-03-03 15:54:28 +00:00
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
clip-rule="evenodd"
/>
2023-03-03 15:54:28 +00:00
</svg>
</span>
</span>
2024-03-14 19:25:27 +00:00
<!-- <Link v-else :href="data.previousPageUrl" rel="prev" -->
<Link
v-else
:href="prevPageLink"
rel="prev"
2023-03-03 15:54:28 +00:00
class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-l-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150"
aria-label="Previous"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
fill-rule="evenodd"
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
clip-rule="evenodd"
/>
</svg>
2023-03-03 15:54:28 +00:00
</Link>
<!-- <template v-for="(link, key) in data.links">
2024-03-14 19:25:27 +00:00
<template v-if="key > 0 && key < data.lastPage + 1">
2023-03-03 15:54:28 +00:00
<span v-if="!link.active && link.url === null" :key="key" aria-disabled="true">
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 cursor-default leading-5">{{ link.label }}</span>
</span>
<span v-else-if="link.active" :key="`current-${key}`" aria-current="page">
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5">{{ link.label }}</span>
</span>
<Link v-else :key="`link-${key}`" :href="link.url" v-html="link.label" class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-500 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150" aria-label="`Go to page ${link.label}`" />
</template>
</template> -->
<Link
2024-03-14 19:25:27 +00:00
v-if="props.data.currentPage < props.data.lastPage"
:href="nextPageLink"
rel="next"
2023-03-03 15:54:28 +00:00
class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-r-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150"
aria-label="Next"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
2023-03-03 15:54:28 +00:00
</Link>
<!-- else disabled link -->
<span v-else aria-disabled="true" aria-label="Next">
<span
class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-r-md leading-5"
aria-hidden="true"
>
2023-03-03 15:54:28 +00:00
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
fill-rule="evenodd"
2023-03-03 15:54:28 +00:00
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
2023-03-03 15:54:28 +00:00
</svg>
</span>
</span>
</span>
</div>
</div>
</nav>
</template>