2018-06-13 16:29:01 -05:00
|
|
|
<template>
|
|
|
|
<div class="ui-input" :class="{ focused, filled }">
|
2018-06-14 00:52:37 -05:00
|
|
|
<div class="input" @click="focus">
|
|
|
|
<div class="password-meter" v-if="withPasswordMeter" v-show="passwordStrength != ''" :data-strength="passwordStrength">
|
|
|
|
<div class="value" ref="passwordMetar"></div>
|
|
|
|
</div>
|
2018-06-13 16:29:01 -05:00
|
|
|
<span class="label" ref="label"><slot></slot></span>
|
2018-06-14 00:52:37 -05:00
|
|
|
<div class="prefix" ref="prefix"><slot name="prefix"></slot></div>
|
2018-06-13 19:51:55 -05:00
|
|
|
<input ref="input"
|
|
|
|
:type="type"
|
|
|
|
:value="value"
|
|
|
|
:required="required"
|
|
|
|
:readonly="readonly"
|
2018-06-14 00:52:37 -05:00
|
|
|
:pattern="pattern"
|
|
|
|
:autocomplete="autocomplete"
|
2018-06-13 19:51:55 -05:00
|
|
|
@input="$emit('input', $event.target.value)"
|
|
|
|
@focus="focused = true"
|
|
|
|
@blur="focused = false">
|
2018-06-14 00:52:37 -05:00
|
|
|
<div class="suffix"><slot name="suffix"></slot></div>
|
2018-06-13 16:29:01 -05:00
|
|
|
</div>
|
2018-06-13 19:51:55 -05:00
|
|
|
<div class="text"><slot name="text"></slot></div>
|
2018-06-13 16:29:01 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-06-14 00:52:37 -05:00
|
|
|
const getPasswordStrength = require('syuilo-password-strength');
|
|
|
|
|
2018-06-13 16:29:01 -05:00
|
|
|
export default Vue.extend({
|
2018-06-13 19:51:55 -05:00
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
required: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
readonly: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false
|
2018-06-14 00:52:37 -05:00
|
|
|
},
|
|
|
|
pattern: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
autocomplete: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
withPasswordMeter: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
2018-06-13 19:51:55 -05:00
|
|
|
}
|
|
|
|
},
|
2018-06-13 16:29:01 -05:00
|
|
|
data() {
|
|
|
|
return {
|
2018-06-14 00:52:37 -05:00
|
|
|
focused: false,
|
|
|
|
passwordStrength: ''
|
2018-06-13 16:29:01 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
filled(): boolean {
|
|
|
|
return this.value != '' && this.value != null;
|
|
|
|
}
|
|
|
|
},
|
2018-06-14 00:52:37 -05:00
|
|
|
watch: {
|
|
|
|
value(v) {
|
|
|
|
if (this.withPasswordMeter) {
|
|
|
|
if (v == '') {
|
|
|
|
this.passwordStrength = '';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const strength = getPasswordStrength(v);
|
|
|
|
this.passwordStrength = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low';
|
|
|
|
(this.$refs.passwordMetar as any).style.width = `${strength * 100}%`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-06-13 16:29:01 -05:00
|
|
|
mounted() {
|
2018-06-14 00:52:37 -05:00
|
|
|
if (this.$refs.prefix) {
|
|
|
|
this.$refs.label.style.left = (this.$refs.prefix.offsetLeft + this.$refs.prefix.offsetWidth) + 'px';
|
|
|
|
}
|
2018-06-13 16:29:01 -05:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.input.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
@import '~const.styl'
|
|
|
|
|
|
|
|
.ui-input
|
2018-06-14 00:52:37 -05:00
|
|
|
margin 32px 0
|
2018-06-13 16:29:01 -05:00
|
|
|
|
|
|
|
> .input
|
|
|
|
display flex
|
2018-06-13 17:22:50 -05:00
|
|
|
padding 6px 12px
|
2018-06-13 19:51:55 -05:00
|
|
|
background rgba(#000, 0.035)
|
2018-06-13 17:22:50 -05:00
|
|
|
border-radius 6px
|
2018-06-13 16:29:01 -05:00
|
|
|
|
2018-06-14 00:52:37 -05:00
|
|
|
> .password-meter
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
border-radius 6px
|
|
|
|
overflow hidden
|
|
|
|
opacity 0.3
|
|
|
|
|
|
|
|
&[data-strength='']
|
|
|
|
display none
|
|
|
|
|
|
|
|
&[data-strength='low']
|
|
|
|
> .value
|
|
|
|
background #d73612
|
|
|
|
|
|
|
|
&[data-strength='medium']
|
|
|
|
> .value
|
|
|
|
background #d7ca12
|
|
|
|
|
|
|
|
&[data-strength='high']
|
|
|
|
> .value
|
|
|
|
background #61bb22
|
|
|
|
|
|
|
|
> .value
|
|
|
|
display block
|
|
|
|
width 0%
|
|
|
|
height 100%
|
|
|
|
background transparent
|
|
|
|
border-radius 6px
|
|
|
|
transition all 0.1s ease
|
|
|
|
|
2018-06-13 16:29:01 -05:00
|
|
|
> .label
|
|
|
|
position absolute
|
2018-06-13 17:22:50 -05:00
|
|
|
top 6px
|
2018-06-13 16:29:01 -05:00
|
|
|
left 0
|
|
|
|
pointer-events none
|
|
|
|
transition 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)
|
|
|
|
transition-duration 0.3s
|
|
|
|
font-size 16px
|
|
|
|
line-height 32px
|
|
|
|
color rgba(#000, 0.54)
|
|
|
|
pointer-events none
|
2018-06-14 00:52:37 -05:00
|
|
|
//will-change transform
|
|
|
|
transform-origin top left
|
|
|
|
transform scale(1)
|
2018-06-13 16:29:01 -05:00
|
|
|
|
|
|
|
> input
|
|
|
|
display block
|
|
|
|
flex 1
|
|
|
|
width 100%
|
|
|
|
padding 0
|
2018-06-13 17:22:50 -05:00
|
|
|
font inherit
|
|
|
|
font-weight bold
|
2018-06-13 16:29:01 -05:00
|
|
|
font-size 16px
|
|
|
|
line-height 32px
|
|
|
|
background transparent
|
|
|
|
border none
|
|
|
|
border-radius 0
|
|
|
|
outline none
|
|
|
|
box-shadow none
|
|
|
|
|
|
|
|
> .prefix
|
|
|
|
> .suffix
|
|
|
|
display block
|
|
|
|
align-self center
|
|
|
|
justify-self center
|
|
|
|
font-size 16px
|
|
|
|
line-height 32px
|
|
|
|
color rgba(#000, 0.54)
|
2018-06-14 00:52:37 -05:00
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
> *
|
|
|
|
display block
|
|
|
|
min-width 16px
|
2018-06-13 16:29:01 -05:00
|
|
|
|
|
|
|
> .prefix
|
|
|
|
padding-right 4px
|
|
|
|
|
|
|
|
> .suffix
|
|
|
|
padding-left 4px
|
|
|
|
|
2018-06-13 19:51:55 -05:00
|
|
|
> .text
|
2018-06-14 00:52:37 -05:00
|
|
|
margin 6px 0
|
|
|
|
font-size 13px
|
2018-06-13 19:51:55 -05:00
|
|
|
|
2018-06-14 00:52:37 -05:00
|
|
|
*
|
2018-06-13 19:51:55 -05:00
|
|
|
margin 0
|
|
|
|
|
2018-06-13 16:29:01 -05:00
|
|
|
&.focused
|
|
|
|
> .input
|
2018-06-13 19:51:55 -05:00
|
|
|
background rgba(#000, 0.05)
|
2018-06-13 16:29:01 -05:00
|
|
|
|
|
|
|
> .label
|
|
|
|
color $theme-color
|
|
|
|
|
|
|
|
&.focused
|
|
|
|
&.filled
|
|
|
|
> .input
|
|
|
|
> .label
|
2018-06-14 00:52:37 -05:00
|
|
|
top -24px
|
2018-06-13 16:29:01 -05:00
|
|
|
left 0 !important
|
2018-06-14 00:52:37 -05:00
|
|
|
transform scale(0.8)
|
2018-06-13 16:29:01 -05:00
|
|
|
|
|
|
|
</style>
|