Blame view

src/components/input-number/input-number.vue 10.8 KB
7fa943eb   梁灏   init
1
2
3
4
5
  <template>
      <div :class="wrapClasses">
          <div :class="handlerClasses">
              <a
                  @click="up"
5d2d2d6f   梁灏   fixed #1654
6
                  @mousedown="preventDefault"
7fa943eb   梁灏   init
7
                  :class="upClasses">
95436eeb   梁灏   add InputNumber UI
8
                  <span :class="innerUpClasses" @click="preventDefault"></span>
7fa943eb   梁灏   init
9
10
11
              </a>
              <a
                  @click="down"
5d2d2d6f   梁灏   fixed #1654
12
                  @mousedown="preventDefault"
7fa943eb   梁灏   init
13
                  :class="downClasses">
95436eeb   梁灏   add InputNumber UI
14
                  <span :class="innerDownClasses" @click="preventDefault"></span>
7fa943eb   梁灏   init
15
16
17
18
              </a>
          </div>
          <div :class="inputWrapClasses">
              <input
acb79ba3   梁灏   fixed #433
19
                  :id="elementId"
7fa943eb   梁灏   init
20
21
                  :class="inputClasses"
                  :disabled="disabled"
c7a67856   子凡   fix
22
                  autocomplete="off"
c17c5ad6   Sergio Crisostomo   normalize autocom...
23
                  spellcheck="false"
f15c216a   丁强   Input 组件增加autofoc...
24
                  :autofocus="autofocus"
7fa943eb   梁灏   init
25
26
27
                  @focus="focus"
                  @blur="blur"
                  @keydown.stop="keyDown"
c82e714c   Sergio Crisostomo   call change on in...
28
                  @input="change"
3d4fd6df   angela-1   在safari浏览器中需要去除mo...
29
                  @mouseup="preventDefault"
7fa943eb   梁灏   init
30
                  @change="change"
7309b434   梁灏   InputNumber add `...
31
                  :readonly="readonly || !editable"
7959adf7   梁灏   fixed #862
32
                  :name="name"
ff3d2a2e   xiaofengsha   inputNumber组件添加pl...
33
34
                  :value="formatterValue"
                  :placeholder="placeholder">
7fa943eb   梁灏   init
35
36
37
38
39
          </div>
      </div>
  </template>
  <script>
      import { oneOf } from '../../utils/assist';
cd78c9c4   梁灏   some comps suppor...
40
      import Emitter from '../../mixins/emitter';
7fa943eb   梁灏   init
41
42
  
      const prefixCls = 'ivu-input-number';
95436eeb   梁灏   add InputNumber UI
43
      const iconPrefixCls = 'ivu-icon';
7fa943eb   梁灏   init
44
  
7fa943eb   梁灏   init
45
      function addNum (num1, num2) {
17e1fcf1   梁灏   init DatePicker
46
          let sq1, sq2, m;
7fa943eb   梁灏   init
47
          try {
b0893113   jingsam   :art: add eslint
48
              sq1 = num1.toString().split('.')[1].length;
7fa943eb   梁灏   init
49
50
51
52
53
          }
          catch (e) {
              sq1 = 0;
          }
          try {
b0893113   jingsam   :art: add eslint
54
              sq2 = num2.toString().split('.')[1].length;
7fa943eb   梁灏   init
55
56
57
58
59
60
61
62
63
64
65
          }
          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));
075f6215   leonisme   Fix a bug in inpu...
66
          return (Math.round(num1 * m) + Math.round(num2 * m)) / m;
7fa943eb   梁灏   init
67
68
69
      }
  
      export default {
34ee7b4a   梁灏   support Tree & ad...
70
          name: 'InputNumber',
cd78c9c4   梁灏   some comps suppor...
71
          mixins: [ Emitter ],
7fa943eb   梁灏   init
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
          props: {
              max: {
                  type: Number,
                  default: Infinity
              },
              min: {
                  type: Number,
                  default: -Infinity
              },
              step: {
                  type: Number,
                  default: 1
              },
              value: {
                  type: Number,
                  default: 1
              },
              size: {
                  validator (value) {
f00a037c   梁灏   some Components's...
91
                      return oneOf(value, ['small', 'large', 'default']);
7fa943eb   梁灏   init
92
93
94
95
96
                  }
              },
              disabled: {
                  type: Boolean,
                  default: false
f15c216a   丁强   Input 组件增加autofoc...
97
98
              },
              autofocus: {
8d3a02a5   丁强   修改input组件 autofoc...
99
100
                  type: Boolean,
                  default: false
7959adf7   梁灏   fixed #862
101
              },
cb486838   Sergio Crisostomo   Add readonly prop...
102
103
104
105
              readonly: {
                  type: Boolean,
                  default: false
              },
7309b434   梁灏   InputNumber add `...
106
107
108
109
              editable: {
                  type: Boolean,
                  default: true
              },
