@eturnity/eturnity_reusable_components 8.13.13-EPDM-12459.0 → 8.13.13-qa-16-03-26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -60,7 +60,7 @@
|
|
60
60
|
:show-linear-unit-name="showLinearUnitName"
|
61
61
|
:slot-size="slotSize"
|
62
62
|
:text-align="textAlign"
|
63
|
-
:value="
|
63
|
+
:value="formattedValue"
|
64
64
|
@blur="onInputBlur($event)"
|
65
65
|
@focus="focusInput()"
|
66
66
|
@input="onInput($event)"
|
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
<UnitContainer
|
76
76
|
v-if="unitName && showLinearUnitName && !hasSlot"
|
77
|
-
:has-length="
|
77
|
+
:has-length="hasLength"
|
78
78
|
:is-error="isError"
|
79
79
|
>{{ unitName }}</UnitContainer
|
80
80
|
>
|
@@ -91,7 +91,7 @@
|
|
91
91
|
:disabled="isSelectDisabled"
|
92
92
|
:select-width="`${selectWidth}px`"
|
93
93
|
:show-border="false"
|
94
|
-
@input-change="
|
94
|
+
@input-change="handleSelectChange"
|
95
95
|
>
|
96
96
|
<template #selector>
|
97
97
|
<SelectText>{{ getSelectValue }}</SelectText>
|
@@ -449,8 +449,18 @@
|
|
449
449
|
background-color: ${({ theme }) => theme.colors.grey4};
|
450
450
|
`
|
451
451
|
|
452
|
+
const EVENT_TYPES = {
|
453
|
+
INPUT_FOCUS: 'input-focus',
|
454
|
+
INPUT_CHANGE: 'input-change',
|
455
|
+
INPUT_BLUR: 'input-blur',
|
456
|
+
PRESS_ENTER: 'on-enter-click',
|
457
|
+
INPUT_DRAG: 'on-input-drag',
|
458
|
+
SELECT_CHANGE: 'select-change',
|
459
|
+
}
|
460
|
+
|
452
461
|
export default {
|
453
462
|
name: 'InputNumber',
|
463
|
+
emits: [...Object.values(EVENT_TYPES)],
|
454
464
|
components: {
|
455
465
|
Container,
|
456
466
|
InputContainer,
|
@@ -689,9 +699,10 @@
|
|
689
699
|
},
|
690
700
|
data() {
|
691
701
|
return {
|
692
|
-
textInput: '',
|
693
702
|
isFocused: false,
|
694
703
|
warningIcon: warningIcon,
|
704
|
+
inputValue: null,
|
705
|
+
enteredValue: null,
|
695
706
|
}
|
696
707
|
},
|
697
708
|
computed: {
|
@@ -714,6 +725,14 @@
|
|
714
725
|
|
715
726
|
return item ? item.label : '-'
|
716
727
|
},
|
728
|
+
formattedValue() {
|
729
|
+
return this.isFocused
|
730
|
+
? this.enteredValue
|
731
|
+
: this.formatWithCurrency(this.value)
|
732
|
+
},
|
733
|
+
hasLength() {
|
734
|
+
return this.formattedValue !== null && this.formattedValue.length > 0
|
735
|
+
},
|
717
736
|
},
|
718
737
|
watch: {
|
719
738
|
focus(value) {
|
@@ -724,30 +743,19 @@
|
|
724
743
|
clearInput: function (value) {
|
725
744
|
if (value) {
|
726
745
|
// If the value is typed, then we should clear the textInput on Continue
|
727
|
-
this.
|
746
|
+
this.inputValue = ''
|
747
|
+
this.enteredValue = ''
|
728
748
|
}
|
729
749
|
},
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
}
|
738
|
-
}
|
739
|
-
this.textInput = numberToString({
|
740
|
-
value: this.defaultNumber,
|
741
|
-
numberPrecision: this.numberPrecision,
|
742
|
-
minDecimals: this.minDecimals,
|
743
|
-
})
|
744
|
-
} else if (this.minNumber !== null) {
|
745
|
-
this.textInput = numberToString({
|
746
|
-
value: this.minNumber,
|
747
|
-
numberPrecision: this.numberPrecision,
|
748
|
-
minDecimals: this.minDecimals,
|
749
|
-
})
|
750
|
-
}
|
750
|
+
value: {
|
751
|
+
immediate: true,
|
752
|
+
handler(val) {
|
753
|
+
if (this.value !== this.inputValue && !Number.isNaN(this.value)) {
|
754
|
+
this.inputValue = this.value
|
755
|
+
this.enteredValue = this.value
|
756
|
+
}
|
757
|
+
},
|
758
|
+
},
|
751
759
|
},
|
752
760
|
mounted() {
|
753
761
|
if (this.focus) {
|
@@ -786,29 +794,28 @@
|
|
786
794
|
}
|
787
795
|
},
|
788
796
|
onEnterPress() {
|
789
|
-
this.$emit(
|
797
|
+
this.$emit(EVENT_TYPES.PRESS_ENTER)
|
790
798
|
this.$refs.inputField1.$el.blur()
|
791
799
|
},
|
792
|
-
onChangeHandler(
|
793
|
-
if (isNaN(
|
794
|
-
|
800
|
+
onChangeHandler(value) {
|
801
|
+
if (isNaN(value) || value === '') {
|
802
|
+
value = this.defaultNumber
|
795
803
|
? this.defaultNumber
|
796
804
|
: this.minNumber || this.minNumber === 0
|
797
805
|
? this.minNumber
|
798
|
-
:
|
806
|
+
: value
|
799
807
|
}
|
800
808
|
if (!this.allowNegative) {
|
801
|
-
|
809
|
+
value = Math.abs(value)
|
802
810
|
}
|
803
|
-
|
811
|
+
value = parseFloat(value)
|
804
812
|
// Need to return an integer rather than a string
|
805
|
-
|
813
|
+
return parseFloat(value)
|
806
814
|
},
|
807
|
-
onEvaluateCode(
|
815
|
+
onEvaluateCode(value) {
|
808
816
|
// function to perform math on the code
|
809
817
|
// filter the string in case of any malicious content
|
810
|
-
|
811
|
-
let filtered = val.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
818
|
+
let filtered = value.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
812
819
|
filtered = filtered.split(/([-+*/()])/)
|
813
820
|
let formatted = filtered.map((item) => {
|
814
821
|
if (
|
@@ -866,48 +873,29 @@
|
|
866
873
|
return array
|
867
874
|
},
|
868
875
|
onInput(event) {
|
869
|
-
|
876
|
+
this.enteredValue = event.target.value
|
877
|
+
if (!this.isFocused || this.enteredValue === this.inputValue) {
|
870
878
|
return
|
871
879
|
}
|
872
|
-
if (event.target.value === '') {
|
873
|
-
this.$emit('on-input', '')
|
874
|
-
}
|
875
880
|
let evaluatedVal
|
876
881
|
try {
|
877
|
-
evaluatedVal = this.onEvaluateCode(
|
882
|
+
evaluatedVal = this.onEvaluateCode(String(this.enteredValue))
|
878
883
|
} finally {
|
879
|
-
|
880
|
-
|
884
|
+
this.inputValue = this.onChangeHandler(evaluatedVal)
|
885
|
+
|
886
|
+
if (this.isFocused && typeof this.enteredValue !== 'number') {
|
887
|
+
this.$emit(EVENT_TYPES.INPUT_CHANGE, this.inputValue)
|
881
888
|
}
|
882
889
|
}
|
883
890
|
this.textInput = evaluatedVal
|
884
891
|
},
|
885
892
|
onInputBlur(e) {
|
886
893
|
this.isFocused = false
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
value:
|
893
|
-
evaluatedInput && value.length
|
894
|
-
? evaluatedInput
|
895
|
-
: this.defaultNumber
|
896
|
-
? this.defaultNumber
|
897
|
-
: this.minNumber,
|
898
|
-
numberPrecision: this.numberPrecision,
|
899
|
-
minDecimals: this.minDecimals,
|
900
|
-
})
|
901
|
-
}
|
902
|
-
let adjustedMinValue =
|
903
|
-
evaluatedInput && evaluatedInput.length
|
904
|
-
? evaluatedInput
|
905
|
-
: this.defaultNumber
|
906
|
-
? this.defaultNumber
|
907
|
-
: this.minNumber || this.minNumber === 0
|
908
|
-
? this.minNumber
|
909
|
-
: ''
|
910
|
-
this.$emit('input-blur', adjustedMinValue)
|
894
|
+
this.enteredValue = this.inputValue
|
895
|
+
this.$emit(
|
896
|
+
EVENT_TYPES.INPUT_BLUR,
|
897
|
+
this.onEvaluateCode(String(this.inputValue))
|
898
|
+
)
|
911
899
|
},
|
912
900
|
focusInput() {
|
913
901
|
if (this.disabled) {
|
@@ -917,7 +905,7 @@
|
|
917
905
|
this.$nextTick(() => {
|
918
906
|
this.$refs.inputField1.$el.select()
|
919
907
|
})
|
920
|
-
this.$emit(
|
908
|
+
this.$emit(EVENT_TYPES.INPUT_FOCUS, this.inputValue)
|
921
909
|
},
|
922
910
|
blurInput() {
|
923
911
|
if (this.disabled) {
|
@@ -937,7 +925,7 @@
|
|
937
925
|
: this.minNumber || this.minNumber === 0
|
938
926
|
? this.minNumber
|
939
927
|
: ''
|
940
|
-
if (
|
928
|
+
if (adjustedMinValue || adjustedMinValue === 0) {
|
941
929
|
let input = this.numberToStringEnabled
|
942
930
|
? numberToString({
|
943
931
|
value: adjustedMinValue,
|
@@ -950,6 +938,8 @@
|
|
950
938
|
return input + ' ' + unit
|
951
939
|
} else if (!adjustedMinValue && adjustedMinValue !== 0) {
|
952
940
|
return ''
|
941
|
+
} else if (this.isFocused) {
|
942
|
+
return value
|
953
943
|
} else {
|
954
944
|
return this.numberToStringEnabled
|
955
945
|
? numberToString({
|
@@ -970,14 +960,7 @@
|
|
970
960
|
e.preventDefault()
|
971
961
|
let value = parseFloat(this.value || 0)
|
972
962
|
value += parseFloat(this.interactionStep) * parseInt(e.movementX)
|
973
|
-
this.$emit(
|
974
|
-
|
975
|
-
this.textInput = numberToString({
|
976
|
-
value: value && value.length ? value : this.minNumber,
|
977
|
-
numberPrecision: this.numberPrecision,
|
978
|
-
minDecimals: this.minDecimals,
|
979
|
-
})
|
980
|
-
//this.value=value
|
963
|
+
this.$emit(EVENT_TYPES.INPUT_DRAG, this.onChangeHandler(value))
|
981
964
|
},
|
982
965
|
stopInteract(e) {
|
983
966
|
e.preventDefault()
|
@@ -985,6 +968,9 @@
|
|
985
968
|
window.removeEventListener('mouseup', this.stopInteract, false)
|
986
969
|
this.blurInput()
|
987
970
|
},
|
971
|
+
handleSelectChange(value) {
|
972
|
+
this.$emit(EVENT_TYPES.SELECT_CHANGE, value)
|
973
|
+
},
|
988
974
|
},
|
989
975
|
}
|
990
976
|
</script>
|
@@ -94,7 +94,7 @@ export const stringToNumber = ({
|
|
94
94
|
|
95
95
|
export const numberToString = ({ value, numberPrecision, minDecimals }) => {
|
96
96
|
const minimumRounding = minDecimals ? minDecimals : 0
|
97
|
-
value = parseFloat(value)
|
97
|
+
value = !Number.isNaN(parseFloat(value)) ? parseFloat(value) : 0
|
98
98
|
return value.toLocaleString(langForLocaleString(), {
|
99
99
|
minimumFractionDigits: minimumRounding, // removing this for now. Why do we need this to be a minimum amount?
|
100
100
|
maximumFractionDigits:
|