WIP Сделала пагинацию
This commit is contained in:
138
src/pages/clients/components/ClientTablePagination.vue
Normal file
138
src/pages/clients/components/ClientTablePagination.vue
Normal file
@@ -0,0 +1,138 @@
|
||||
<template lang="pug">
|
||||
.flex.items-center.gap-2.text-base.w-full.justify-center
|
||||
button.item.default-theme.flex.items-center.justify-center.pr-1(
|
||||
@click="previousHandler",
|
||||
:disabled="disabledPreviousButton"
|
||||
)
|
||||
.icon-down-arrow.arrow-left
|
||||
button.item.flex.items-center.justify-center(
|
||||
v-for="page in pageCount",
|
||||
:key="page",
|
||||
:id="page",
|
||||
:class="currentPageStyle(page)",
|
||||
:disabled="disabledMissingPages(page)"
|
||||
@click="changeCurrentPage"
|
||||
) {{ page }}
|
||||
button.item.default-theme.flex.items-center.justify-center.pl-1(
|
||||
@click="nextHandler",
|
||||
:disabled="disabledNextButton"
|
||||
)
|
||||
.icon-down-arrow.arrow-right
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "ClientTablePagination",
|
||||
props: {
|
||||
length: Number,
|
||||
currentPage: Number,
|
||||
totalVisible: {
|
||||
type: Number,
|
||||
default: 7,
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
pageCount() {
|
||||
let countArray = [],
|
||||
incompleteCountArray = [];
|
||||
for (let i = 1; i <= this.length; i++) {
|
||||
countArray.push(i);
|
||||
}
|
||||
if (this.length <= this.totalVisible) return countArray;
|
||||
if (
|
||||
this.currentPage <= 2 ||
|
||||
this.currentPage >= countArray[this.length - 2]
|
||||
) {
|
||||
countArray.forEach((elem, index, arr) => {
|
||||
if (index <= 2 || index >= arr.length - 3)
|
||||
incompleteCountArray.push(elem);
|
||||
else if (!incompleteCountArray.includes("..."))
|
||||
incompleteCountArray.push("...");
|
||||
});
|
||||
return incompleteCountArray;
|
||||
}
|
||||
if (this.currentPage <= 4) {
|
||||
countArray.forEach((elem, index, arr) => {
|
||||
if (index <= 4 || index === arr.length - 1)
|
||||
incompleteCountArray.push(elem);
|
||||
else if (!incompleteCountArray.includes("..."))
|
||||
incompleteCountArray.push("...");
|
||||
});
|
||||
return incompleteCountArray;
|
||||
}
|
||||
if (this.currentPage >= countArray[this.length - 4]) {
|
||||
countArray.forEach((elem, index, arr) => {
|
||||
if (index === 0 || index >= arr.length - 5)
|
||||
incompleteCountArray.push(elem);
|
||||
else if (!incompleteCountArray.includes("..."))
|
||||
incompleteCountArray.push("...");
|
||||
});
|
||||
return incompleteCountArray;
|
||||
}
|
||||
countArray.forEach((elem, index, arr) => {
|
||||
if (index === 0) incompleteCountArray.push(elem, "...");
|
||||
if (index >= this.currentPage - 2 && index <= this.currentPage)
|
||||
incompleteCountArray.push(elem);
|
||||
if (index === arr.length - 1) incompleteCountArray.push("...", elem);
|
||||
});
|
||||
return incompleteCountArray;
|
||||
},
|
||||
disabledNextButton() {
|
||||
return this.currentPage === this.length;
|
||||
},
|
||||
disabledPreviousButton() {
|
||||
return this.currentPage === 1;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
currentPageStyle(number) {
|
||||
if (number === this.currentPage)
|
||||
return {
|
||||
"active-theme": true,
|
||||
};
|
||||
return {
|
||||
"default-theme": true,
|
||||
};
|
||||
},
|
||||
previousHandler() {
|
||||
if (this.currentPage !== 1) this.$emit("previous-page");
|
||||
},
|
||||
nextHandler() {
|
||||
if (this.currentPage !== this.length) this.$emit("next-page");
|
||||
},
|
||||
changeCurrentPage(e) {
|
||||
this.$emit("set-current-page", parseInt(e.target.id));
|
||||
},
|
||||
disabledMissingPages(page) {
|
||||
return isNaN(parseInt(page));
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
.item
|
||||
width: 32px
|
||||
height: 32px
|
||||
border-radius: 4px
|
||||
&:disabled
|
||||
opacity: 0.5
|
||||
|
||||
.default-theme
|
||||
background-color: var(--default-white)
|
||||
color: var(--font-black-color)
|
||||
box-shadow: var(--pagination-item-shadow)
|
||||
|
||||
.active-theme
|
||||
background-color: var(--btn-blue-color)
|
||||
color: var(--default-white)
|
||||
box-shadow: var(--pagination-current-item-shadow)
|
||||
|
||||
.arrow-left
|
||||
transform: rotate(90deg)
|
||||
color: var(--font-grey-color)
|
||||
|
||||
.arrow-right
|
||||
transform: rotate(270deg)
|
||||
color: var(--font-grey-color)
|
||||
</style>
|
||||
Reference in New Issue
Block a user