ant-design-vue/components/vc-pagination/Pager.jsx

59 lines
1.3 KiB
React
Raw Normal View History

2018-03-19 10:16:27 +08:00
2018-03-05 19:06:44 +08:00
import PropTypes from '../_util/vue-types'
2017-11-07 11:57:16 +08:00
export default {
2018-05-26 22:47:19 +08:00
name: 'Pager',
2017-11-07 11:57:16 +08:00
props: {
2018-03-05 19:06:44 +08:00
rootPrefixCls: PropTypes.string,
page: PropTypes.number,
active: PropTypes.bool,
last: PropTypes.bool,
locale: PropTypes.object,
showTitle: PropTypes.bool,
2017-12-20 10:56:21 +08:00
itemRender: {
type: Function,
default: () => {},
},
2017-11-07 11:57:16 +08:00
},
computed: {
classes () {
const prefixCls = `${this.rootPrefixCls}-item`
let cls = `${prefixCls} ${prefixCls}-${this.page}`
if (this.active) {
cls = `${cls} ${prefixCls}-active`
}
return cls
},
},
methods: {
handleClick () {
this.$emit('click', this.page)
},
handleKeyPress (event) {
2018-03-07 10:48:33 +08:00
this.$emit('keypress', event, this.handleClick, this.page)
2017-11-07 11:57:16 +08:00
},
},
2017-12-20 10:56:21 +08:00
render () {
2018-03-05 19:06:44 +08:00
const { rootPrefixCls, page, active } = this
const prefixCls = `${rootPrefixCls}-item`
let cls = `${prefixCls} ${prefixCls}-${page}`
if (active) {
cls = `${cls} ${prefixCls}-active`
}
2017-12-20 10:56:21 +08:00
return (
<li
2018-03-05 19:06:44 +08:00
class={cls}
2017-12-20 10:56:21 +08:00
onClick={this.handleClick}
onKeypress={this.handleKeyPress}
2018-03-05 19:06:44 +08:00
title={this.showTitle ? this.page : null}
tabIndex='0'
>
2017-12-20 10:56:21 +08:00
{this.itemRender(this.page, 'page', <a>{this.page}</a>)}
</li>
)
},
2017-11-07 11:57:16 +08:00
}
2018-03-19 10:16:27 +08:00