quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
213 lines (186 loc) • 6.21 kB
JavaScript
import QSelect from '../select/QSelect.js'
import QBtn from '../btn/QBtn.js'
import QIcon from '../icon/QIcon.js'
import cache from '../../utils/cache.js'
const staticClass = 'q-table__bottom row items-center'
export default {
props: {
hideBottom: Boolean,
hideSelectedBanner: Boolean,
hideNoData: Boolean,
hidePagination: Boolean
},
computed: {
navIcon () {
const ico = [
this.iconFirstPage || this.$q.iconSet.table.firstPage,
this.iconPrevPage || this.$q.iconSet.table.prevPage,
this.iconNextPage || this.$q.iconSet.table.nextPage,
this.iconLastPage || this.$q.iconSet.table.lastPage
]
return this.$q.lang.rtl === true ? ico.reverse() : ico
}
},
methods: {
__getBottomDiv (h) {
if (this.hideBottom === true) {
return
}
if (this.nothingToDisplay === true) {
if (this.hideNoData === true) {
return
}
const message = this.loading === true
? this.loadingLabel || this.$q.lang.table.loading
: (this.filter ? this.noResultsLabel || this.$q.lang.table.noResults : this.noDataLabel || this.$q.lang.table.noData)
const noData = this.$scopedSlots['no-data']
const children = noData !== void 0
? [ noData({ message, icon: this.$q.iconSet.table.warning, filter: this.filter }) ]
: [
h(QIcon, {
staticClass: 'q-table__bottom-nodata-icon',
props: { name: this.$q.iconSet.table.warning }
}),
message
]
return h('div', {
staticClass: staticClass + ' q-table__bottom--nodata'
}, children)
}
const bottom = this.$scopedSlots.bottom
if (bottom !== void 0) {
return h('div', { staticClass }, [ bottom(this.marginalsScope) ])
}
const child = this.hideSelectedBanner !== true && this.hasSelectionMode === true && this.rowsSelectedNumber > 0
? [
h('div', { staticClass: 'q-table__control' }, [
h('div', [
(this.selectedRowsLabel || this.$q.lang.table.selectedRecords)(this.rowsSelectedNumber)
])
])
]
: []
if (this.hidePagination !== true) {
return h('div', {
staticClass: staticClass + ' justify-end'
}, this.__getPaginationDiv(h, child))
}
if (child.length > 0) {
return h('div', { staticClass }, child)
}
},
__getPaginationDiv (h, child) {
let control
const
{ rowsPerPage } = this.computedPagination,
paginationLabel = this.paginationLabel || this.$q.lang.table.pagination,
paginationSlot = this.$scopedSlots.pagination,
hasOpts = this.rowsPerPageOptions.length > 1
child.push(
h('div', { staticClass: 'q-table__separator col' })
)
if (hasOpts === true) {
child.push(
h('div', { staticClass: 'q-table__control' }, [
h('span', { staticClass: 'q-table__bottom-item' }, [
this.rowsPerPageLabel || this.$q.lang.table.recordsPerPage
]),
h(QSelect, {
staticClass: 'q-table__select inline q-table__bottom-item',
props: {
color: this.color,
value: rowsPerPage,
options: this.computedRowsPerPageOptions,
displayValue: rowsPerPage === 0
? this.$q.lang.table.allRows
: rowsPerPage,
dark: this.isDark,
borderless: true,
dense: true,
optionsDense: true,
optionsCover: true
},
on: cache(this, 'pgSize', {
input: pag => {
this.setPagination({
page: 1,
rowsPerPage: pag.value
})
}
})
})
])
)
}
if (paginationSlot !== void 0) {
control = paginationSlot(this.marginalsScope)
}
else {
control = [
h('span', rowsPerPage !== 0 ? { staticClass: 'q-table__bottom-item' } : {}, [
rowsPerPage
? paginationLabel(this.firstRowIndex + 1, Math.min(this.lastRowIndex, this.computedRowsNumber), this.computedRowsNumber)
: paginationLabel(1, this.filteredSortedRowsNumber, this.computedRowsNumber)
])
]
if (rowsPerPage !== 0 && this.pagesNumber > 1) {
const btnProps = {
color: this.color,
round: true,
dense: true,
flat: true
}
if (this.dense === true) {
btnProps.size = 'sm'
}
this.pagesNumber > 2 && control.push(
h(QBtn, {
key: 'pgFirst',
props: {
...btnProps,
icon: this.navIcon[0],
disable: this.isFirstPage
},
on: cache(this, 'pgFirst', { click: this.firstPage })
})
)
control.push(
h(QBtn, {
key: 'pgPrev',
props: {
...btnProps,
icon: this.navIcon[1],
disable: this.isFirstPage
},
on: cache(this, 'pgPrev', { click: this.prevPage })
}),
h(QBtn, {
key: 'pgNext',
props: {
...btnProps,
icon: this.navIcon[2],
disable: this.isLastPage
},
on: cache(this, 'pgNext', { click: this.nextPage })
})
)
this.pagesNumber > 2 && control.push(
h(QBtn, {
key: 'pgLast',
props: {
...btnProps,
icon: this.navIcon[3],
disable: this.isLastPage
},
on: cache(this, 'pgLast', { click: this.lastPage })
})
)
}
}
child.push(
h('div', { staticClass: 'q-table__control' }, control)
)
return child
}
}
}