iview/src/components/input-number/input-number.vue

347 lines
11 KiB
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
<div :class="wrapClasses">
<div :class="handlerClasses">
<a
@click="up"
2017-08-21 16:48:07 +08:00
@mousedown="preventDefault"
2016-09-09 14:29:19 +08:00
:class="upClasses">
2016-09-21 16:59:19 +08:00
<span :class="innerUpClasses" @click="preventDefault"></span>
2016-09-09 14:29:19 +08:00
</a>
<a
@click="down"
2017-08-21 16:48:07 +08:00
@mousedown="preventDefault"
2016-09-09 14:29:19 +08:00
:class="downClasses">
2016-09-21 16:59:19 +08:00
<span :class="innerDownClasses" @click="preventDefault"></span>
2016-09-09 14:29:19 +08:00
</a>
</div>
<div :class="inputWrapClasses">
<input
2017-09-22 15:29:50 +08:00
:id="elementId"
2016-09-09 14:29:19 +08:00
:class="inputClasses"
:disabled="disabled"
autocomplete="off"
2017-11-04 16:37:29 +01:00
spellcheck="false"
2017-04-25 16:52:51 +08:00
:autofocus="autofocus"
2016-09-09 14:29:19 +08:00
@focus="focus"
@blur="blur"
@keydown.stop="keyDown"
2017-10-11 10:42:01 +02:00
@input="change"
@mouseup="preventDefault"
2016-09-09 14:29:19 +08:00
@change="change"
2017-10-11 09:29:16 +08:00
:readonly="readonly || !editable"
2017-05-10 09:22:10 +08:00
:name="name"
:value="formatterValue"
:placeholder="placeholder">
2016-09-09 14:29:19 +08:00
</div>
</div>
</template>
<script>
import { oneOf } from '../../utils/assist';
import Emitter from '../../mixins/emitter';
2016-09-09 14:29:19 +08:00
const prefixCls = 'ivu-input-number';
2016-09-21 16:59:19 +08:00
const iconPrefixCls = 'ivu-icon';
2016-09-09 14:29:19 +08:00
function addNum (num1, num2) {
2016-12-12 10:37:52 +08:00
let sq1, sq2, m;
2016-09-09 14:29:19 +08:00
try {
2016-12-25 22:49:42 +08:00
sq1 = num1.toString().split('.')[1].length;
2016-09-09 14:29:19 +08:00
}
catch (e) {
sq1 = 0;
}
try {
2016-12-25 22:49:42 +08:00
sq2 = num2.toString().split('.')[1].length;
2016-09-09 14:29:19 +08:00
}
catch (e) {
sq2 = 0;
}
// if (sq1 === 0 || sq2 === 0) {
// return num1 + num2;
// } else {
// m = Math.pow(10, Math.max(sq1, sq2));
// return (num1 * m + num2 * m) / m;
// }
m = Math.pow(10, Math.max(sq1, sq2));
2017-07-25 18:04:46 +08:00
return (Math.round(num1 * m) + Math.round(num2 * m)) / m;
2016-09-09 14:29:19 +08:00
}
export default {
name: 'InputNumber',
mixins: [ Emitter ],
2016-09-09 14:29:19 +08:00
props: {
max: {
type: Number,
default: Infinity
},
min: {
type: Number,
default: -Infinity
},
step: {
type: Number,
default: 1
},
value: {
type: Number,
default: 1
},
size: {
validator (value) {
2017-08-25 10:53:52 +08:00
return oneOf(value, ['small', 'large', 'default']);
2018-06-28 14:45:08 +08:00
},
default () {
2018-08-07 16:35:27 +08:00
return !this.$IVIEW || this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
2016-09-09 14:29:19 +08:00
}
},
disabled: {
type: Boolean,
default: false
2017-04-25 16:52:51 +08:00
},
autofocus: {
type: Boolean,
default: false
2017-05-10 09:22:10 +08:00
},
2017-10-10 10:04:37 +02:00
readonly: {
type: Boolean,
default: false
},
2017-10-11 09:29:16 +08:00
editable: {
type: Boolean,
default: true
},
2017-05-10 09:22:10 +08:00
name: {
type: String
2017-09-15 11:44:09 +08:00
},
precision: {
type: Number
2017-09-22 15:29:50 +08:00
},
elementId: {
type: String
2018-03-13 15:17:19 +08:00
},
formatter: {
type: Function
},
parser: {
type: Function
},
placeholder: {
type: String,
default: ''
},
2016-09-09 14:29:19 +08:00
},
data () {
return {
focused: false,
upDisabled: false,
downDisabled: false,
currentValue: this.value
2016-12-25 22:49:42 +08:00
};
2016-09-09 14:29:19 +08:00
},
computed: {
wrapClasses () {
return [
`${prefixCls}`,
{
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-disabled`]: this.disabled,
[`${prefixCls}-focused`]: this.focused
}
2016-12-25 22:49:42 +08:00
];
2016-09-09 14:29:19 +08:00
},
handlerClasses () {
return `${prefixCls}-handler-wrap`;
},
upClasses () {
return [
`${prefixCls}-handler`,
`${prefixCls}-handler-up`,
{
[`${prefixCls}-handler-up-disabled`]: this.upDisabled
}
2016-12-25 22:49:42 +08:00
];
2016-09-09 14:29:19 +08:00
},
innerUpClasses () {
2016-09-21 16:59:19 +08:00
return `${prefixCls}-handler-up-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-up`;
2016-09-09 14:29:19 +08:00
},
downClasses () {
return [
`${prefixCls}-handler`,
`${prefixCls}-handler-down`,
{
[`${prefixCls}-handler-down-disabled`]: this.downDisabled
}
2016-12-25 22:49:42 +08:00
];
2016-09-09 14:29:19 +08:00
},
innerDownClasses () {
2016-09-21 16:59:19 +08:00
return `${prefixCls}-handler-down-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-down`;
2016-09-09 14:29:19 +08:00
},
inputWrapClasses () {
return `${prefixCls}-input-wrap`;
2016-09-21 16:59:19 +08:00
},
inputClasses () {
return `${prefixCls}-input`;
2017-09-15 11:44:09 +08:00
},
precisionValue () {
// can not display 1.0
2018-05-23 11:43:11 +08:00
if(!this.currentValue) return this.currentValue;
return this.precision ? this.currentValue.toFixed(this.precision) : this.currentValue;
2018-03-13 15:17:19 +08:00
},
formatterValue () {
2018-03-16 13:59:59 +08:00
if (this.formatter && this.precisionValue !== null) {
2018-03-13 15:17:19 +08:00
return this.formatter(this.precisionValue);
} else {
return this.precisionValue;
}
2016-09-09 14:29:19 +08:00
}
},
methods: {
preventDefault (e) {
e.preventDefault();
},
up (e) {
const targetVal = Number(e.target.value);
if (this.upDisabled && isNaN(targetVal)) {
2016-09-09 14:29:19 +08:00
return false;
}
this.changeStep('up', e);
2016-09-09 14:29:19 +08:00
},
down (e) {
const targetVal = Number(e.target.value);
if (this.downDisabled && isNaN(targetVal)) {
2016-09-09 14:29:19 +08:00
return false;
}
this.changeStep('down', e);
2016-09-09 14:29:19 +08:00
},
changeStep (type, e) {
2017-10-10 10:04:37 +02:00
if (this.disabled || this.readonly) {
2016-09-09 14:29:19 +08:00
return false;
}
const targetVal = Number(e.target.value);
let val = Number(this.currentValue);
2016-09-09 14:29:19 +08:00
const step = Number(this.step);
if (isNaN(val)) {
return false;
}
// input a number, and key up or down
if (!isNaN(targetVal)) {
if (type === 'up') {
if (addNum(targetVal, step) <= this.max) {
val = targetVal;
} else {
return false;
}
} else if (type === 'down') {
if (addNum(targetVal, -step) >= this.min) {
val = targetVal;
} else {
return false;
}
}
}
if (type === 'up') {
2016-09-09 14:29:19 +08:00
val = addNum(val, step);
} else if (type === 'down') {
2016-09-09 14:29:19 +08:00
val = addNum(val, -step);
}
this.setValue(val);
},
setValue (val) {
// 如果 step 是小数,且没有设置 precision是有问题的
2018-05-24 10:21:53 +08:00
if (val && !isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
2018-05-24 10:22:34 +08:00
2016-10-13 23:11:23 +08:00
this.$nextTick(() => {
this.currentValue = val;
this.$emit('input', val);
2017-01-04 16:00:02 +08:00
this.$emit('on-change', val);
this.dispatch('FormItem', 'on-form-change', val);
2016-10-13 23:11:23 +08:00
});
2016-09-09 14:29:19 +08:00
},
focus (event) {
2016-09-09 14:29:19 +08:00
this.focused = true;
this.$emit('on-focus', event);
2016-09-09 14:29:19 +08:00
},
blur () {
this.focused = false;
this.$emit('on-blur');
2016-09-09 14:29:19 +08:00
},
keyDown (e) {
if (e.keyCode === 38) {
e.preventDefault();
this.up(e);
2016-09-09 14:29:19 +08:00
} else if (e.keyCode === 40) {
e.preventDefault();
this.down(e);
2016-09-09 14:29:19 +08:00
}
},
change (event) {
let val = event.target.value.trim();
2018-03-13 15:17:19 +08:00
if (this.parser) {
val = this.parser(val);
}
2016-09-09 14:29:19 +08:00
if (event.type == 'input' && val.match(/^\-?\.?$|\.$/)) return; // prevent fire early if decimal. If no more input the change event will fire later
2017-10-11 10:42:01 +02:00
const {min, max} = this;
const isEmptyString = val.length === 0;
2017-10-11 10:42:01 +02:00
val = Number(val);
2018-03-16 13:59:59 +08:00
if(isEmptyString){
this.setValue(null);
return;
}
if (event.type == 'change'){
if (val === this.currentValue && val > min && val < max) return; // already fired change for input event
}
if (!isNaN(val) && !isEmptyString) {
this.currentValue = val;
2016-10-13 23:11:23 +08:00
if (event.type == 'input' && val < min) return; // prevent fire early in case user is typing a bigger number. Change will handle this otherwise.
2016-09-09 14:29:19 +08:00
if (val > max) {
this.setValue(max);
} else if (val < min) {
this.setValue(min);
} else {
this.setValue(val);
}
} else {
event.target.value = this.currentValue;
2016-09-09 14:29:19 +08:00
}
2016-10-13 23:11:23 +08:00
},
changeVal (val) {
2017-10-11 10:42:01 +02:00
val = Number(val);
if (!isNaN(val)) {
2016-09-09 14:29:19 +08:00
const step = this.step;
2016-10-13 23:11:23 +08:00
this.upDisabled = val + step > this.max;
this.downDisabled = val - step < this.min;
2016-09-09 14:29:19 +08:00
} else {
this.upDisabled = true;
this.downDisabled = true;
}
}
2016-10-13 23:11:23 +08:00
},
mounted () {
this.changeVal(this.currentValue);
2016-10-13 23:11:23 +08:00
},
watch: {
value (val) {
this.currentValue = val;
},
currentValue (val) {
2016-10-13 23:11:23 +08:00
this.changeVal(val);
},
min () {
this.changeVal(this.currentValue);
},
max () {
this.changeVal(this.currentValue);
2016-10-13 23:11:23 +08:00
}
2016-09-09 14:29:19 +08:00
}
2016-12-25 22:49:42 +08:00
};
</script>