2021-06-26 09:35:40 +08:00
|
|
|
import type { PropType, ExtractPropTypes } from 'vue';
|
|
|
|
import { defineComponent, inject, nextTick, onMounted, ref } from 'vue';
|
2019-01-12 11:33:27 +08:00
|
|
|
import PropTypes from '../_util/vue-types';
|
2020-10-15 22:38:48 +08:00
|
|
|
import { getOptionProps } from '../_util/props-util';
|
2020-08-31 16:53:19 +08:00
|
|
|
import classNames from '../_util/classNames';
|
2020-03-26 11:56:16 +08:00
|
|
|
import UpOutlined from '@ant-design/icons-vue/UpOutlined';
|
|
|
|
import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
2019-01-12 11:33:27 +08:00
|
|
|
import VcInputNumber from '../vc-input-number/src';
|
2020-09-30 10:47:18 +08:00
|
|
|
import { defaultConfigProvider } from '../config-provider';
|
2020-11-01 15:03:33 +08:00
|
|
|
import { tuple, withInstall } from '../_util/type';
|
2021-08-29 10:44:24 +08:00
|
|
|
import type { EventHandler } from '../_util/EventInterface';
|
2021-09-25 16:51:32 +08:00
|
|
|
import { useInjectFormItemContext } from '../form/FormItemContext';
|
2018-04-04 13:57:23 +08:00
|
|
|
|
2021-05-26 10:24:24 +08:00
|
|
|
const inputNumberProps = {
|
2018-04-04 13:57:23 +08:00
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
min: PropTypes.number,
|
|
|
|
max: PropTypes.number,
|
2019-01-12 11:33:27 +08:00
|
|
|
value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
2020-10-15 22:38:48 +08:00
|
|
|
step: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).def(1),
|
2020-03-07 19:45:13 +08:00
|
|
|
defaultValue: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
2021-06-07 17:35:03 +08:00
|
|
|
tabindex: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
2020-10-10 18:16:28 +08:00
|
|
|
disabled: PropTypes.looseBool,
|
2020-10-15 22:38:48 +08:00
|
|
|
size: PropTypes.oneOf(tuple('large', 'small', 'default')),
|
2018-04-04 13:57:23 +08:00
|
|
|
formatter: PropTypes.func,
|
|
|
|
parser: PropTypes.func,
|
2018-12-09 11:49:18 +08:00
|
|
|
decimalSeparator: PropTypes.string,
|
2018-04-04 13:57:23 +08:00
|
|
|
placeholder: PropTypes.string,
|
|
|
|
name: PropTypes.string,
|
|
|
|
id: PropTypes.string,
|
|
|
|
precision: PropTypes.number,
|
2020-10-10 18:16:28 +08:00
|
|
|
autofocus: PropTypes.looseBool,
|
2020-10-24 21:03:41 +08:00
|
|
|
onPressEnter: {
|
2021-08-29 10:44:24 +08:00
|
|
|
type: Function as PropType<EventHandler>,
|
2020-10-24 21:03:41 +08:00
|
|
|
},
|
2020-11-20 23:59:47 +08:00
|
|
|
onChange: Function as PropType<(num: number) => void>,
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2018-04-04 13:57:23 +08:00
|
|
|
|
2021-05-26 10:24:24 +08:00
|
|
|
export type InputNumberProps = Partial<ExtractPropTypes<typeof inputNumberProps>>;
|
|
|
|
|
2020-10-24 21:03:41 +08:00
|
|
|
const InputNumber = defineComponent({
|
2018-04-08 21:17:20 +08:00
|
|
|
name: 'AInputNumber',
|
2020-06-27 22:17:48 +08:00
|
|
|
inheritAttrs: false,
|
2021-05-26 10:24:24 +08:00
|
|
|
props: inputNumberProps,
|
2021-09-25 16:51:32 +08:00
|
|
|
emits: ['input', 'change', 'blur', 'update:value'],
|
|
|
|
setup(props, { emit }) {
|
|
|
|
const formItemContext = useInjectFormItemContext();
|
2020-10-15 22:38:48 +08:00
|
|
|
const inputNumberRef = ref(null);
|
|
|
|
const focus = () => {
|
|
|
|
inputNumberRef.value.focus();
|
2020-06-27 22:17:48 +08:00
|
|
|
};
|
2020-10-15 22:38:48 +08:00
|
|
|
const blur = () => {
|
|
|
|
inputNumberRef.value.blur();
|
|
|
|
};
|
2021-09-25 16:51:32 +08:00
|
|
|
const handleChange = (val: number) => {
|
|
|
|
emit('update:value', val);
|
|
|
|
emit('change', val);
|
2021-11-02 21:33:58 +08:00
|
|
|
formItemContext.onFieldChange();
|
2021-09-25 16:51:32 +08:00
|
|
|
};
|
|
|
|
const handleBlur = () => {
|
|
|
|
emit('blur');
|
2021-11-02 21:33:58 +08:00
|
|
|
formItemContext.onFieldBlur();
|
2021-09-25 16:51:32 +08:00
|
|
|
};
|
2020-10-15 22:38:48 +08:00
|
|
|
onMounted(() => {
|
|
|
|
nextTick(() => {
|
|
|
|
if (process.env.NODE_ENV === 'test') {
|
|
|
|
if (props.autofocus && !props.disabled) {
|
|
|
|
focus();
|
|
|
|
}
|
2020-07-31 15:05:58 +08:00
|
|
|
}
|
2020-10-15 22:38:48 +08:00
|
|
|
});
|
2020-07-31 15:05:58 +08:00
|
|
|
});
|
2020-10-15 22:38:48 +08:00
|
|
|
return {
|
|
|
|
configProvider: inject('configProvider', defaultConfigProvider),
|
|
|
|
inputNumberRef,
|
|
|
|
focus,
|
|
|
|
blur,
|
2021-09-25 16:51:32 +08:00
|
|
|
formItemContext,
|
|
|
|
handleBlur,
|
|
|
|
handleChange,
|
2020-10-15 22:38:48 +08:00
|
|
|
};
|
2018-04-04 13:57:23 +08:00
|
|
|
},
|
|
|
|
|
2019-01-12 11:33:27 +08:00
|
|
|
render() {
|
2021-06-23 23:08:16 +08:00
|
|
|
const {
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
size,
|
|
|
|
class: className,
|
2021-09-25 16:51:32 +08:00
|
|
|
id = this.formItemContext.id.value,
|
2021-06-23 23:08:16 +08:00
|
|
|
...others
|
|
|
|
} = {
|
2020-06-27 22:17:48 +08:00
|
|
|
...getOptionProps(this),
|
|
|
|
...this.$attrs,
|
2020-10-15 22:38:48 +08:00
|
|
|
} as any;
|
2020-10-24 21:03:41 +08:00
|
|
|
const { getPrefixCls } = this.configProvider;
|
2019-04-10 09:08:29 +08:00
|
|
|
const prefixCls = getPrefixCls('input-number', customizePrefixCls);
|
2019-04-10 08:51:42 +08:00
|
|
|
|
2020-06-27 22:17:48 +08:00
|
|
|
const inputNumberClass = classNames(
|
|
|
|
{
|
|
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
|
|
},
|
|
|
|
className,
|
|
|
|
);
|
2020-03-26 11:56:16 +08:00
|
|
|
const upIcon = <UpOutlined class={`${prefixCls}-handler-up-inner`} />;
|
|
|
|
const downIcon = <DownOutlined class={`${prefixCls}-handler-down-inner`} />;
|
2018-12-09 11:49:18 +08:00
|
|
|
|
2020-11-20 23:59:47 +08:00
|
|
|
const vcInputNumberProps = {
|
2020-06-27 22:17:48 +08:00
|
|
|
prefixCls,
|
|
|
|
upHandler: upIcon,
|
|
|
|
downHandler: downIcon,
|
|
|
|
...others,
|
2018-04-04 13:57:23 +08:00
|
|
|
class: inputNumberClass,
|
2021-09-25 16:51:32 +08:00
|
|
|
onChange: this.handleChange,
|
|
|
|
onBlur: this.handleBlur,
|
|
|
|
id,
|
2019-01-12 11:33:27 +08:00
|
|
|
};
|
2020-11-20 23:59:47 +08:00
|
|
|
return <VcInputNumber {...vcInputNumberProps} ref="inputNumberRef" />;
|
2018-04-04 13:57:23 +08:00
|
|
|
},
|
2020-10-15 22:38:48 +08:00
|
|
|
});
|
2018-09-19 13:21:57 +08:00
|
|
|
|
2020-11-01 15:03:33 +08:00
|
|
|
export default withInstall(InputNumber);
|