7959adf7   梁灏   fixed #862
110
111
              name: {
                  type: String
7a05b6e5   梁灏   fixed #1810
112
113
114
              },
              precision: {
                  type: Number
acb79ba3   梁灏   fixed #433
115
116
117
              },
              elementId: {
                  type: String
ce176e21   梁灏   fixed #3081
118
119
120
121
122
123
              },
              formatter: {
                  type: Function
              },
              parser: {
                  type: Function
ff3d2a2e   xiaofengsha   inputNumber组件添加pl...
124
125
126
127
128
              },
              placeholder: {
                  type: String,
                  default: ''
              },
7fa943eb   梁灏   init
129
130
131
132
133
          },
          data () {
              return {
                  focused: false,
                  upDisabled: false,
c97c42ab   梁灏   support InputNumber
134
135
                  downDisabled: false,
                  currentValue: this.value
b0893113   jingsam   :art: add eslint
136
              };
7fa943eb   梁灏   init
137
138
139
140
141
142
143
144
145
146
          },
          computed: {
              wrapClasses () {
                  return [
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-${this.size}`]: !!this.size,
                          [`${prefixCls}-disabled`]: this.disabled,
                          [`${prefixCls}-focused`]: this.focused
                      }
b0893113   jingsam   :art: add eslint
147
                  ];
7fa943eb   梁灏   init
148
149
150
151
152
153
154
155
156
157
158
              },
              handlerClasses () {
                  return `${prefixCls}-handler-wrap`;
              },
              upClasses () {
                  return [
                      `${prefixCls}-handler`,
                      `${prefixCls}-handler-up`,
                      {
                          [`${prefixCls}-handler-up-disabled`]: this.upDisabled
                      }
b0893113   jingsam   :art: add eslint
159
                  ];
7fa943eb   梁灏   init
160
161
              },
              innerUpClasses () {
95436eeb   梁灏   add InputNumber UI
162
                  return `${prefixCls}-handler-up-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-up`;
7fa943eb   梁灏   init
163
164
165
166
167
168
169
170
              },
              downClasses () {
                  return [
                      `${prefixCls}-handler`,
                      `${prefixCls}-handler-down`,
                      {
                          [`${prefixCls}-handler-down-disabled`]: this.downDisabled
                      }
b0893113   jingsam   :art: add eslint
171
                  ];
7fa943eb   梁灏   init
172
173
              },
              innerDownClasses () {
95436eeb   梁灏   add InputNumber UI
174
                  return `${prefixCls}-handler-down-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-down`;
7fa943eb   梁灏   init
175
176
177
              },
              inputWrapClasses () {
                  return `${prefixCls}-input-wrap`;
95436eeb   梁灏   add InputNumber UI
178
179
180
              },
              inputClasses () {
                  return `${prefixCls}-input`;
7a05b6e5   梁灏   fixed #1810
181
182
183
              },
              precisionValue () {
                  // can not display 1.0
cb2678c4   梁灏   fix InputNumber b...
184
                  return this.precision ? this.currentValue.toFixed(this.precision) : this.currentValue;
ce176e21   梁灏   fixed #3081
185
186
              },
              formatterValue () {
10d29acb   huanghong   InputNumber suppo...
187
                  if (this.formatter && this.precisionValue !== null) {
ce176e21   梁灏   fixed #3081
188
189
190
191
                      return this.formatter(this.precisionValue);
                  } else {
                      return this.precisionValue;
                  }
7fa943eb   梁灏   init
192
193
194
195
196
197
              }
          },
          methods: {
              preventDefault (e) {
                  e.preventDefault();
              },
1ff55186   梁灏   optimize InputNum...
198
199
200
              up (e) {
                  const targetVal = Number(e.target.value);
                  if (this.upDisabled && isNaN(targetVal)) {
7fa943eb   梁灏   init
201
202
                      return false;
                  }
1ff55186   梁灏   optimize InputNum...
203
                  this.changeStep('up', e);
7fa943eb   梁灏   init
204
              },
1ff55186   梁灏   optimize InputNum...
205
206
207
              down (e) {
                  const targetVal = Number(e.target.value);
                  if (this.downDisabled && isNaN(targetVal)) {
7fa943eb   梁灏   init
208
209
                      return false;
                  }
1ff55186   梁灏   optimize InputNum...
210
                  this.changeStep('down', e);
7fa943eb   梁灏   init
211
              },
1ff55186   梁灏   optimize InputNum...
212
              changeStep (type, e) {
cb486838   Sergio Crisostomo   Add readonly prop...
213
                  if (this.disabled || this.readonly) {
7fa943eb   梁灏   init
214
215
216
                      return false;
                  }
  
1ff55186   梁灏   optimize InputNum...
217
                  const targetVal = Number(e.target.value);
c97c42ab   梁灏   support InputNumber
218
                  let val = Number(this.currentValue);
7fa943eb   梁灏   init
219
220
221
222
223
                  const step = Number(this.step);
                  if (isNaN(val)) {
                      return false;
                  }
  
1ff55186   梁灏   optimize InputNum...
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
                  // 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') {
7fa943eb   梁灏   init
242
                      val = addNum(val, step);
1ff55186   梁灏   optimize InputNum...
243
                  } else if (type === 'down') {
7fa943eb   梁灏   init
244
245
246
247
248
                      val = addNum(val, -step);
                  }
                  this.setValue(val);
              },
              setValue (val) {
cb2678c4   梁灏   fix InputNumber b...
249
                  // 如果 step 是小数,且没有设置 precision,是有问题的
815f8354   Sergio Crisostomo   Check if isNaN so...
250
                  if (!isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
cb2678c4   梁灏   fix InputNumber b...
251
  
0b94936a   梁灏   fixed #28
252
                  this.$nextTick(() => {
c97c42ab   梁灏   support InputNumber
253
254
                      this.currentValue = val;
                      this.$emit('input', val);
4a260ed5   梁灏   update InputNumber
255
                      this.$emit('on-change', val);
cd78c9c4   梁灏   some comps suppor...
256
                      this.dispatch('FormItem', 'on-form-change', val);
0b94936a   梁灏   fixed #28
257
                  });
7fa943eb   梁灏   init
258
              },
e7bcd381   angela-1   实现Inputnumber在foc...
259
              focus (event) {
7fa943eb   梁灏   init
260
                  this.focused = true;
e7bcd381   angela-1   实现Inputnumber在foc...
261
                  this.$emit('on-focus', event);
7fa943eb   梁灏   init
262
263
              },
              blur () {
7fa943eb   梁灏   init
264
                  this.focused = false;
a2a18a46   Aresn   Update input-numb...
265
                  this.$emit('on-blur');
7fa943eb   梁灏   init
266
267
268
269
              },
              keyDown (e) {
                  if (e.keyCode === 38) {
                      e.preventDefault();
1ff55186   梁灏   optimize InputNum...
270
                      this.up(e);
7fa943eb   梁灏   init
271
272
                  } else if (e.keyCode === 40) {
                      e.preventDefault();
1ff55186   梁灏   optimize InputNum...
273
                      this.down(e);
7fa943eb   梁灏   init
274
275
276
277
                  }
              },
              change (event) {
                  let val = event.target.value.trim();
ce176e21   梁灏   fixed #3081
278
279
280
                  if (this.parser) {
                      val = this.parser(val);
                  }
7fa943eb   梁灏   init
281
  
8115f0b8   Sergio Crisostomo   fix regex and mak...
282
                  if (event.type == 'input' && val.match(/^\-?\.?$|\.$/)) return; // prevent fire early if decimal. If no more input the change event will fire later
c82e714c   Sergio Crisostomo   call change on in...
283
284
  
                  const {min, max} = this;
8115f0b8   Sergio Crisostomo   fix regex and mak...
285
                  const isEmptyString = val.length === 0;
c82e714c   Sergio Crisostomo   call change on in...
286
                  val = Number(val);
a14d6dd2   Sergio Crisostomo   fix checking when...
287
  
10d29acb   huanghong   InputNumber suppo...
288
289
290
291
                  if(isEmptyString){
                      this.setValue(null);
                      return;
                  }
a14d6dd2   Sergio Crisostomo   fix checking when...
292
293
294
295
                  if (event.type == 'change'){
                      if (val === this.currentValue && val > min && val < max) return; // already fired change for input event
                  }
  
8115f0b8   Sergio Crisostomo   fix regex and mak...
296
                  if (!isNaN(val) && !isEmptyString) {
c97c42ab   梁灏   support InputNumber
297
                      this.currentValue = val;
0b94936a   梁灏   fixed #28
298
  
a892ba6a   Sergio Crisostomo   prevent firing ch...
299
                      if (event.type == 'input' && val < min) return; // prevent fire early in case user is typing a bigger number. Change will handle this otherwise.
7fa943eb   梁灏   init
300
301
302
303
304
305
306
307
                      if (val > max) {
                          this.setValue(max);
                      } else if (val < min) {
                          this.setValue(min);
                      } else {
                          this.setValue(val);
                      }
                  } else {
c97c42ab   梁灏   support InputNumber
308
                      event.target.value = this.currentValue;
7fa943eb   梁灏   init
309
                  }
0b94936a   梁灏   fixed #28
310
311
              },
              changeVal (val) {
c82e714c   Sergio Crisostomo   call change on in...
312
313
                  val = Number(val);
                  if (!isNaN(val)) {
7fa943eb   梁灏   init
314
                      const step = this.step;
0b94936a   梁灏   fixed #28
315
316
317
  
                      this.upDisabled = val + step > this.max;
                      this.downDisabled = val - step < this.min;
7fa943eb   梁灏   init
318
319
320
321
322
                  } else {
                      this.upDisabled = true;
                      this.downDisabled = true;
                  }
              }
0b94936a   梁灏   fixed #28
323
          },
c97c42ab   梁灏   support InputNumber
324
325
          mounted () {
              this.changeVal(this.currentValue);
0b94936a   梁灏   fixed #28
326
327
328
          },
          watch: {
              value (val) {
c97c42ab   梁灏   support InputNumber
329
330
331
                  this.currentValue = val;
              },
              currentValue (val) {
0b94936a   梁灏   fixed #28
332
                  this.changeVal(val);
fa66bfb1   Rijn   add watchers for ...
333
334
335
336
337
338
              },
              min () {
                  this.changeVal(this.currentValue);
              },
              max () {
                  this.changeVal(this.currentValue);
0b94936a   梁灏   fixed #28
339
              }
7fa943eb   梁灏   init
340
          }
b0893113   jingsam   :art: add eslint
341
      };
c7a67856   子凡   fix
342
  </script>