Created
August 11, 2021 15:56
-
-
Save mishajib/5a4f2c020d8d68ca1647ae9468381626 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<template> | |
<nav aria-label="..."> | |
<ul class="pagination justify-content-center"> | |
<li style="cursor: pointer;" class="page-item" :class="{ disabled: pagination.current_page <= 1 }"> | |
<a class="page-link" @click.prevent="changePage(1)" >First page</a> | |
</li> | |
<li style="cursor: pointer;" class="page-item" :class="{ disabled: pagination.current_page <= 1 }"> | |
<a class="page-link" @click.prevent="changePage(pagination.current_page - 1)">Previous</a> | |
</li> | |
<li style="cursor: pointer;" class="page-item" v-for="page in pages" :key="page" :class="isCurrentPage(page) ? 'active' : ''"> | |
<a class="page-link" @click.prevent="changePage(page)">{{ page }} | |
<span v-if="isCurrentPage(page)" class="sr-only">(current)</span> | |
</a> | |
</li> | |
<li style="cursor: pointer;" class="page-item" :class="{ disabled: pagination.current_page >= pagination.last_page }"> | |
<a class="page-link" @click.prevent="changePage(pagination.current_page + 1)">Next</a> | |
</li> | |
<li style="cursor: pointer;" class="page-item" :class="{ disabled: pagination.current_page >= pagination.last_page }"> | |
<a class="page-link" @click.prevent="changePage(pagination.last_page)">Last page</a> | |
</li> | |
</ul> | |
</nav> | |
</template> | |
<script> | |
export default { | |
props:['pagination', 'offset'], | |
methods: { | |
isCurrentPage(page){ | |
return this.pagination.current_page === page | |
}, | |
changePage(page) { | |
if (page > this.pagination.last_page) { | |
page = this.pagination.last_page; | |
} | |
this.pagination.current_page = page; | |
this.$emit('paginate'); | |
} | |
}, | |
computed: { | |
pages() { | |
let pages = [] | |
let from = this.pagination.current_page - Math.floor(this.offset / 2) | |
if (from < 1) { | |
from = 1 | |
} | |
let to = from + this.offset -1 | |
if (to > this.pagination.last_page) { | |
to = this.pagination.last_page | |
} | |
while (from <= to) { | |
pages.push(from) | |
from++ | |
} | |
return pages | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment