primevue-mirror/components/lib/password/Password.vue

462 lines
13 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<div :class="containerClass">
2022-09-14 11:26:01 +00:00
<PInputText
ref="input"
:id="inputId"
:type="inputType"
:class="inputFieldClass"
:style="inputStyle"
:value="modelValue"
:aria-labelledby="ariaLabelledby"
:aria-label="ariaLabel"
:aria-controls="(panelProps && panelProps.id) || panelId || panelUniqueId"
:aria-expanded="overlayVisible"
:aria-haspopup="true"
:placeholder="placeholder"
:required="required"
@input="onInput"
@focus="onFocus"
@blur="onBlur"
@keyup="onKeyUp"
@invalid="onInvalid"
v-bind="inputProps"
/>
<slot v-if="toggleMask && unmasked" name="hideicon" :onClick="() => onMaskToggle">
<component :is="hideIcon ? 'i' : 'EyeSlashIcon'" :class="hideIcon" @click="onMaskToggle" />
</slot>
<slot v-if="toggleMask && !unmasked" name="showicon" :onClick="() => onMaskToggle">
<component :is="showIcon ? 'i' : 'EyeIcon'" :class="showIcon" @click="onMaskToggle" />
</slot>
2022-09-06 12:03:37 +00:00
<span class="p-hidden-accessible" aria-live="polite">
2022-09-14 11:26:01 +00:00
{{ infoText }}
2022-09-06 12:03:37 +00:00
</span>
<Portal :appendTo="appendTo">
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave">
2022-09-14 11:26:01 +00:00
<div v-if="overlayVisible" :ref="overlayRef" :id="panelId || panelUniqueId" :class="panelStyleClass" :style="panelStyle" @click="onOverlayClick" v-bind="panelProps">
2022-09-06 12:03:37 +00:00
<slot name="header"></slot>
<slot name="content">
<div class="p-password-meter">
2022-09-14 11:26:01 +00:00
<div :class="strengthClass" :style="{ width: meter ? meter.width : '' }"></div>
2022-09-06 12:03:37 +00:00
</div>
2022-09-14 11:26:01 +00:00
<div class="p-password-info">{{ infoText }}</div>
2022-09-06 12:03:37 +00:00
</slot>
<slot name="footer"></slot>
</div>
</transition>
</Portal>
</div>
</template>
<script>
import EyeIcon from 'primevue/icons/eye';
import EyeSlashIcon from 'primevue/icons/eyeslash';
2022-09-06 12:03:37 +00:00
import InputText from 'primevue/inputtext';
2022-09-14 11:26:01 +00:00
import OverlayEventBus from 'primevue/overlayeventbus';
2022-09-06 12:03:37 +00:00
import Portal from 'primevue/portal';
2022-09-14 11:26:01 +00:00
import { ConnectedOverlayScrollHandler, DomHandler, UniqueComponentId, ZIndexUtils } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'Password',
2022-09-14 11:26:01 +00:00
emits: ['update:modelValue', 'change', 'focus', 'blur', 'invalid'],
2022-09-06 12:03:37 +00:00
props: {
modelValue: String,
promptLabel: {
type: String,
default: null
},
mediumRegex: {
type: String,
default: '^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})' // eslint-disable-line
},
strongRegex: {
type: String,
default: '^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})' // eslint-disable-line
},
weakLabel: {
type: String,
default: null
},
mediumLabel: {
type: String,
default: null
},
strongLabel: {
type: String,
default: null
},
feedback: {
type: Boolean,
default: true
},
appendTo: {
type: String,
default: 'body'
},
toggleMask: {
type: Boolean,
default: false
},
hideIcon: {
type: String,
default: undefined
2022-09-06 12:03:37 +00:00
},
showIcon: {
type: String,
default: undefined
2022-09-06 12:03:37 +00:00
},
disabled: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: null
},
2022-09-14 11:26:01 +00:00
required: {
type: Boolean,
2022-12-08 11:04:25 +00:00
default: false
2022-09-14 11:26:01 +00:00
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
2022-09-14 11:26:01 +00:00
default: null
},
inputStyle: {
type: Object,
2022-09-14 11:26:01 +00:00
default: null
},
inputProps: {
type: null,
default: null
},
panelId: {
type: String,
default: null
},
panelClass: {
type: [String, Object],
2022-09-14 11:26:01 +00:00
default: null
},
panelStyle: {
type: Object,
2022-09-14 11:26:01 +00:00
default: null
},
panelProps: {
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
}
},
data() {
return {
overlayVisible: false,
meter: null,
infoText: null,
focused: false,
unmasked: false
};
},
mediumCheckRegExp: null,
strongCheckRegExp: null,
resizeListener: null,
scrollHandler: null,
overlay: null,
mounted() {
this.infoText = this.promptText;
this.mediumCheckRegExp = new RegExp(this.mediumRegex);
this.strongCheckRegExp = new RegExp(this.strongRegex);
},
beforeUnmount() {
this.unbindResizeListener();
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.scrollHandler) {
this.scrollHandler.destroy();
this.scrollHandler = null;
}
if (this.overlay) {
ZIndexUtils.clear(this.overlay);
this.overlay = null;
}
},
methods: {
onOverlayEnter(el) {
ZIndexUtils.set('overlay', el, this.$primevue.config.zIndex.overlay);
this.alignOverlay();
this.bindScrollListener();
this.bindResizeListener();
},
onOverlayLeave() {
this.unbindScrollListener();
this.unbindResizeListener();
this.overlay = null;
},
onOverlayAfterLeave(el) {
ZIndexUtils.clear(el);
},
alignOverlay() {
if (this.appendTo === 'self') {
DomHandler.relativePosition(this.overlay, this.$refs.input.$el);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.overlay.style.minWidth = DomHandler.getOuterWidth(this.$refs.input.$el) + 'px';
DomHandler.absolutePosition(this.overlay, this.$refs.input.$el);
}
},
testStrength(str) {
let level = 0;
2022-09-14 11:26:01 +00:00
if (this.strongCheckRegExp.test(str)) level = 3;
else if (this.mediumCheckRegExp.test(str)) level = 2;
else if (str.length) level = 1;
2022-09-06 12:03:37 +00:00
return level;
},
2022-09-14 11:26:01 +00:00
onInput(event) {
this.$emit('update:modelValue', event.target.value);
2022-09-06 12:03:37 +00:00
},
onFocus(event) {
this.focused = true;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.feedback) {
2022-09-14 11:26:01 +00:00
this.setPasswordMeter(this.modelValue);
2022-09-06 12:03:37 +00:00
this.overlayVisible = true;
}
this.$emit('focus', event);
},
onBlur(event) {
this.focused = false;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.feedback) {
this.overlayVisible = false;
}
this.$emit('blur', event);
},
onKeyUp(event) {
if (this.feedback) {
const value = event.target.value;
2022-09-14 11:26:01 +00:00
const { meter, label } = this.checkPasswordStrength(value);
2022-09-06 12:03:37 +00:00
this.meter = meter;
this.infoText = label;
2022-09-14 11:26:01 +00:00
if (event.code === 'Escape') {
2022-09-06 12:03:37 +00:00
this.overlayVisible && (this.overlayVisible = false);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return;
}
if (!this.overlayVisible) {
this.overlayVisible = true;
}
}
},
2022-09-14 11:26:01 +00:00
setPasswordMeter() {
if (!this.modelValue) return;
const { meter, label } = this.checkPasswordStrength(this.modelValue);
this.meter = meter;
this.infoText = label;
if (!this.overlayVisible) {
this.overlayVisible = true;
}
},
checkPasswordStrength(value) {
let label = null;
let meter = null;
switch (this.testStrength(value)) {
case 1:
label = this.weakText;
meter = {
strength: 'weak',
width: '33.33%'
};
break;
case 2:
label = this.mediumText;
meter = {
strength: 'medium',
width: '66.66%'
};
break;
case 3:
label = this.strongText;
meter = {
strength: 'strong',
width: '100%'
};
break;
default:
label = this.promptText;
meter = null;
break;
}
return { label, meter };
},
onInvalid(event) {
this.$emit('invalid', event);
},
2022-09-06 12:03:37 +00:00
bindScrollListener() {
if (!this.scrollHandler) {
this.scrollHandler = new ConnectedOverlayScrollHandler(this.$refs.input.$el, () => {
if (this.overlayVisible) {
this.overlayVisible = false;
}
});
}
this.scrollHandler.bindScrollListener();
},
unbindScrollListener() {
if (this.scrollHandler) {
this.scrollHandler.unbindScrollListener();
}
},
bindResizeListener() {
if (!this.resizeListener) {
this.resizeListener = () => {
if (this.overlayVisible && !DomHandler.isTouchDevice()) {
this.overlayVisible = false;
}
};
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
window.addEventListener('resize', this.resizeListener);
}
},
unbindResizeListener() {
if (this.resizeListener) {
window.removeEventListener('resize', this.resizeListener);
this.resizeListener = null;
}
},
overlayRef(el) {
this.overlay = el;
},
onMaskToggle() {
this.unmasked = !this.unmasked;
},
onOverlayClick(event) {
OverlayEventBus.emit('overlay-click', {
originalEvent: event,
target: this.$el
});
}
},
computed: {
containerClass() {
2022-09-14 11:26:01 +00:00
return [
'p-password p-component p-inputwrapper',
{
'p-inputwrapper-filled': this.filled,
'p-inputwrapper-focus': this.focused,
'p-input-icon-right': this.toggleMask
}
];
2022-09-06 12:03:37 +00:00
},
inputFieldClass() {
2022-09-14 11:26:01 +00:00
return [
'p-password-input',
this.inputClass,
{
'p-disabled': this.disabled
}
];
2022-09-06 12:03:37 +00:00
},
panelStyleClass() {
2022-09-14 11:26:01 +00:00
return [
'p-password-panel p-component',
this.panelClass,
{
'p-input-filled': this.$primevue.config.inputStyle === 'filled',
'p-ripple-disabled': this.$primevue.config.ripple === false
}
];
2022-09-06 12:03:37 +00:00
},
strengthClass() {
return `p-password-strength ${this.meter ? this.meter.strength : ''}`;
},
inputType() {
return this.unmasked ? 'text' : 'password';
},
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
},
weakText() {
return this.weakLabel || this.$primevue.config.locale.weak;
},
mediumText() {
return this.mediumLabel || this.$primevue.config.locale.medium;
},
strongText() {
return this.strongLabel || this.$primevue.config.locale.strong;
},
promptText() {
return this.promptLabel || this.$primevue.config.locale.passwordPrompt;
},
panelUniqueId() {
return UniqueComponentId() + '_panel';
}
},
components: {
2022-09-14 11:26:01 +00:00
PInputText: InputText,
Portal: Portal,
EyeSlashIcon: EyeSlashIcon,
EyeIcon: EyeIcon
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-password {
position: relative;
display: inline-flex;
}
.p-password-panel {
position: absolute;
top: 0;
left: 0;
}
.p-password .p-password-panel {
min-width: 100%;
}
.p-password-meter {
height: 10px;
}
.p-password-strength {
height: 100%;
width: 0;
transition: width 1s ease-in-out;
}
.p-fluid .p-password {
display: flex;
}
2022-12-08 11:04:25 +00:00
.p-password-input::-ms-reveal,
.p-password-input::-ms-clear {
display: none;
}
2022-09-06 12:03:37 +00:00
</style>