mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-04 12:17:52 +08:00
d10ef17f17
Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Joel <iamjoel007@gmail.com>
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { useState } from 'react'
|
|
import { useDebounceFn } from 'ahooks'
|
|
import type { DebouncedFunc } from 'lodash-es'
|
|
import { ValidatedStatus } from './declarations'
|
|
import type { ValidateCallback, ValidateValue, ValidatedStatusState } from './declarations'
|
|
|
|
export const useValidate: (value: ValidateValue) => [DebouncedFunc<(validateCallback: ValidateCallback) => Promise<void>>, boolean, ValidatedStatusState] = (value) => {
|
|
const [validating, setValidating] = useState(false)
|
|
const [validatedStatus, setValidatedStatus] = useState<ValidatedStatusState>({})
|
|
|
|
const { run } = useDebounceFn(async (validateCallback: ValidateCallback) => {
|
|
if (!validateCallback.before(value)) {
|
|
setValidating(false)
|
|
setValidatedStatus({})
|
|
return
|
|
}
|
|
setValidating(true)
|
|
|
|
if (validateCallback.run) {
|
|
const res = await validateCallback?.run(value)
|
|
setValidatedStatus(
|
|
res.status === 'success'
|
|
? { status: ValidatedStatus.Success }
|
|
: { status: ValidatedStatus.Error, message: res.message })
|
|
|
|
setValidating(false)
|
|
}
|
|
}, { wait: 1000 })
|
|
|
|
return [run, validating, validatedStatus]
|
|
}
|