Blame view

src/components/input-number/input-number.vue 9.05 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"
f15c216a   丁强   Input 组件增加autofoc...
23
                  :autofocus="autofocus"
7fa943eb   梁灏   init
24
25
26
27
                  @focus="focus"
                  @blur="blur"
                  @keydown.stop="keyDown"
                  @change="change"
7959adf7   梁灏   fixed #862
28
                  :name="name"
7a05b6e5   梁灏   fixed #1810
29
                  :value="precisionValue">
7fa943eb   梁灏   init
30
31
32
33
34
          </div>
      </div>
  </template>
  <script>
      import { oneOf } from '../../utils/assist';
cd78c9c4   梁灏   some comps suppor...
35
      import Emitter from '../../mixins/emitter';
7fa943eb   梁灏   init
36
37
  
      const prefixCls = 'ivu-input-number';
95436eeb   梁灏   add InputNumber UI
38
      const iconPrefixCls = 'ivu-icon';
7fa943eb   梁灏   init
39
40
  
      function isValueNumber (value) {
8df29435   Rijn   changed regular e...
41
          return (/(^-?[0-9]+\.{1}\d+$)|(^-?[1-9][0-9]*$)|(^-?0{1}$)/).test(value + '');
7fa943eb   梁灏   init
42
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
100
101
              },
              name: {
                  type: String
7a05b6e5   梁灏   fixed #1810
102
103
104
              },
              precision: {
                  type: Number
acb79ba3   梁灏   fixed #433
105
106
107
              },
              elementId: {
                  type: String
7fa943eb   梁灏   init
108
109
110
111
112
113
              }
          },
          data () {
              return {
                  focused: false,
                  upDisabled: false,
c97c42ab   梁灏   support InputNumber
114
115
                  downDisabled: false,
                  currentValue: this.value
b0893113   jingsam   :art: add eslint
116
              };
7fa943eb   梁灏   init
117
118
119
120
121
122
123
124
125
126
          },
          computed: {
              wrapClasses () {
                  return [
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-${this.size}`]: !!this.size,
                          [`${prefixCls}-disabled`]: this.disabled,
                          [`${prefixCls}-focused`]: this.focused
                      }
b0893113   jingsam   :art: add eslint
127
                  ];
7fa943eb   梁灏   init
128
129
130
131
132
133
134
135
136
137
138
              },
              handlerClasses () {
                  return `${prefixCls}-handler-wrap`;
              },
              upClasses () {
                  return [
                      `${prefixCls}-handler`,
                      `${prefixCls}-handler-up`,
                      {
                          [`${prefixCls}-handler-up-disabled`]: this.upDisabled
                      }
b0893113   jingsam   :art: add eslint
139
                  ];
7fa943eb   梁灏   init
140
141
              },
              innerUpClasses () {
95436eeb   梁灏   add InputNumber UI
142
                  return `${prefixCls}-handler-up-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-up`;
7fa943eb   梁灏   init
143
144
145
146
147
148
149
150
              },
              downClasses () {
                  return [
                      `${prefixCls}-handler`,
                      `${prefixCls}-handler-down`,
                      {
                          [`${prefixCls}-handler-down-disabled`]: this.downDisabled
                      }
b0893113   jingsam   :art: add eslint
151
                  ];
7fa943eb   梁灏   init
152
153
              },
              innerDownClasses () {
95436eeb   梁灏   add InputNumber UI
154
                  return `${prefixCls}-handler-down-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-down`;
7fa943eb   梁灏   init
155
156
157
              },
              inputWrapClasses () {
                  return `${prefixCls}-input-wrap`;
95436eeb   梁灏   add InputNumber UI
158
159
160
              },
              inputClasses () {
                  return `${prefixCls}-input`;
7a05b6e5   梁灏   fixed #1810
161
162
163
164
              },
              precisionValue () {
                  // can not display 1.0
                  return this.currentValue.toFixed(this.precision);
7fa943eb   梁灏   init
165
166
167
168
169
170
              }
          },
          methods: {
              preventDefault (e) {
                  e.preventDefault();
              },
1ff55186   梁灏   optimize InputNum...
171
172
173
              up (e) {
                  const targetVal = Number(e.target.value);
                  if (this.upDisabled && isNaN(targetVal)) {
7fa943eb   梁灏   init
174
175
                      return false;
                  }
1ff55186   梁灏   optimize InputNum...
176
                  this.changeStep('up', e);
7fa943eb   梁灏   init
177
              },
1ff55186   梁灏   optimize InputNum...
178
179
180
              down (e) {
                  const targetVal = Number(e.target.value);
                  if (this.downDisabled && isNaN(targetVal)) {
7fa943eb   梁灏   init
181
182
                      return false;
                  }
1ff55186   梁灏   optimize InputNum...
183
                  this.changeStep('down', e);
7fa943eb   梁灏   init
184
              },
1ff55186   梁灏   optimize InputNum...
185
              changeStep (type, e) {
7fa943eb   梁灏   init
186
187
188
189
                  if (this.disabled) {
                      return false;
                  }
  
1ff55186   梁灏   optimize InputNum...
190
                  const targetVal = Number(e.target.value);
c97c42ab   梁灏   support InputNumber
191
                  let val = Number(this.currentValue);
7fa943eb   梁灏   init
192
193
194
195
196
                  const step = Number(this.step);
                  if (isNaN(val)) {
                      return false;
                  }
  
1ff55186   梁灏   optimize InputNum...
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
                  // 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
215
                      val = addNum(val, step);
1ff55186   梁灏   optimize InputNum...
216
                  } else if (type === 'down') {
7fa943eb   梁灏   init
217
218
219
220
221
                      val = addNum(val, -step);
                  }
                  this.setValue(val);
              },
              setValue (val) {
7a05b6e5   梁灏   fixed #1810
222
                  val = Number(Number(val).toFixed(this.precision));
0b94936a   梁灏   fixed #28
223
                  this.$nextTick(() => {
c97c42ab   梁灏   support InputNumber
224
225
                      this.currentValue = val;
                      this.$emit('input', val);
4a260ed5   梁灏   update InputNumber
226
                      this.$emit('on-change', val);
cd78c9c4   梁灏   some comps suppor...
227
                      this.dispatch('FormItem', 'on-form-change', val);
0b94936a   梁灏   fixed #28
228
                  });
7fa943eb   梁灏   init
229
230
231
232
233
234
235
236
237
238
              },
              focus () {
                  this.focused = true;
              },
              blur () {
                  this.focused = false;
              },
              keyDown (e) {
                  if (e.keyCode === 38) {
                      e.preventDefault();
1ff55186   梁灏   optimize InputNum...
239
                      this.up(e);
7fa943eb   梁灏   init
240
241
                  } else if (e.keyCode === 40) {
                      e.preventDefault();
1ff55186   梁灏   optimize InputNum...
242
                      this.down(e);
7fa943eb   梁灏   init
243
244
245
246
247
248
249
250
251
252
                  }
              },
              change (event) {
                  let val = event.target.value.trim();
  
                  const max = this.max;
                  const min = this.min;
  
                  if (isValueNumber(val)) {
                      val = Number(val);
c97c42ab   梁灏   support InputNumber
253
                      this.currentValue = val;
0b94936a   梁灏   fixed #28
254
  
7fa943eb   梁灏   init
255
256
257
258
259
260
261
262
                      if (val > max) {
                          this.setValue(max);
                      } else if (val < min) {
                          this.setValue(min);
                      } else {
                          this.setValue(val);
                      }
                  } else {
c97c42ab   梁灏   support InputNumber
263
                      event.target.value = this.currentValue;
7fa943eb   梁灏   init
264
                  }
0b94936a   梁灏   fixed #28
265
266
              },
              changeVal (val) {
7fa943eb   梁灏   init
267
268
269
                  if (isValueNumber(val) || val === 0) {
                      val = Number(val);
                      const step = this.step;
0b94936a   梁灏   fixed #28
270
271
272
  
                      this.upDisabled = val + step > this.max;
                      this.downDisabled = val - step < this.min;
7fa943eb   梁灏   init
273
274
275
276
277
                  } else {
                      this.upDisabled = true;
                      this.downDisabled = true;
                  }
              }
0b94936a   梁灏   fixed #28
278
          },
c97c42ab   梁灏   support InputNumber
279
280
          mounted () {
              this.changeVal(this.currentValue);
0b94936a   梁灏   fixed #28
281
282
283
          },
          watch: {
              value (val) {
c97c42ab   梁灏   support InputNumber
284
285
286
                  this.currentValue = val;
              },
              currentValue (val) {
0b94936a   梁灏   fixed #28
287
                  this.changeVal(val);
fa66bfb1   Rijn   add watchers for ...
288
289
290
291
292
293
              },
              min () {
                  this.changeVal(this.currentValue);
              },
              max () {
                  this.changeVal(this.currentValue);
0b94936a   梁灏   fixed #28
294
              }
7fa943eb   梁灏   init
295
          }
b0893113   jingsam   :art: add eslint
296
      };
c7a67856   子凡   fix
297
  </script>