![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/bootstrap-vue/src/components/table/helpers/ |
import { Vue } from '../../../vue' import { PROP_TYPE_NUMBER_STRING } from '../../../constants/props' import { mathMax } from '../../../utils/math' import { toInteger } from '../../../utils/number' import { makeProp } from '../../../utils/props' // --- Props --- export const props = { currentPage: makeProp(PROP_TYPE_NUMBER_STRING, 1), perPage: makeProp(PROP_TYPE_NUMBER_STRING, 0) } // --- Mixin --- // @vue/component export const paginationMixin = Vue.extend({ props, computed: { localPaging() { return this.hasProvider ? !!this.noProviderPaging : true }, paginatedItems() { let items = this.sortedItems || this.filteredItems || this.localItems || [] const currentPage = mathMax(toInteger(this.currentPage, 1), 1) const perPage = mathMax(toInteger(this.perPage, 0), 0) // Apply local pagination if (this.localPaging && perPage) { // Grab the current page of data (which may be past filtered items limit) items = items.slice((currentPage - 1) * perPage, currentPage * perPage) } // Return the items to display in the table return items } } })