You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.0 KiB
79 lines
2.0 KiB
|
|
import PropTypes from '../_util/vue-types'
|
|
import VcSelect from '../select'
|
|
import MiniSelect from './MiniSelect'
|
|
import enUS from '../vc-pagination/locale/en_US'
|
|
import LocaleReceiver from '../locale-provider/LocaleReceiver'
|
|
import { getOptionProps } from '../_util/props-util'
|
|
import VcPagination from '../vc-pagination'
|
|
|
|
export const PaginationProps = () => ({
|
|
total: PropTypes.number,
|
|
defaultCurrent: PropTypes.number,
|
|
current: PropTypes.number,
|
|
defaultPageSize: PropTypes.number,
|
|
pageSize: PropTypes.number,
|
|
hideOnSinglePage: PropTypes.bool,
|
|
showSizeChanger: PropTypes.bool,
|
|
pageSizeOptions: PropTypes.arrayOf(PropTypes.oneOfType([
|
|
PropTypes.number,
|
|
PropTypes.string,
|
|
])),
|
|
buildOptionText: PropTypes.func,
|
|
showSizeChange: PropTypes.func,
|
|
showQuickJumper: PropTypes.bool,
|
|
showTotal: PropTypes.any,
|
|
size: PropTypes.string,
|
|
simple: PropTypes.bool,
|
|
locale: PropTypes.object,
|
|
prefixCls: PropTypes.string,
|
|
selectPrefixCls: PropTypes.string,
|
|
itemRender: PropTypes.any,
|
|
})
|
|
|
|
export default {
|
|
props: {
|
|
...PaginationProps(),
|
|
prefixCls: PropTypes.string.def('ant-pagination'),
|
|
selectPrefixCls: PropTypes.string.def('ant-select'),
|
|
},
|
|
model: {
|
|
prop: 'current',
|
|
event: 'change',
|
|
},
|
|
methods: {
|
|
renderPagination (locale) {
|
|
const { buildOptionText, size, ...restProps } = getOptionProps(this)
|
|
const isSmall = size === 'small'
|
|
const paginationProps = {
|
|
props: {
|
|
...restProps,
|
|
selectComponentClass: (isSmall ? MiniSelect : VcSelect),
|
|
locale,
|
|
buildOptionText: buildOptionText || this.$scopedSlots.buildOptionText,
|
|
},
|
|
class: {
|
|
'mini': isSmall,
|
|
},
|
|
on: this.$listeners,
|
|
}
|
|
|
|
return (
|
|
<VcPagination
|
|
{...paginationProps}
|
|
/>
|
|
)
|
|
},
|
|
},
|
|
render () {
|
|
return (
|
|
<LocaleReceiver
|
|
componentName='Pagination'
|
|
defaultLocale={enUS}
|
|
children={this.renderPagination}
|
|
/>
|
|
)
|
|
},
|
|
}
|
|
|