-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathvue-numeric.vue
379 lines (340 loc) · 8.06 KB
/
vue-numeric.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<template>
<input
:placeholder="placeholder"
@blur="onBlurHandler"
@input="onInputHandler"
@focus="onFocusHandler"
ref="numeric"
type="tel"
:value="amount"
v-if="!readOnly"
>
<span
v-else
ref="readOnly"
>{{ amount }}</span>
</template>
<script>
import accounting from 'accounting-js'
export default {
name: 'VueNumeric',
props: {
/**
* Currency symbol.
*/
currency: {
type: String,
default: '',
required: false
},
/**
* Maximum value allowed.
*/
max: {
type: Number,
default: Number.MAX_SAFE_INTEGER || 9007199254740991,
required: false,
},
/**
* Minimum value allowed.
*/
min: {
type: Number,
default: Number.MIN_SAFE_INTEGER || -9007199254740991,
required: false
},
/**
* Enable/Disable minus value.
*/
minus: {
type: Boolean,
default: false,
required: false
},
/**
* Input placeholder.
*/
placeholder: {
type: String,
default: '',
required: false
},
/**
* Value when the input is empty.
*/
emptyValue: {
type: [Number, String],
default: '',
required: false
},
/**
* Number of decimals.
* Decimals symbol are the opposite of separator symbol.
*/
precision: {
type: Number,
default: 0,
required: false
},
/**
* Thousand separator type.
* Separator props accept either . or , (default).
*/
separator: {
type: String,
default: ',',
required: false
},
/**
* Forced thousand separator.
* Accepts any string.
*/
thousandSeparator: {
default: undefined,
required: false,
type: String
},
/**
* Forced decimal separator.
* Accepts any string.
*/
decimalSeparator: {
default: undefined,
required: false,
type: String
},
/**
* The output type used for v-model.
* It can either be String or Number (default).
*/
outputType: {
required: false,
type: String,
default: 'Number'
},
/**
* v-model value.
*/
value: {
type: [Number, String],
default: 0,
required: true
},
/**
* Hide input and show value in text only.
*/
readOnly: {
type: Boolean,
default: false,
required: false
},
/**
* Class for the span tag when readOnly props is true.
*/
readOnlyClass: {
type: String,
default: '',
required: false
},
/**
* Position of currency symbol
* Symbol position props accept either 'suffix' or 'prefix' (default).
*/
currencySymbolPosition: {
type: String,
default: 'prefix',
required: false
},
/**
* Function to process input value before format.
*/
inputFilter: {
type: Function,
default: null,
required: false,
}
},
data: () => ({
amount: ''
}),
computed: {
/**
* Number type of formatted value.
* @return {Number}
*/
amountNumber () {
return this.unformat(this.amount)
},
/**
* Number type of value props.
* @return {Number}
*/
valueNumber () {
return this.unformat(this.value)
},
/**
* Define decimal separator based on separator props.
* @return {String} '.' or ','
*/
decimalSeparatorSymbol () {
if (typeof this.decimalSeparator !== 'undefined') return this.decimalSeparator
if (this.separator === ',') return '.'
return ','
},
/**
* Define thousand separator based on separator props.
* @return {String} '.' or ','
*/
thousandSeparatorSymbol () {
if (typeof this.thousandSeparator !== 'undefined') return this.thousandSeparator
if (this.separator === '.') return '.'
if (this.separator === 'space') return ' '
return ','
},
/**
* Define format position for currency symbol and value.
* @return {String} format
*/
symbolPosition () {
if (!this.currency) return '%v'
return this.currencySymbolPosition === 'suffix' ? '%v %s' : '%s %v'
}
},
watch: {
/**
* Watch for value change from other input with same v-model.
* @param {Number} newValue
*/
valueNumber (newValue) {
if (this.$refs.numeric !== document.activeElement) {
this.amount = this.format(newValue)
}
},
/**
* When readOnly is true, replace the span tag class.
* @param {Boolean} newValue
* @param {Boolean} oldValue
*/
readOnly (newValue, oldValue) {
if (oldValue === false && newValue === true) {
this.$nextTick(() => {
this.$refs.readOnly.className = this.readOnlyClass
})
}
},
/**
* Immediately reflect separator changes
*/
separator () {
this.process(this.valueNumber)
this.amount = this.format(this.valueNumber)
},
/**
* Immediately reflect currency changes
*/
currency () {
this.process(this.valueNumber)
this.amount = this.format(this.valueNumber)
},
/**
* Immediately reflect precision changes
*/
precision () {
this.process(this.valueNumber)
this.amount = this.format(this.valueNumber)
}
},
mounted () {
// Set default value props when placeholder undefined.
if (!this.placeholder) {
this.process(this.valueNumber)
this.amount = this.format(this.valueNumber)
// In case of delayed props value.
setTimeout(() => {
this.process(this.valueNumber)
this.amount = this.format(this.valueNumber)
}, 500)
}
// Set read-only span element's class
if (this.readOnly) this.$refs.readOnly.className = this.readOnlyClass
},
methods: {
/**
* Handle blur event.
* @param {Object} e
*/
onBlurHandler (e) {
this.$emit('blur', e)
this.amount = this.format(this.valueNumber)
},
/**
* Handle focus event.
* @param {Object} e
*/
onFocusHandler (e) {
this.$emit('focus', e)
if (this.valueNumber === 0) {
this.amount = null
} else {
this.amount = accounting.formatMoney(this.valueNumber, {
symbol: '',
format: '%v',
thousand: '',
decimal: this.decimalSeparatorSymbol,
precision: Number(this.precision)
})
}
},
/**
* Handle input event.
*/
onInputHandler (e) {
this.amount = this.inputFilter instanceof Function && this.inputFilter
? this.inputFilter(e.target.value) : e.target.value
this.process(this.amountNumber)
},
/**
* Validate value before update the component.
* @param {Number} value
*/
process (value) {
if (value >= this.max) this.update(this.max)
if (value <= this.min) this.update(this.min)
if (value > this.min && value < this.max) this.update(value)
if (!this.minus && value < 0) this.min >= 0 ? this.update(this.min) : this.update(0)
},
/**
* Update parent component model value.
* @param {Number} value
*/
update (value) {
const fixedValue = accounting.toFixed(value, this.precision)
const output = this.outputType.toLowerCase() === 'string' ? fixedValue : Number(fixedValue)
this.$emit('input', output)
},
/**
* Format value using symbol and separator.
* @param {Number} value
* @return {String}
*/
format (value) {
return accounting.formatMoney(value, {
symbol: this.currency,
format: this.symbolPosition,
precision: Number(this.precision),
decimal: this.decimalSeparatorSymbol,
thousand: this.thousandSeparatorSymbol
})
},
/**
* Remove symbol and separator.
* @param {Number} value
* @return {Number}
*/
unformat (value) {
const toUnformat = typeof value === 'string' && value === '' ? this.emptyValue : value
return accounting.unformat(toUnformat, this.decimalSeparatorSymbol)
}
}
}
</script>