mirror of
https://github.com/langgenius/dify.git
synced 2026-04-29 12:37:20 +08:00
feat: if node valid
This commit is contained in:
parent
e4fdf1730e
commit
d49834ee56
@ -2,6 +2,8 @@ import { BlockEnum, type NodeDefault } from '../../types'
|
|||||||
import { type IfElseNodeType, LogicalOperator } from './types'
|
import { type IfElseNodeType, LogicalOperator } from './types'
|
||||||
import { ALL_CHAT_AVAILABLE_BLOCKS, ALL_COMPLETION_AVAILABLE_BLOCKS } from '@/app/components/workflow/constants'
|
import { ALL_CHAT_AVAILABLE_BLOCKS, ALL_COMPLETION_AVAILABLE_BLOCKS } from '@/app/components/workflow/constants'
|
||||||
|
|
||||||
|
const i18nPrefix = 'workflow.errorMsg'
|
||||||
|
|
||||||
const nodeDefault: NodeDefault<IfElseNodeType> = {
|
const nodeDefault: NodeDefault<IfElseNodeType> = {
|
||||||
defaultValue: {
|
defaultValue: {
|
||||||
_targetBranches: [
|
_targetBranches: [
|
||||||
@ -27,15 +29,20 @@ const nodeDefault: NodeDefault<IfElseNodeType> = {
|
|||||||
const nodes = isChatMode ? ALL_CHAT_AVAILABLE_BLOCKS : ALL_COMPLETION_AVAILABLE_BLOCKS
|
const nodes = isChatMode ? ALL_CHAT_AVAILABLE_BLOCKS : ALL_COMPLETION_AVAILABLE_BLOCKS
|
||||||
return nodes.filter(type => type !== BlockEnum.VariableAssigner)
|
return nodes.filter(type => type !== BlockEnum.VariableAssigner)
|
||||||
},
|
},
|
||||||
checkValid(payload: IfElseNodeType) {
|
checkValid(payload: IfElseNodeType, t: any) {
|
||||||
let isValid = true
|
|
||||||
let errorMessages = ''
|
let errorMessages = ''
|
||||||
if (payload.type) {
|
const { conditions } = payload
|
||||||
isValid = true
|
if (!conditions || conditions.length === 0)
|
||||||
errorMessages = ''
|
errorMessages = t(`${i18nPrefix}.fieldRequired`, { field: 'IF' })
|
||||||
}
|
|
||||||
|
conditions.forEach((condition) => {
|
||||||
|
if (!errorMessages && (!condition.variable_selector || condition.variable_selector.length === 0))
|
||||||
|
errorMessages = t(`${i18nPrefix}.fieldRequired`, { field: t(`${i18nPrefix}.fields.variable`) })
|
||||||
|
if (!errorMessages && !condition.value)
|
||||||
|
errorMessages = t(`${i18nPrefix}.fieldRequired`, { field: t(`${i18nPrefix}.fields.variableValue`) })
|
||||||
|
})
|
||||||
return {
|
return {
|
||||||
isValid,
|
isValid: !errorMessages,
|
||||||
errorMessage: errorMessages,
|
errorMessage: errorMessages,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user