Blame view

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