252 lines
7.4 KiB
JavaScript
252 lines
7.4 KiB
JavaScript
import { isTouchDevice } from '@primeuix/utils/dom';
|
|
import InputText from 'primevue/inputtext';
|
|
import BaseInput from '@primevue/core/baseinput';
|
|
import InputOtpStyle from 'primevue/inputotp/style';
|
|
import { resolveComponent, createElementBlock, openBlock, mergeProps, Fragment, renderList, renderSlot, createVNode, normalizeClass } from 'vue';
|
|
|
|
var script$1 = {
|
|
name: 'BaseInputOtp',
|
|
"extends": BaseInput,
|
|
props: {
|
|
readonly: {
|
|
type: Boolean,
|
|
"default": false
|
|
},
|
|
tabindex: {
|
|
type: Number,
|
|
"default": null
|
|
},
|
|
length: {
|
|
type: Number,
|
|
"default": 4
|
|
},
|
|
mask: {
|
|
type: Boolean,
|
|
"default": false
|
|
},
|
|
integerOnly: {
|
|
type: Boolean,
|
|
"default": false
|
|
}
|
|
},
|
|
style: InputOtpStyle,
|
|
provide: function provide() {
|
|
return {
|
|
$pcInputOtp: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
|
|
var script = {
|
|
name: 'InputOtp',
|
|
"extends": script$1,
|
|
inheritAttrs: false,
|
|
emits: ['change', 'focus', 'blur'],
|
|
data: function data() {
|
|
return {
|
|
tokens: []
|
|
};
|
|
},
|
|
watch: {
|
|
modelValue: {
|
|
immediate: true,
|
|
handler: function handler(newValue) {
|
|
this.tokens = newValue ? newValue.split('') : new Array(this.length);
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
getTemplateAttrs: function getTemplateAttrs(index) {
|
|
return {
|
|
value: this.tokens[index]
|
|
};
|
|
},
|
|
getTemplateEvents: function getTemplateEvents(index) {
|
|
var _this = this;
|
|
return {
|
|
input: function input(event) {
|
|
return _this.onInput(event, index);
|
|
},
|
|
keydown: function keydown(event) {
|
|
return _this.onKeyDown(event);
|
|
},
|
|
focus: function focus(event) {
|
|
return _this.onFocus(event);
|
|
},
|
|
blur: function blur(event) {
|
|
return _this.onBlur(event);
|
|
},
|
|
paste: function paste(event) {
|
|
return _this.onPaste(event);
|
|
}
|
|
};
|
|
},
|
|
onInput: function onInput(event, index) {
|
|
this.tokens[index] = event.target.value;
|
|
this.updateModel(event);
|
|
if (event.inputType === 'deleteContentBackward') {
|
|
this.moveToPrev(event);
|
|
} else if (event.inputType === 'insertText' || event.inputType === 'deleteContentForward' || isTouchDevice() && event instanceof CustomEvent) {
|
|
this.moveToNext(event);
|
|
}
|
|
},
|
|
updateModel: function updateModel(event) {
|
|
var newValue = this.tokens.join('');
|
|
this.writeValue(newValue, event);
|
|
this.$emit('change', {
|
|
originalEvent: event,
|
|
value: newValue
|
|
});
|
|
},
|
|
moveToPrev: function moveToPrev(event) {
|
|
var prevInput = this.findPrevInput(event.target);
|
|
if (prevInput) {
|
|
prevInput.focus();
|
|
prevInput.select();
|
|
}
|
|
},
|
|
moveToNext: function moveToNext(event) {
|
|
var nextInput = this.findNextInput(event.target);
|
|
if (nextInput) {
|
|
nextInput.focus();
|
|
nextInput.select();
|
|
}
|
|
},
|
|
findNextInput: function findNextInput(element) {
|
|
var nextElement = element.nextElementSibling;
|
|
if (!nextElement) return;
|
|
return nextElement.nodeName === 'INPUT' ? nextElement : this.findNextInput(nextElement);
|
|
},
|
|
findPrevInput: function findPrevInput(element) {
|
|
var prevElement = element.previousElementSibling;
|
|
if (!prevElement) return;
|
|
return prevElement.nodeName === 'INPUT' ? prevElement : this.findPrevInput(prevElement);
|
|
},
|
|
onFocus: function onFocus(event) {
|
|
event.target.select();
|
|
this.$emit('focus', event);
|
|
},
|
|
onBlur: function onBlur(event) {
|
|
this.$emit('blur', event);
|
|
},
|
|
onClick: function onClick(event) {
|
|
setTimeout(function () {
|
|
return event.target.select();
|
|
}, 1);
|
|
},
|
|
onKeyDown: function onKeyDown(event) {
|
|
if (event.ctrlKey || event.metaKey) {
|
|
return;
|
|
}
|
|
switch (event.key) {
|
|
case 'ArrowLeft':
|
|
this.moveToPrev(event);
|
|
event.preventDefault();
|
|
break;
|
|
case 'ArrowUp':
|
|
case 'ArrowDown':
|
|
event.preventDefault();
|
|
break;
|
|
case 'Backspace':
|
|
if (event.target.value.length === 0) {
|
|
this.moveToPrev(event);
|
|
event.preventDefault();
|
|
}
|
|
break;
|
|
case 'ArrowRight':
|
|
this.moveToNext(event);
|
|
event.preventDefault();
|
|
break;
|
|
case 'Enter':
|
|
case 'Tab':
|
|
break;
|
|
default:
|
|
var target = event.target;
|
|
var hasSelection = target.selectionStart !== target.selectionEnd;
|
|
var isAtMaxLength = this.tokens.join('').length >= this.length;
|
|
var isValidKey = this.integerOnly ? /^[0-9]$/.test(event.key) : true;
|
|
if (!isValidKey || isAtMaxLength && event.key !== 'Delete' && !hasSelection) {
|
|
event.preventDefault();
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
onPaste: function onPaste(event) {
|
|
var paste = event.clipboardData.getData('text');
|
|
if (paste.length) {
|
|
var pastedCode = paste.substring(0, this.length);
|
|
if (!this.integerOnly || !isNaN(pastedCode)) {
|
|
this.tokens = pastedCode.split('');
|
|
this.updateModel(event);
|
|
}
|
|
}
|
|
event.preventDefault();
|
|
}
|
|
},
|
|
computed: {
|
|
inputMode: function inputMode() {
|
|
return this.integerOnly ? 'numeric' : 'text';
|
|
},
|
|
inputType: function inputType() {
|
|
return this.mask ? 'password' : 'text';
|
|
}
|
|
},
|
|
components: {
|
|
OtpInputText: InputText
|
|
}
|
|
};
|
|
|
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
var _component_OtpInputText = resolveComponent("OtpInputText");
|
|
return openBlock(), createElementBlock("div", mergeProps({
|
|
"class": _ctx.cx('root')
|
|
}, _ctx.ptmi('root')), [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.length, function (i) {
|
|
return renderSlot(_ctx.$slots, "default", {
|
|
key: i,
|
|
events: $options.getTemplateEvents(i - 1),
|
|
attrs: $options.getTemplateAttrs(i - 1),
|
|
index: i
|
|
}, function () {
|
|
return [createVNode(_component_OtpInputText, {
|
|
value: $data.tokens[i - 1],
|
|
type: $options.inputType,
|
|
"class": normalizeClass(_ctx.cx('pcInputText')),
|
|
name: _ctx.$formName,
|
|
inputmode: $options.inputMode,
|
|
variant: _ctx.variant,
|
|
readonly: _ctx.readonly,
|
|
disabled: _ctx.disabled,
|
|
size: _ctx.size,
|
|
invalid: _ctx.invalid,
|
|
tabindex: _ctx.tabindex,
|
|
unstyled: _ctx.unstyled,
|
|
onInput: function onInput($event) {
|
|
return $options.onInput($event, i - 1);
|
|
},
|
|
onFocus: _cache[0] || (_cache[0] = function ($event) {
|
|
return $options.onFocus($event);
|
|
}),
|
|
onBlur: _cache[1] || (_cache[1] = function ($event) {
|
|
return $options.onBlur($event);
|
|
}),
|
|
onPaste: _cache[2] || (_cache[2] = function ($event) {
|
|
return $options.onPaste($event);
|
|
}),
|
|
onKeydown: _cache[3] || (_cache[3] = function ($event) {
|
|
return $options.onKeyDown($event);
|
|
}),
|
|
onClick: _cache[4] || (_cache[4] = function ($event) {
|
|
return $options.onClick($event);
|
|
}),
|
|
pt: _ctx.ptm('pcInputText')
|
|
}, null, 8, ["value", "type", "class", "name", "inputmode", "variant", "readonly", "disabled", "size", "invalid", "tabindex", "unstyled", "onInput", "pt"])];
|
|
});
|
|
}), 128))], 16);
|
|
}
|
|
|
|
script.render = render;
|
|
|
|
export { script as default };
|
|
//# sourceMappingURL=index.mjs.map
|