import PropTypes from '../_util/vue-types'; import KEYCODE from './KeyCode'; import BaseMixin from '../_util/BaseMixin'; import { withDirectives } from 'vue'; import antInput from '../_util/antInputDirective'; export default { mixins: [BaseMixin], props: { disabled: PropTypes.looseBool, changeSize: PropTypes.func, quickGo: PropTypes.func, selectComponentClass: PropTypes.any, current: PropTypes.number, pageSizeOptions: PropTypes.array.def(['10', '20', '30', '40']), pageSize: PropTypes.number, buildOptionText: PropTypes.func, locale: PropTypes.object, rootPrefixCls: PropTypes.string, selectPrefixCls: PropTypes.string, goButton: PropTypes.any, }, data() { return { goInputText: '', }; }, methods: { getValidValue() { const { goInputText, current } = this; return !goInputText || isNaN(goInputText) ? current : Number(goInputText); }, defaultBuildOptionText(opt) { return `${opt.value} ${this.locale.items_per_page}`; }, handleChange(e) { const { value, composing } = e.target; if (e.isComposing || composing || this.goInputText === value) return; this.setState({ goInputText: value, }); }, handleBlur(e) { const { goButton, quickGo, rootPrefixCls } = this.$props; if (goButton) { return; } if ( e.relatedTarget && (e.relatedTarget.className.indexOf(`${rootPrefixCls}-prev`) >= 0 || e.relatedTarget.className.indexOf(`${rootPrefixCls}-next`) >= 0) ) { return; } quickGo(this.getValidValue()); }, go(e) { const { goInputText } = this; if (goInputText === '') { return; } if (e.keyCode === KEYCODE.ENTER || e.type === 'click') { // https://github.com/vueComponent/ant-design-vue/issues/1316 this.quickGo(this.getValidValue()); this.setState({ goInputText: '', }); } }, }, render() { const { rootPrefixCls, locale, changeSize, quickGo, goButton, selectComponentClass: Select, defaultBuildOptionText, selectPrefixCls, pageSize, pageSizeOptions, goInputText, disabled, } = this; const prefixCls = `${rootPrefixCls}-options`; let changeSelect = null; let goInput = null; let gotoButton = null; if (!changeSize && !quickGo) { return null; } if (changeSize && Select) { const buildOptionText = this.buildOptionText || defaultBuildOptionText; const options = pageSizeOptions.map((opt, i) => ( {buildOptionText({ value: opt })} )); changeSelect = ( ); } if (quickGo) { if (goButton) { gotoButton = typeof goButton === 'boolean' ? ( ) : ( {goButton} ); } goInput = (
{locale.jump_to} {withDirectives( , [[antInput]], )} {locale.page} {gotoButton}
); } return (
  • {changeSelect} {goInput}
  • ); }, };