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.
ant-design-vue/components/vc-pagination/Pager.tsx

69 lines
1.7 KiB

import PropTypes from '../_util/vue-types';
import classNames from '../_util/classNames';
import type { CSSProperties } from 'vue';
import { defineComponent } from 'vue';
export default defineComponent({
compatConfig: { MODE: 3 },
name: 'Pager',
inheritAttrs: false,
props: {
rootPrefixCls: String,
page: Number,
active: { type: Boolean, default: undefined },
last: { type: Boolean, default: undefined },
locale: PropTypes.object,
showTitle: { type: Boolean, default: undefined },
itemRender: {
type: Function,
default: () => {},
},
onClick: {
type: Function,
},
onKeypress: {
type: Function,
},
},
eimt: ['click', 'keypress'],
setup(props, { emit, attrs }) {
const handleClick = () => {
emit('click', props.page);
};
const handleKeyPress = (event: KeyboardEvent) => {
emit('keypress', event, handleClick, props.page);
};
return () => {
const { showTitle, page, itemRender } = props;
const { class: _cls, style } = attrs;
const prefixCls = `${props.rootPrefixCls}-item`;
const cls = classNames(
prefixCls,
`${prefixCls}-${props.page}`,
{
[`${prefixCls}-active`]: props.active,
[`${prefixCls}-disabled`]: !props.page,
},
_cls,
);
return (
<li
onClick={handleClick}
onKeypress={handleKeyPress}
title={showTitle ? String(page) : null}
tabindex="0"
class={cls}
style={style as CSSProperties}
>
{itemRender({
page,
type: 'page',
originalElement: <a rel="nofollow">{page}</a>,
})}
</li>
);
};
},
});