沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<script lang="ts" setup>
import { propTypes } from '@/utils/propTypes'
import { useConfigGlobal } from '@/hooks/web/useConfigGlobal'
import type { ZxcvbnResult } from '@zxcvbn-ts/core'
import { zxcvbn } from '@zxcvbn-ts/core'
import { useDesign } from '@/hooks/web/useDesign'
 
defineOptions({ name: 'InputPassword' })
 
const { getPrefixCls } = useDesign()
 
const prefixCls = getPrefixCls('input-password')
 
const props = defineProps({
  // 是否显示密码强度
  strength: propTypes.bool.def(false),
  modelValue: propTypes.string.def('')
})
 
watch(
  () => props.modelValue,
  (val: string) => {
    if (val === unref(valueRef)) return
    valueRef.value = val
  }
)
 
const { configGlobal } = useConfigGlobal()
 
const emit = defineEmits(['update:modelValue'])
 
// 设置input的type属性
const textType = ref<'password' | 'text'>('password')
 
const changeTextType = () => {
  textType.value = unref(textType) === 'text' ? 'password' : 'text'
}
 
// 输入框的值
const valueRef = ref(props.modelValue)
 
// 监听
watch(
  () => valueRef.value,
  (val: string) => {
    emit('update:modelValue', val)
  }
)
 
// 获取密码强度
const getPasswordStrength = computed(() => {
  const value = unref(valueRef)
  const zxcvbnRef = zxcvbn(unref(valueRef)) as ZxcvbnResult
  return value ? zxcvbnRef.score : -1
})
 
const getIconName = computed(() => (unref(textType) === 'password' ? 'ep:hide' : 'ep:view'))
</script>
 
<template>
  <div :class="[prefixCls, `${prefixCls}--${configGlobal?.size}`]">
    <ElInput v-model="valueRef" :type="textType" v-bind="$attrs">
      <template #suffix>
        <Icon :icon="getIconName" class="el-input__icon cursor-pointer" @click="changeTextType" />
      </template>
    </ElInput>
    <div
      v-if="strength"
      :class="`${prefixCls}__bar`"
      class="relative mb-6px ml-auto mr-auto mt-10px h-6px"
    >
      <div :class="`${prefixCls}__bar--fill`" :data-score="getPasswordStrength"></div>
    </div>
  </div>
</template>
 
<style lang="scss" scoped>
$prefix-cls: #{$namespace}-input-password;
 
.#{$prefix-cls} {
  :deep(.#{$elNamespace}-input__clear) {
    margin-left: 5px;
  }
 
  &__bar {
    background-color: var(--el-text-color-disabled);
    border-radius: var(--el-border-radius-base);
 
    &::before,
    &::after {
      position: absolute;
      z-index: 10;
      display: block;
      width: 20%;
      height: inherit;
      background-color: transparent;
      border-color: var(--el-color-white);
      border-style: solid;
      border-width: 0 5px;
      content: '';
    }
 
    &::before {
      left: 20%;
    }
 
    &::after {
      right: 20%;
    }
 
    &--fill {
      position: absolute;
      width: 0;
      height: inherit;
      background-color: transparent;
      border-radius: inherit;
      transition:
        width 0.5s ease-in-out,
        background 0.25s;
 
      &[data-score='0'] {
        width: 20%;
        background-color: var(--el-color-danger);
      }
 
      &[data-score='1'] {
        width: 40%;
        background-color: var(--el-color-danger);
      }
 
      &[data-score='2'] {
        width: 60%;
        background-color: var(--el-color-warning);
      }
 
      &[data-score='3'] {
        width: 80%;
        background-color: var(--el-color-success);
      }
 
      &[data-score='4'] {
        width: 100%;
        background-color: var(--el-color-success);
      }
    }
  }
 
  &--mini > &__bar {
    border-radius: var(--el-border-radius-small);
  }
}
</style>