primevue-mirror/components/inputnumber/InputNumber.vue

1207 lines
42 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<span :class="containerClass">
2022-09-14 11:26:01 +00:00
<INInputText
ref="input"
:id="inputId"
class="p-inputnumber-input"
role="spinbutton"
:class="inputClass"
:style="inputStyle"
:value="formattedValue"
:aria-valuemin="min"
:aria-valuemax="max"
:aria-valuenow="modelValue"
:disabled="disabled"
:readonly="readonly"
:placeholder="placeholder"
:aria-labelledby="ariaLabelledby"
:aria-label="ariaLabel"
@input="onUserInput"
@keydown="onInputKeyDown"
@keypress="onInputKeyPress"
@paste="onPaste"
@click="onInputClick"
@focus="onInputFocus"
@blur="onInputBlur"
v-bind="inputProps"
/>
<span v-if="showButtons && buttonLayout === 'stacked'" class="p-inputnumber-button-group">
2022-09-06 12:03:37 +00:00
<INButton :class="upButtonClass" :icon="incrementButtonIcon" v-on="upButtonListeners" :disabled="disabled" :tabindex="-1" aria-hidden="true" v-bind="incrementButtonProps" />
<INButton :class="downButtonClass" :icon="decrementButtonIcon" v-on="downButtonListeners" :disabled="disabled" :tabindex="-1" aria-hidden="true" v-bind="decrementButtonProps" />
</span>
2022-09-14 11:26:01 +00:00
<INButton v-if="showButtons && buttonLayout !== 'stacked'" :class="upButtonClass" :icon="incrementButtonIcon" v-on="upButtonListeners" :disabled="disabled" :tabindex="-1" aria-hidden="true" v-bind="incrementButtonProps" />
<INButton v-if="showButtons && buttonLayout !== 'stacked'" :class="downButtonClass" :icon="decrementButtonIcon" v-on="downButtonListeners" :disabled="disabled" :tabindex="-1" aria-hidden="true" v-bind="decrementButtonProps" />
2022-09-06 12:03:37 +00:00
</span>
</template>
<script>
import Button from 'primevue/button';
2022-12-08 11:04:25 +00:00
import InputText from 'primevue/inputtext';
import { DomHandler } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'InputNumber',
emits: ['update:modelValue', 'input', 'focus', 'blur'],
props: {
modelValue: {
type: Number,
default: null
},
format: {
type: Boolean,
default: true
},
showButtons: {
type: Boolean,
default: false
},
buttonLayout: {
type: String,
default: 'stacked'
},
incrementButtonClass: {
type: String,
2022-09-14 11:26:01 +00:00
default: null
2022-09-06 12:03:37 +00:00
},
decrementButtonClass: {
type: String,
2022-09-14 11:26:01 +00:00
default: null
2022-09-06 12:03:37 +00:00
},
incrementButtonIcon: {
type: String,
2022-09-14 11:26:01 +00:00
default: 'pi pi-angle-up'
2022-09-06 12:03:37 +00:00
},
decrementButtonIcon: {
type: String,
2022-09-14 11:26:01 +00:00
default: 'pi pi-angle-down'
2022-09-06 12:03:37 +00:00
},
locale: {
type: String,
default: undefined
},
localeMatcher: {
type: String,
default: undefined
},
mode: {
type: String,
default: 'decimal'
},
prefix: {
type: String,
default: null
},
suffix: {
type: String,
default: null
},
currency: {
type: String,
default: undefined
},
currencyDisplay: {
type: String,
default: undefined
},
useGrouping: {
type: Boolean,
default: true
},
minFractionDigits: {
type: Number,
default: undefined
},
maxFractionDigits: {
type: Number,
default: undefined
},
min: {
type: Number,
default: null
},
max: {
type: Number,
default: null
},
step: {
type: Number,
default: 1
},
allowEmpty: {
type: Boolean,
default: true
},
2022-12-08 11:04:25 +00:00
highlightOnFocus: {
type: Boolean,
default: false
},
2022-09-06 12:03:37 +00:00
readonly: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: null
},
2022-09-14 11:26:01 +00:00
inputId: {
type: String,
default: null
},
inputClass: {
type: String,
default: null
},
inputStyle: {
type: null,
default: null
},
inputProps: {
type: null,
default: null
},
incrementButtonProps: {
type: null,
default: null
},
decrementButtonProps: {
type: null,
default: null
},
2022-09-06 12:03:37 +00:00
'aria-labelledby': {
type: String,
2022-09-14 11:26:01 +00:00
default: null
2022-09-06 12:03:37 +00:00
},
'aria-label': {
type: String,
default: null
}
},
numberFormat: null,
_numeral: null,
_decimal: null,
_group: null,
_minusSign: null,
_currency: null,
_suffix: null,
_prefix: null,
_index: null,
groupChar: '',
isSpecialChar: null,
prefixChar: null,
suffixChar: null,
timer: null,
data() {
return {
d_modelValue: this.modelValue,
focused: false
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
},
watch: {
modelValue(newValue) {
this.d_modelValue = newValue;
},
2022-09-14 11:26:01 +00:00
locale(newValue, oldValue) {
2022-09-06 12:03:37 +00:00
this.updateConstructParser(newValue, oldValue);
},
localeMatcher(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
mode(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
currency(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
currencyDisplay(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
useGrouping(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
minFractionDigits(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
maxFractionDigits(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
suffix(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
},
prefix(newValue, oldValue) {
this.updateConstructParser(newValue, oldValue);
}
},
created() {
this.constructParser();
},
methods: {
getOptions() {
return {
localeMatcher: this.localeMatcher,
style: this.mode,
currency: this.currency,
currencyDisplay: this.currencyDisplay,
useGrouping: this.useGrouping,
minimumFractionDigits: this.minFractionDigits,
maximumFractionDigits: this.maxFractionDigits
};
},
constructParser() {
this.numberFormat = new Intl.NumberFormat(this.locale, this.getOptions());
2022-09-14 11:26:01 +00:00
const numerals = [...new Intl.NumberFormat(this.locale, { useGrouping: false }).format(9876543210)].reverse();
2022-09-06 12:03:37 +00:00
const index = new Map(numerals.map((d, i) => [d, i]));
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._numeral = new RegExp(`[${numerals.join('')}]`, 'g');
this._group = this.getGroupingExpression();
this._minusSign = this.getMinusSignExpression();
this._currency = this.getCurrencyExpression();
this._decimal = this.getDecimalExpression();
this._suffix = this.getSuffixExpression();
this._prefix = this.getPrefixExpression();
2022-09-14 11:26:01 +00:00
this._index = (d) => index.get(d);
2022-09-06 12:03:37 +00:00
},
updateConstructParser(newValue, oldValue) {
if (newValue !== oldValue) {
this.constructParser();
}
},
escapeRegExp(text) {
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
},
getDecimalExpression() {
2022-09-14 11:26:01 +00:00
const formatter = new Intl.NumberFormat(this.locale, { ...this.getOptions(), useGrouping: false });
2022-09-06 12:03:37 +00:00
return new RegExp(`[${formatter.format(1.1).replace(this._currency, '').trim().replace(this._numeral, '')}]`, 'g');
},
getGroupingExpression() {
2022-09-14 11:26:01 +00:00
const formatter = new Intl.NumberFormat(this.locale, { useGrouping: true });
2022-09-06 12:03:37 +00:00
this.groupChar = formatter.format(1000000).trim().replace(this._numeral, '').charAt(0);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return new RegExp(`[${this.groupChar}]`, 'g');
},
getMinusSignExpression() {
2022-09-14 11:26:01 +00:00
const formatter = new Intl.NumberFormat(this.locale, { useGrouping: false });
2022-09-06 12:03:37 +00:00
return new RegExp(`[${formatter.format(-1).trim().replace(this._numeral, '')}]`, 'g');
},
getCurrencyExpression() {
if (this.currency) {
2022-09-14 11:26:01 +00:00
const formatter = new Intl.NumberFormat(this.locale, { style: 'currency', currency: this.currency, currencyDisplay: this.currencyDisplay, minimumFractionDigits: 0, maximumFractionDigits: 0 });
2022-09-06 12:03:37 +00:00
return new RegExp(`[${formatter.format(1).replace(/\s/g, '').replace(this._numeral, '').replace(this._group, '')}]`, 'g');
}
2022-09-14 11:26:01 +00:00
return new RegExp(`[]`, 'g');
2022-09-06 12:03:37 +00:00
},
getPrefixExpression() {
if (this.prefix) {
this.prefixChar = this.prefix;
2022-09-14 11:26:01 +00:00
} else {
const formatter = new Intl.NumberFormat(this.locale, { style: this.mode, currency: this.currency, currencyDisplay: this.currencyDisplay });
2022-09-06 12:03:37 +00:00
this.prefixChar = formatter.format(1).split('1')[0];
}
2022-09-14 11:26:01 +00:00
return new RegExp(`${this.escapeRegExp(this.prefixChar || '')}`, 'g');
2022-09-06 12:03:37 +00:00
},
getSuffixExpression() {
if (this.suffix) {
this.suffixChar = this.suffix;
2022-09-14 11:26:01 +00:00
} else {
const formatter = new Intl.NumberFormat(this.locale, { style: this.mode, currency: this.currency, currencyDisplay: this.currencyDisplay, minimumFractionDigits: 0, maximumFractionDigits: 0 });
2022-09-06 12:03:37 +00:00
this.suffixChar = formatter.format(1).split('1')[1];
}
2022-09-14 11:26:01 +00:00
return new RegExp(`${this.escapeRegExp(this.suffixChar || '')}`, 'g');
2022-09-06 12:03:37 +00:00
},
formatValue(value) {
if (value != null) {
2022-09-14 11:26:01 +00:00
if (value === '-') {
// Minus sign
2022-09-06 12:03:37 +00:00
return value;
}
if (this.format) {
let formatter = new Intl.NumberFormat(this.locale, this.getOptions());
let formattedValue = formatter.format(value);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.prefix) {
formattedValue = this.prefix + formattedValue;
}
if (this.suffix) {
formattedValue = formattedValue + this.suffix;
}
return formattedValue;
}
return value.toString();
}
return '';
},
parseValue(text) {
let filteredText = text
2022-09-14 11:26:01 +00:00
.replace(this._suffix, '')
.replace(this._prefix, '')
.trim()
.replace(/\s/g, '')
.replace(this._currency, '')
.replace(this._group, '')
.replace(this._minusSign, '-')
.replace(this._decimal, '.')
.replace(this._numeral, this._index);
2022-09-06 12:03:37 +00:00
if (filteredText) {
2022-09-14 11:26:01 +00:00
if (filteredText === '-')
// Minus sign
2022-09-06 12:03:37 +00:00
return filteredText;
let parsedValue = +filteredText;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return isNaN(parsedValue) ? null : parsedValue;
}
return null;
},
repeat(event, interval, dir) {
if (this.readonly) {
return;
}
let i = interval || 500;
this.clearTimer();
this.timer = setTimeout(() => {
this.repeat(event, 40, dir);
}, i);
this.spin(event, dir);
},
spin(event, dir) {
if (this.$refs.input) {
let step = this.step * dir;
let currentValue = this.parseValue(this.$refs.input.$el.value) || 0;
let newValue = this.validateValue(currentValue + step);
this.updateInput(newValue, null, 'spin');
this.updateModel(event, newValue);
this.handleOnInput(event, currentValue, newValue);
}
},
onUpButtonMouseDown(event) {
if (!this.disabled) {
this.$refs.input.$el.focus();
this.repeat(event, null, 1);
event.preventDefault();
}
},
onUpButtonMouseUp() {
if (!this.disabled) {
this.clearTimer();
}
},
onUpButtonMouseLeave() {
if (!this.disabled) {
this.clearTimer();
}
},
onUpButtonKeyUp() {
if (!this.disabled) {
this.clearTimer();
}
},
onUpButtonKeyDown(event) {
if (event.keyCode === 32 || event.keyCode === 13) {
this.repeat(event, null, 1);
}
},
onDownButtonMouseDown(event) {
if (!this.disabled) {
this.$refs.input.$el.focus();
this.repeat(event, null, -1);
event.preventDefault();
}
},
onDownButtonMouseUp() {
if (!this.disabled) {
this.clearTimer();
}
},
onDownButtonMouseLeave() {
if (!this.disabled) {
this.clearTimer();
}
},
onDownButtonKeyUp() {
if (!this.disabled) {
this.clearTimer();
}
},
onDownButtonKeyDown(event) {
if (event.keyCode === 32 || event.keyCode === 13) {
this.repeat(event, null, -1);
}
},
onUserInput() {
if (this.isSpecialChar) {
this.$refs.input.$el.value = this.lastValue;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.isSpecialChar = false;
},
onInputKeyDown(event) {
if (this.readonly) {
return;
}
this.lastValue = event.target.value;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (event.shiftKey || event.altKey) {
this.isSpecialChar = true;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return;
}
let selectionStart = event.target.selectionStart;
let selectionEnd = event.target.selectionEnd;
let inputValue = event.target.value;
let newValueStr = null;
if (event.altKey) {
event.preventDefault();
}
2022-12-08 11:04:25 +00:00
switch (event.code) {
case 'ArrowUp':
2022-09-06 12:03:37 +00:00
this.spin(event, 1);
event.preventDefault();
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'ArrowDown':
2022-09-06 12:03:37 +00:00
this.spin(event, -1);
event.preventDefault();
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'ArrowLeft':
2022-09-06 12:03:37 +00:00
if (!this.isNumeralChar(inputValue.charAt(selectionStart - 1))) {
event.preventDefault();
}
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'ArrowRight':
2022-09-06 12:03:37 +00:00
if (!this.isNumeralChar(inputValue.charAt(selectionStart))) {
event.preventDefault();
}
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'Tab':
case 'Enter':
2022-09-06 12:03:37 +00:00
newValueStr = this.validateValue(this.parseValue(inputValue));
this.$refs.input.$el.value = this.formatValue(newValueStr);
this.$refs.input.$el.setAttribute('aria-valuenow', newValueStr);
this.updateModel(event, newValueStr);
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'Backspace': {
2022-09-06 12:03:37 +00:00
event.preventDefault();
if (selectionStart === selectionEnd) {
const deleteChar = inputValue.charAt(selectionStart - 1);
const { decimalCharIndex, decimalCharIndexWithoutPrefix } = this.getDecimalCharIndexes(inputValue);
if (this.isNumeralChar(deleteChar)) {
const decimalLength = this.getDecimalLength(inputValue);
if (this._group.test(deleteChar)) {
this._group.lastIndex = 0;
newValueStr = inputValue.slice(0, selectionStart - 2) + inputValue.slice(selectionStart - 1);
2022-09-14 11:26:01 +00:00
} else if (this._decimal.test(deleteChar)) {
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
if (decimalLength) {
this.$refs.input.$el.setSelectionRange(selectionStart - 1, selectionStart - 1);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart - 1) + inputValue.slice(selectionStart);
}
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndex > 0 && selectionStart > decimalCharIndex) {
2022-09-06 12:03:37 +00:00
const insertedText = this.isDecimalMode() && (this.minFractionDigits || 0) < decimalLength ? '' : '0';
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart - 1) + insertedText + inputValue.slice(selectionStart);
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndexWithoutPrefix === 1) {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart - 1) + '0' + inputValue.slice(selectionStart);
newValueStr = this.parseValue(newValueStr) > 0 ? newValueStr : '';
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart - 1) + inputValue.slice(selectionStart);
}
}
this.updateValue(event, newValueStr, null, 'delete-single');
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = this.deleteRange(inputValue, selectionStart, selectionEnd);
this.updateValue(event, newValueStr, null, 'delete-range');
}
break;
}
2022-12-08 11:04:25 +00:00
case 'Delete':
2022-09-06 12:03:37 +00:00
event.preventDefault();
if (selectionStart === selectionEnd) {
const deleteChar = inputValue.charAt(selectionStart);
const { decimalCharIndex, decimalCharIndexWithoutPrefix } = this.getDecimalCharIndexes(inputValue);
if (this.isNumeralChar(deleteChar)) {
const decimalLength = this.getDecimalLength(inputValue);
if (this._group.test(deleteChar)) {
this._group.lastIndex = 0;
newValueStr = inputValue.slice(0, selectionStart) + inputValue.slice(selectionStart + 2);
2022-09-14 11:26:01 +00:00
} else if (this._decimal.test(deleteChar)) {
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
if (decimalLength) {
this.$refs.input.$el.setSelectionRange(selectionStart + 1, selectionStart + 1);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart) + inputValue.slice(selectionStart + 1);
}
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndex > 0 && selectionStart > decimalCharIndex) {
2022-09-06 12:03:37 +00:00
const insertedText = this.isDecimalMode() && (this.minFractionDigits || 0) < decimalLength ? '' : '0';
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart) + insertedText + inputValue.slice(selectionStart + 1);
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndexWithoutPrefix === 1) {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart) + '0' + inputValue.slice(selectionStart + 1);
newValueStr = this.parseValue(newValueStr) > 0 ? newValueStr : '';
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart) + inputValue.slice(selectionStart + 1);
}
}
this.updateValue(event, newValueStr, null, 'delete-back-single');
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = this.deleteRange(inputValue, selectionStart, selectionEnd);
this.updateValue(event, newValueStr, null, 'delete-range');
}
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'Home':
2022-09-06 12:03:37 +00:00
if (this.min) {
this.updateModel(event, this.min);
event.preventDefault();
}
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
2022-12-08 11:04:25 +00:00
case 'End':
2022-09-06 12:03:37 +00:00
if (this.max) {
this.updateModel(event, this.max);
event.preventDefault();
}
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
default:
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
}
},
onInputKeyPress(event) {
if (this.readonly) {
return;
}
event.preventDefault();
let code = event.which || event.keyCode;
let char = String.fromCharCode(code);
const isDecimalSign = this.isDecimalSign(char);
const isMinusSign = this.isMinusSign(char);
if ((48 <= code && code <= 57) || isMinusSign || isDecimalSign) {
this.insert(event, char, { isDecimalSign, isMinusSign });
}
},
onPaste(event) {
event.preventDefault();
let data = (event.clipboardData || window['clipboardData']).getData('Text');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (data) {
let filteredData = this.parseValue(data);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (filteredData != null) {
this.insert(event, filteredData.toString());
}
}
},
allowMinusSign() {
return this.min === null || this.min < 0;
},
isMinusSign(char) {
if (this._minusSign.test(char) || char === '-') {
this._minusSign.lastIndex = 0;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return true;
}
return false;
},
isDecimalSign(char) {
if (this._decimal.test(char)) {
this._decimal.lastIndex = 0;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return true;
}
return false;
},
isDecimalMode() {
return this.mode === 'decimal';
},
getDecimalCharIndexes(val) {
let decimalCharIndex = val.search(this._decimal);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
const filteredVal = val.replace(this._prefix, '').trim().replace(/\s/g, '').replace(this._currency, '');
const decimalCharIndexWithoutPrefix = filteredVal.search(this._decimal);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
return { decimalCharIndex, decimalCharIndexWithoutPrefix };
},
getCharIndexes(val) {
const decimalCharIndex = val.search(this._decimal);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
const minusCharIndex = val.search(this._minusSign);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._minusSign.lastIndex = 0;
const suffixCharIndex = val.search(this._suffix);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._suffix.lastIndex = 0;
const currencyCharIndex = val.search(this._currency);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._currency.lastIndex = 0;
return { decimalCharIndex, minusCharIndex, suffixCharIndex, currencyCharIndex };
},
insert(event, text, sign = { isDecimalSign: false, isMinusSign: false }) {
const minusCharIndexOnText = text.search(this._minusSign);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._minusSign.lastIndex = 0;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (!this.allowMinusSign() && minusCharIndexOnText !== -1) {
return;
}
const selectionStart = this.$refs.input.$el.selectionStart;
const selectionEnd = this.$refs.input.$el.selectionEnd;
let inputValue = this.$refs.input.$el.value.trim();
const { decimalCharIndex, minusCharIndex, suffixCharIndex, currencyCharIndex } = this.getCharIndexes(inputValue);
let newValueStr;
if (sign.isMinusSign) {
if (selectionStart === 0) {
newValueStr = inputValue;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (minusCharIndex === -1 || selectionEnd !== 0) {
newValueStr = this.insertText(inputValue, text, 0, selectionEnd);
}
this.updateValue(event, newValueStr, text, 'insert');
}
2022-09-14 11:26:01 +00:00
} else if (sign.isDecimalSign) {
2022-09-06 12:03:37 +00:00
if (decimalCharIndex > 0 && selectionStart === decimalCharIndex) {
this.updateValue(event, inputValue, text, 'insert');
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndex > selectionStart && decimalCharIndex < selectionEnd) {
2022-09-06 12:03:37 +00:00
newValueStr = this.insertText(inputValue, text, selectionStart, selectionEnd);
this.updateValue(event, newValueStr, text, 'insert');
2022-09-14 11:26:01 +00:00
} else if (decimalCharIndex === -1 && this.maxFractionDigits) {
2022-09-06 12:03:37 +00:00
newValueStr = this.insertText(inputValue, text, selectionStart, selectionEnd);
this.updateValue(event, newValueStr, text, 'insert');
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
const maxFractionDigits = this.numberFormat.resolvedOptions().maximumFractionDigits;
const operation = selectionStart !== selectionEnd ? 'range-insert' : 'insert';
if (decimalCharIndex > 0 && selectionStart > decimalCharIndex) {
2022-09-14 11:26:01 +00:00
if (selectionStart + text.length - (decimalCharIndex + 1) <= maxFractionDigits) {
const charIndex = currencyCharIndex >= selectionStart ? currencyCharIndex - 1 : suffixCharIndex >= selectionStart ? suffixCharIndex : inputValue.length;
2022-09-06 12:03:37 +00:00
newValueStr = inputValue.slice(0, selectionStart) + text + inputValue.slice(selectionStart + text.length, charIndex) + inputValue.slice(charIndex);
this.updateValue(event, newValueStr, text, operation);
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
newValueStr = this.insertText(inputValue, text, selectionStart, selectionEnd);
this.updateValue(event, newValueStr, text, operation);
}
}
},
insertText(value, text, start, end) {
let textSplit = text === '.' ? text : text.split('.');
if (textSplit.length === 2) {
const decimalCharIndex = value.slice(start, end).search(this._decimal);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
2022-09-14 11:26:01 +00:00
return decimalCharIndex > 0 ? value.slice(0, start) + this.formatValue(text) + value.slice(end) : value || this.formatValue(text);
} else if (end - start === value.length) {
2022-09-06 12:03:37 +00:00
return this.formatValue(text);
2022-09-14 11:26:01 +00:00
} else if (start === 0) {
2022-09-06 12:03:37 +00:00
return text + value.slice(end);
2022-09-14 11:26:01 +00:00
} else if (end === value.length) {
2022-09-06 12:03:37 +00:00
return value.slice(0, start) + text;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
return value.slice(0, start) + text + value.slice(end);
}
},
deleteRange(value, start, end) {
let newValueStr;
2022-09-14 11:26:01 +00:00
if (end - start === value.length) newValueStr = '';
else if (start === 0) newValueStr = value.slice(end);
else if (end === value.length) newValueStr = value.slice(0, start);
else newValueStr = value.slice(0, start) + value.slice(end);
2022-09-06 12:03:37 +00:00
return newValueStr;
},
initCursor() {
let selectionStart = this.$refs.input.$el.selectionStart;
let inputValue = this.$refs.input.$el.value;
let valueLength = inputValue.length;
let index = null;
// remove prefix
let prefixLength = (this.prefixChar || '').length;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
inputValue = inputValue.replace(this._prefix, '');
selectionStart = selectionStart - prefixLength;
let char = inputValue.charAt(selectionStart);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isNumeralChar(char)) {
return selectionStart + prefixLength;
}
//left
let i = selectionStart - 1;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
while (i >= 0) {
char = inputValue.charAt(i);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isNumeralChar(char)) {
index = i + prefixLength;
break;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
i--;
}
}
if (index !== null) {
this.$refs.input.$el.setSelectionRange(index + 1, index + 1);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
i = selectionStart;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
while (i < valueLength) {
char = inputValue.charAt(i);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isNumeralChar(char)) {
index = i + prefixLength;
break;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
i++;
}
}
if (index !== null) {
this.$refs.input.$el.setSelectionRange(index, index);
}
}
return index || 0;
},
onInputClick() {
2022-12-08 11:04:25 +00:00
const currentValue = this.$refs.input.$el.value;
if (!this.readonly && currentValue !== DomHandler.getSelection()) {
2022-09-06 12:03:37 +00:00
this.initCursor();
}
},
isNumeralChar(char) {
if (char.length === 1 && (this._numeral.test(char) || this._decimal.test(char) || this._group.test(char) || this._minusSign.test(char))) {
this.resetRegex();
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return true;
}
return false;
},
resetRegex() {
2022-09-14 11:26:01 +00:00
this._numeral.lastIndex = 0;
this._decimal.lastIndex = 0;
this._group.lastIndex = 0;
this._minusSign.lastIndex = 0;
2022-09-06 12:03:37 +00:00
},
updateValue(event, valueStr, insertedValueStr, operation) {
let currentValue = this.$refs.input.$el.value;
let newValue = null;
if (valueStr != null) {
newValue = this.parseValue(valueStr);
newValue = !newValue && !this.allowEmpty ? 0 : newValue;
this.updateInput(newValue, insertedValueStr, operation, valueStr);
this.handleOnInput(event, currentValue, newValue);
}
},
handleOnInput(event, currentValue, newValue) {
if (this.isValueChanged(currentValue, newValue)) {
2022-12-08 11:04:25 +00:00
this.$emit('input', { originalEvent: event, value: newValue, formattedValue: currentValue });
2022-09-06 12:03:37 +00:00
}
},
isValueChanged(currentValue, newValue) {
if (newValue === null && currentValue !== null) {
return true;
}
if (newValue != null) {
2022-09-14 11:26:01 +00:00
let parsedCurrentValue = typeof currentValue === 'string' ? this.parseValue(currentValue) : currentValue;
2022-09-06 12:03:37 +00:00
return newValue !== parsedCurrentValue;
}
return false;
},
validateValue(value) {
if (value === '-' || value == null) {
return null;
}
if (this.min != null && value < this.min) {
return this.min;
}
if (this.max != null && value > this.max) {
return this.max;
}
return value;
},
updateInput(value, insertedValueStr, operation, valueStr) {
insertedValueStr = insertedValueStr || '';
let inputValue = this.$refs.input.$el.value;
let newValue = this.formatValue(value);
let currentLength = inputValue.length;
if (newValue !== valueStr) {
newValue = this.concatValues(newValue, valueStr);
}
if (currentLength === 0) {
this.$refs.input.$el.value = newValue;
this.$refs.input.$el.setSelectionRange(0, 0);
const index = this.initCursor();
const selectionEnd = index + insertedValueStr.length;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let selectionStart = this.$refs.input.$el.selectionStart;
let selectionEnd = this.$refs.input.$el.selectionEnd;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.$refs.input.$el.value = newValue;
let newLength = newValue.length;
if (operation === 'range-insert') {
const startValue = this.parseValue((inputValue || '').slice(0, selectionStart));
const startValueStr = startValue !== null ? startValue.toString() : '';
const startExpr = startValueStr.split('').join(`(${this.groupChar})?`);
const sRegex = new RegExp(startExpr, 'g');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
sRegex.test(newValue);
const tExpr = insertedValueStr.split('').join(`(${this.groupChar})?`);
const tRegex = new RegExp(tExpr, 'g');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
tRegex.test(newValue.slice(sRegex.lastIndex));
selectionEnd = sRegex.lastIndex + tRegex.lastIndex;
this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
2022-09-14 11:26:01 +00:00
} else if (newLength === currentLength) {
if (operation === 'insert' || operation === 'delete-back-single') this.$refs.input.$el.setSelectionRange(selectionEnd + 1, selectionEnd + 1);
else if (operation === 'delete-single') this.$refs.input.$el.setSelectionRange(selectionEnd - 1, selectionEnd - 1);
else if (operation === 'delete-range' || operation === 'spin') this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
} else if (operation === 'delete-back-single') {
2022-09-06 12:03:37 +00:00
let prevChar = inputValue.charAt(selectionEnd - 1);
let nextChar = inputValue.charAt(selectionEnd);
let diff = currentLength - newLength;
let isGroupChar = this._group.test(nextChar);
if (isGroupChar && diff === 1) {
selectionEnd += 1;
2022-09-14 11:26:01 +00:00
} else if (!isGroupChar && this.isNumeralChar(prevChar)) {
selectionEnd += -1 * diff + 1;
2022-09-06 12:03:37 +00:00
}
this._group.lastIndex = 0;
this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
2022-09-14 11:26:01 +00:00
} else if (inputValue === '-' && operation === 'insert') {
2022-09-06 12:03:37 +00:00
this.$refs.input.$el.setSelectionRange(0, 0);
const index = this.initCursor();
const selectionEnd = index + insertedValueStr.length + 1;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
selectionEnd = selectionEnd + (newLength - currentLength);
this.$refs.input.$el.setSelectionRange(selectionEnd, selectionEnd);
}
}
this.$refs.input.$el.setAttribute('aria-valuenow', value);
},
concatValues(val1, val2) {
if (val1 && val2) {
let decimalCharIndex = val2.search(this._decimal);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this._decimal.lastIndex = 0;
2022-12-08 11:04:25 +00:00
if (this.suffixChar) {
return val1.replace(this.suffixChar, '').split(this._decimal)[0] + val2.replace(this.suffixChar, '').slice(decimalCharIndex) + this.suffixChar;
} else {
return decimalCharIndex !== -1 ? val1.split(this._decimal)[0] + val2.slice(decimalCharIndex) : val1;
}
2022-09-06 12:03:37 +00:00
}
return val1;
},
getDecimalLength(value) {
if (value) {
const valueSplit = value.split(this._decimal);
if (valueSplit.length === 2) {
2022-09-14 11:26:01 +00:00
return valueSplit[1].replace(this._suffix, '').trim().replace(/\s/g, '').replace(this._currency, '').length;
2022-09-06 12:03:37 +00:00
}
}
return 0;
},
updateModel(event, value) {
this.d_modelValue = value;
this.$emit('update:modelValue', value);
},
onInputFocus(event) {
this.focused = true;
2022-12-08 11:04:25 +00:00
if (!this.disabled && !this.readonly && this.$refs.input.$el.value !== DomHandler.getSelection() && this.highlightOnFocus) {
event.target.select();
}
2022-09-06 12:03:37 +00:00
this.$emit('focus', event);
},
onInputBlur(event) {
this.focused = false;
let input = event.target;
let newValue = this.validateValue(this.parseValue(input.value));
2022-09-14 11:26:01 +00:00
this.$emit('blur', { originalEvent: event, value: input.value });
2022-09-06 12:03:37 +00:00
input.value = this.formatValue(newValue);
input.setAttribute('aria-valuenow', newValue);
this.updateModel(event, newValue);
},
clearTimer() {
if (this.timer) {
clearInterval(this.timer);
}
},
maxBoundry() {
return this.d_modelValue >= this.max;
},
minBoundry() {
return this.d_modelValue <= this.min;
2022-09-14 11:26:01 +00:00
}
2022-09-06 12:03:37 +00:00
},
computed: {
containerClass() {
2022-09-14 11:26:01 +00:00
return [
'p-inputnumber p-component p-inputwrapper',
{
'p-inputwrapper-filled': this.filled,
'p-inputwrapper-focus': this.focused,
'p-inputnumber-buttons-stacked': this.showButtons && this.buttonLayout === 'stacked',
'p-inputnumber-buttons-horizontal': this.showButtons && this.buttonLayout === 'horizontal',
'p-inputnumber-buttons-vertical': this.showButtons && this.buttonLayout === 'vertical'
}
];
},
2022-09-06 12:03:37 +00:00
upButtonClass() {
2022-09-14 11:26:01 +00:00
return [
'p-inputnumber-button p-inputnumber-button-up',
this.incrementButtonClass,
{
'p-disabled': this.showButtons && this.max !== null && this.maxBoundry()
}
];
2022-09-06 12:03:37 +00:00
},
downButtonClass() {
2022-09-14 11:26:01 +00:00
return [
'p-inputnumber-button p-inputnumber-button-down',
this.decrementButtonClass,
{
'p-disabled': this.showButtons && this.min !== null && this.minBoundry()
}
];
2022-09-06 12:03:37 +00:00
},
filled() {
2022-09-14 11:26:01 +00:00
return this.modelValue != null && this.modelValue.toString().length > 0;
2022-09-06 12:03:37 +00:00
},
upButtonListeners() {
return {
2022-09-14 11:26:01 +00:00
mousedown: (event) => this.onUpButtonMouseDown(event),
mouseup: (event) => this.onUpButtonMouseUp(event),
mouseleave: (event) => this.onUpButtonMouseLeave(event),
keydown: (event) => this.onUpButtonKeyDown(event),
keyup: (event) => this.onUpButtonKeyUp(event)
};
2022-09-06 12:03:37 +00:00
},
downButtonListeners() {
return {
2022-09-14 11:26:01 +00:00
mousedown: (event) => this.onDownButtonMouseDown(event),
mouseup: (event) => this.onDownButtonMouseUp(event),
mouseleave: (event) => this.onDownButtonMouseLeave(event),
keydown: (event) => this.onDownButtonKeyDown(event),
keyup: (event) => this.onDownButtonKeyUp(event)
};
2022-09-06 12:03:37 +00:00
},
formattedValue() {
const val = !this.modelValue && !this.allowEmpty ? 0 : this.modelValue;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return this.formatValue(val);
},
getFormatter() {
return this.numberFormat;
}
},
components: {
2022-09-14 11:26:01 +00:00
INInputText: InputText,
INButton: Button
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>
<style>
.p-inputnumber {
display: inline-flex;
}
.p-inputnumber-button {
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
}
.p-inputnumber-buttons-stacked .p-button.p-inputnumber-button .p-button-label,
.p-inputnumber-buttons-horizontal .p-button.p-inputnumber-button .p-button-label {
display: none;
}
.p-inputnumber-buttons-stacked .p-button.p-inputnumber-button-up {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
padding: 0;
}
.p-inputnumber-buttons-stacked .p-inputnumber-input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.p-inputnumber-buttons-stacked .p-button.p-inputnumber-button-down {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
padding: 0;
}
.p-inputnumber-buttons-stacked .p-inputnumber-button-group {
display: flex;
flex-direction: column;
}
.p-inputnumber-buttons-stacked .p-inputnumber-button-group .p-button.p-inputnumber-button {
flex: 1 1 auto;
}
.p-inputnumber-buttons-horizontal .p-button.p-inputnumber-button-up {
order: 3;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.p-inputnumber-buttons-horizontal .p-inputnumber-input {
order: 2;
border-radius: 0;
}
.p-inputnumber-buttons-horizontal .p-button.p-inputnumber-button-down {
order: 1;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.p-inputnumber-buttons-vertical {
flex-direction: column;
}
.p-inputnumber-buttons-vertical .p-button.p-inputnumber-button-up {
order: 1;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
width: 100%;
}
.p-inputnumber-buttons-vertical .p-inputnumber-input {
order: 2;
border-radius: 0;
text-align: center;
}
.p-inputnumber-buttons-vertical .p-button.p-inputnumber-button-down {
order: 3;
border-top-left-radius: 0;
border-top-right-radius: 0;
width: 100%;
}
.p-inputnumber-input {
flex: 1 1 auto;
}
.p-fluid .p-inputnumber {
width: 100%;
}
.p-fluid .p-inputnumber .p-inputnumber-input {
width: 1%;
}
.p-fluid .p-inputnumber-buttons-vertical .p-inputnumber-input {
width: 100%;
}
</style>