refactor: 重构useValidator
This commit is contained in:
parent
71b0e4f6f6
commit
b8849dabe2
|
@ -329,6 +329,14 @@ const adminList = [
|
||||||
meta: {
|
meta: {
|
||||||
title: 'useTagsView'
|
title: 'useTagsView'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'useValidator',
|
||||||
|
component: 'views/hooks/useValidator',
|
||||||
|
name: 'UseValidator',
|
||||||
|
meta: {
|
||||||
|
title: 'useValidator'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
// path: 'useCrudSchemas',
|
// path: 'useCrudSchemas',
|
||||||
|
@ -598,6 +606,7 @@ const testList: string[] = [
|
||||||
'/hooks',
|
'/hooks',
|
||||||
'/hooks/useWatermark',
|
'/hooks/useWatermark',
|
||||||
'/hooks/useTagsView',
|
'/hooks/useTagsView',
|
||||||
|
'/hooks/useValidator',
|
||||||
// '/hooks/useCrudSchemas',
|
// '/hooks/useCrudSchemas',
|
||||||
'/level',
|
'/level',
|
||||||
'/level/menu1',
|
'/level/menu1',
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
import { Config, driver } from 'driver.js'
|
||||||
|
import 'driver.js/dist/driver.css'
|
||||||
|
import { useDesign } from '@/hooks/web/useDesign'
|
||||||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
const { variables } = useDesign()
|
||||||
|
|
||||||
|
export const useGuide = (options?: Config) => {
|
||||||
|
const driverObj = driver(
|
||||||
|
options || {
|
||||||
|
showProgress: true,
|
||||||
|
nextBtnText: t('common.nextLabel'),
|
||||||
|
prevBtnText: t('common.prevLabel'),
|
||||||
|
doneBtnText: t('common.doneLabel'),
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
element: `#${variables.namespace}-menu`,
|
||||||
|
popover: {
|
||||||
|
title: t('common.menu'),
|
||||||
|
description: t('common.menuDes'),
|
||||||
|
side: 'right'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: `#${variables.namespace}-tool-header`,
|
||||||
|
popover: {
|
||||||
|
title: t('common.tool'),
|
||||||
|
description: t('common.toolDes'),
|
||||||
|
side: 'left'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: `#${variables.namespace}-tags-view`,
|
||||||
|
popover: {
|
||||||
|
title: t('common.tagsView'),
|
||||||
|
description: t('common.tagsViewDes'),
|
||||||
|
side: 'bottom'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
return {
|
||||||
|
...driverObj
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,56 +1,53 @@
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
import { FormItemRule } from 'element-plus'
|
||||||
|
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
||||||
type Callback = (error?: string | Error | undefined) => void
|
|
||||||
|
|
||||||
interface LengthRange {
|
interface LengthRange {
|
||||||
min: number
|
min: number
|
||||||
max: number
|
max: number
|
||||||
message: string
|
message?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useValidator = () => {
|
export const useValidator = () => {
|
||||||
const required = (message?: string) => {
|
const required = (message?: string): FormItemRule => {
|
||||||
return {
|
return {
|
||||||
required: true,
|
required: true,
|
||||||
message: message || t('common.required')
|
message: message || t('common.required')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const lengthRange = (val: any, callback: Callback, options: LengthRange) => {
|
const lengthRange = (options: LengthRange): FormItemRule => {
|
||||||
const { min, max, message } = options
|
const { min, max, message } = options
|
||||||
if (val.length < min || val.length > max) {
|
|
||||||
callback(new Error(message))
|
return {
|
||||||
} else {
|
min,
|
||||||
callback()
|
max,
|
||||||
|
message: message || t('common.lengthRange', { min, max })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const notSpace = (val: any, callback: Callback, message: string) => {
|
const notSpace = (message?: string): FormItemRule => {
|
||||||
// 用户名不能有空格
|
return {
|
||||||
if (val.indexOf(' ') !== -1) {
|
validator: (_, val, callback) => {
|
||||||
callback(new Error(message))
|
if (val.indexOf(' ') !== -1) {
|
||||||
} else {
|
callback(new Error(message || t('common.notSpace')))
|
||||||
callback()
|
} else {
|
||||||
|
callback()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const notSpecialCharacters = (val: any, callback: Callback, message: string) => {
|
const notSpecialCharacters = (message?: string): FormItemRule => {
|
||||||
// 密码不能是特殊字符
|
return {
|
||||||
if (/[`~!@#$%^&*()_+<>?:"{},.\/;'[\]]/gi.test(val)) {
|
validator: (_, val, callback) => {
|
||||||
callback(new Error(message))
|
if (/[`~!@#$%^&*()_+<>?:"{},.\/;'[\]]/gi.test(val)) {
|
||||||
} else {
|
callback(new Error(message || t('common.notSpecialCharacters')))
|
||||||
callback()
|
} else {
|
||||||
}
|
callback()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// 两个字符串是否想等
|
|
||||||
const isEqual = (val1: string, val2: string, callback: Callback, message: string) => {
|
|
||||||
if (val1 === val2) {
|
|
||||||
callback()
|
|
||||||
} else {
|
|
||||||
callback(new Error(message))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +55,6 @@ export const useValidator = () => {
|
||||||
required,
|
required,
|
||||||
lengthRange,
|
lengthRange,
|
||||||
notSpace,
|
notSpace,
|
||||||
notSpecialCharacters,
|
notSpecialCharacters
|
||||||
isEqual
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,11 @@ export default {
|
||||||
refresh: 'Refresh',
|
refresh: 'Refresh',
|
||||||
fullscreen: 'Fullscreen',
|
fullscreen: 'Fullscreen',
|
||||||
size: 'Size',
|
size: 'Size',
|
||||||
columnSetting: 'Column setting'
|
columnSetting: 'Column setting',
|
||||||
|
lengthRange: 'The length should be between {min} and {max}',
|
||||||
|
notSpace: 'Spaces are not allowed',
|
||||||
|
notSpecialCharacters: 'Special characters are not allowed',
|
||||||
|
isEqual: 'The two are not equal'
|
||||||
},
|
},
|
||||||
lock: {
|
lock: {
|
||||||
lockScreen: 'Lock screen',
|
lockScreen: 'Lock screen',
|
||||||
|
|
|
@ -44,7 +44,11 @@ export default {
|
||||||
refresh: '刷新',
|
refresh: '刷新',
|
||||||
fullscreen: '全屏',
|
fullscreen: '全屏',
|
||||||
size: '尺寸',
|
size: '尺寸',
|
||||||
columnSetting: '列设置'
|
columnSetting: '列设置',
|
||||||
|
lengthRange: '长度在 {min} 到 {max} 个字符',
|
||||||
|
notSpace: '不能包含空格',
|
||||||
|
notSpecialCharacters: '不能包含特殊字符',
|
||||||
|
isEqual: '两次输入不一致'
|
||||||
},
|
},
|
||||||
lock: {
|
lock: {
|
||||||
lockScreen: '锁定屏幕',
|
lockScreen: '锁定屏幕',
|
||||||
|
|
|
@ -371,6 +371,14 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
|
||||||
meta: {
|
meta: {
|
||||||
title: 'useTagsView'
|
title: 'useTagsView'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'useValidator',
|
||||||
|
component: () => import('@/views/hooks/useValidator.vue'),
|
||||||
|
name: 'UseValidator',
|
||||||
|
meta: {
|
||||||
|
title: 'useValidator'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
// path: 'useCrudSchemas',
|
// path: 'useCrudSchemas',
|
||||||
|
|
|
@ -2,49 +2,14 @@
|
||||||
import { ContentWrap } from '@/components/ContentWrap'
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
import { ElButton } from 'element-plus'
|
import { ElButton } from 'element-plus'
|
||||||
import { driver } from 'driver.js'
|
import { useGuide } from '@/hooks/web/useGuide'
|
||||||
import 'driver.js/dist/driver.css'
|
|
||||||
import { useDesign } from '@/hooks/web/useDesign'
|
|
||||||
|
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
||||||
const { variables } = useDesign()
|
const { drive } = useGuide()
|
||||||
|
|
||||||
const driverObj = driver({
|
|
||||||
showProgress: true,
|
|
||||||
nextBtnText: t('common.nextLabel'),
|
|
||||||
prevBtnText: t('common.prevLabel'),
|
|
||||||
doneBtnText: t('common.doneLabel'),
|
|
||||||
steps: [
|
|
||||||
{
|
|
||||||
element: `#${variables.namespace}-menu`,
|
|
||||||
popover: {
|
|
||||||
title: t('common.menu'),
|
|
||||||
description: t('common.menuDes'),
|
|
||||||
side: 'right'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
element: `#${variables.namespace}-tool-header`,
|
|
||||||
popover: {
|
|
||||||
title: t('common.tool'),
|
|
||||||
description: t('common.toolDes'),
|
|
||||||
side: 'left'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
element: `#${variables.namespace}-tags-view`,
|
|
||||||
popover: {
|
|
||||||
title: t('common.tagsView'),
|
|
||||||
description: t('common.tagsViewDes'),
|
|
||||||
side: 'bottom'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
const guideStart = () => {
|
const guideStart = () => {
|
||||||
driverObj.drive()
|
drive()
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,80 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
|
import { Form, FormSchema } from '@/components/Form'
|
||||||
|
import { useValidator } from '@/hooks/web/useValidator'
|
||||||
|
import { useForm } from '@/hooks/web/useForm'
|
||||||
|
import { reactive } from 'vue'
|
||||||
|
import { FormItemRule } from 'element-plus'
|
||||||
|
|
||||||
|
const { formRegister, formMethods } = useForm()
|
||||||
|
|
||||||
|
const { getFormData } = formMethods
|
||||||
|
|
||||||
|
const { required, lengthRange, notSpace, notSpecialCharacters } = useValidator()
|
||||||
|
|
||||||
|
const formSchema = reactive<FormSchema[]>([
|
||||||
|
{
|
||||||
|
field: 'field1',
|
||||||
|
label: '必填',
|
||||||
|
component: 'Input'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'field2',
|
||||||
|
label: '长度范围',
|
||||||
|
component: 'Input'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'field3',
|
||||||
|
label: '不能有空格',
|
||||||
|
component: 'Input'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'field4',
|
||||||
|
label: '不能有特殊字符',
|
||||||
|
component: 'Input'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'field5',
|
||||||
|
label: '是否相等-值1',
|
||||||
|
component: 'Input'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'field6',
|
||||||
|
label: '是否相等-值2',
|
||||||
|
component: 'Input'
|
||||||
|
}
|
||||||
|
])
|
||||||
|
|
||||||
|
const rules = reactive<{
|
||||||
|
[key: string]: FormItemRule[]
|
||||||
|
}>({
|
||||||
|
field1: [required()],
|
||||||
|
field2: [
|
||||||
|
lengthRange({
|
||||||
|
min: 2,
|
||||||
|
max: 5
|
||||||
|
})
|
||||||
|
],
|
||||||
|
field3: [notSpace()],
|
||||||
|
field4: [notSpecialCharacters()],
|
||||||
|
field5: [
|
||||||
|
{
|
||||||
|
asyncValidator: async (_, val, callback) => {
|
||||||
|
const formData = await getFormData()
|
||||||
|
const { field6 } = formData
|
||||||
|
if (val !== field6) {
|
||||||
|
callback(new Error('两个值不相等'))
|
||||||
|
} else {
|
||||||
|
callback()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<ContentWrap title="useValidator">
|
||||||
|
<Form :schema="formSchema" :rules="rules" @register="formRegister" />
|
||||||
|
</ContentWrap>
|
||||||
|
</template>
|
Loading…
Reference in New Issue