2019-01-12 03:33:27 +00:00
|
|
|
import PropTypes from '../_util/vue-types';
|
2020-03-07 11:45:13 +00:00
|
|
|
import classNames from 'classnames';
|
2018-03-05 11:06:44 +00:00
|
|
|
|
2017-11-07 03:57:16 +00:00
|
|
|
export default {
|
2018-05-26 14:47:19 +00:00
|
|
|
name: 'Pager',
|
2017-11-07 03:57:16 +00:00
|
|
|
props: {
|
2018-03-05 11:06:44 +00:00
|
|
|
rootPrefixCls: PropTypes.string,
|
|
|
|
page: PropTypes.number,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
last: PropTypes.bool,
|
|
|
|
locale: PropTypes.object,
|
|
|
|
showTitle: PropTypes.bool,
|
2017-12-20 02:56:21 +00:00
|
|
|
itemRender: {
|
|
|
|
type: Function,
|
|
|
|
default: () => {},
|
|
|
|
},
|
2017-11-07 03:57:16 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2019-01-12 03:33:27 +00:00
|
|
|
handleClick() {
|
|
|
|
this.$emit('click', this.page);
|
2017-11-07 03:57:16 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
handleKeyPress(event) {
|
|
|
|
this.$emit('keypress', event, this.handleClick, this.page);
|
2017-11-07 03:57:16 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
render() {
|
2020-03-07 11:45:13 +00:00
|
|
|
const props = this.$props;
|
|
|
|
const prefixCls = `${props.rootPrefixCls}-item`;
|
|
|
|
const cls = classNames(prefixCls, `${prefixCls}-${props.page}`, {
|
|
|
|
[`${prefixCls}-active`]: props.active,
|
|
|
|
[`${prefixCls}-disabled`]: !props.page,
|
|
|
|
});
|
2019-01-01 13:19:50 +00:00
|
|
|
|
2017-12-20 02:56:21 +00:00
|
|
|
return (
|
|
|
|
<li
|
2018-03-05 11:06:44 +00:00
|
|
|
class={cls}
|
2017-12-20 02:56:21 +00:00
|
|
|
onClick={this.handleClick}
|
|
|
|
onKeypress={this.handleKeyPress}
|
2018-03-05 11:06:44 +00:00
|
|
|
title={this.showTitle ? this.page : null}
|
2019-01-12 03:33:27 +00:00
|
|
|
tabIndex="0"
|
2018-03-05 11:06:44 +00:00
|
|
|
>
|
2017-12-20 02:56:21 +00:00
|
|
|
{this.itemRender(this.page, 'page', <a>{this.page}</a>)}
|
|
|
|
</li>
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2017-12-20 02:56:21 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|