mirror of
https://github.com/langgenius/dify.git
synced 2026-07-20 09:38:32 +08:00
111 lines
3.7 KiB
TypeScript
111 lines
3.7 KiB
TypeScript
import type { TFunction } from 'i18next'
|
|
import type { NodeDefault, Var } from '../../types'
|
|
import type { DeliveryMethod, EmailConfig, FormInputItem, HumanInputNodeType } from './types'
|
|
import { BlockClassification } from '@/app/components/workflow/block-selector/types'
|
|
import { BlockEnum, VarType } from '@/app/components/workflow/types'
|
|
import { genNodeMetaData } from '@/app/components/workflow/utils'
|
|
import { DeliveryMethodType } from './types'
|
|
|
|
const i18nPrefix = 'nodes.humanInput.errorMsg'
|
|
|
|
const metaData = genNodeMetaData({
|
|
classification: BlockClassification.Logic,
|
|
sort: 1,
|
|
type: BlockEnum.HumanInput,
|
|
})
|
|
|
|
const getFormInputVarType = (input: FormInputItem): VarType => {
|
|
if (input.type === 'file') return VarType.file
|
|
|
|
if (input.type === 'file-list') return VarType.arrayFile
|
|
|
|
return VarType.string
|
|
}
|
|
|
|
const buildOutputVars = (inputs: FormInputItem[]): Var[] => {
|
|
return inputs.map((input) => {
|
|
return {
|
|
variable: input.output_variable_name,
|
|
type: getFormInputVarType(input),
|
|
}
|
|
})
|
|
}
|
|
|
|
const isEmailConfigComplete = (config?: EmailConfig): boolean => {
|
|
if (!config) return false
|
|
|
|
if (!config.subject?.trim() || !config.body?.trim()) return false
|
|
|
|
if (!/\{\{#url#\}\}/.test(config.body.trim())) return false
|
|
|
|
return !!config.recipients?.whole_workspace || !!config.recipients?.items?.length
|
|
}
|
|
|
|
const hasIncompleteEnabledEmailConfig = (deliveryMethods: DeliveryMethod[]): boolean => {
|
|
return deliveryMethods.some((method) => {
|
|
return (
|
|
method.enabled &&
|
|
method.type === DeliveryMethodType.Email &&
|
|
!isEmailConfigComplete(method.config)
|
|
)
|
|
})
|
|
}
|
|
|
|
const nodeDefault: NodeDefault<HumanInputNodeType> = {
|
|
metaData,
|
|
defaultValue: {
|
|
delivery_methods: [],
|
|
user_actions: [],
|
|
form_content: '',
|
|
inputs: [],
|
|
timeout: 3,
|
|
timeout_unit: 'day',
|
|
},
|
|
checkValid(payload: HumanInputNodeType, t: TFunction<'workflow'>) {
|
|
let errorMessages = ''
|
|
if (!errorMessages && !payload.delivery_methods.length)
|
|
errorMessages = t(($) => $[`${i18nPrefix}.noDeliveryMethod`], { ns: 'workflow' })
|
|
|
|
if (
|
|
!errorMessages &&
|
|
payload.delivery_methods.length > 0 &&
|
|
!payload.delivery_methods.some((method) => method.enabled)
|
|
)
|
|
errorMessages = t(($) => $[`${i18nPrefix}.noDeliveryMethodEnabled`], { ns: 'workflow' })
|
|
|
|
if (!errorMessages && hasIncompleteEnabledEmailConfig(payload.delivery_methods))
|
|
errorMessages = t(($) => $[`${i18nPrefix}.emailConfigIncomplete`], { ns: 'workflow' })
|
|
|
|
if (!errorMessages && !payload.user_actions.length)
|
|
errorMessages = t(($) => $[`${i18nPrefix}.noUserActions`], { ns: 'workflow' })
|
|
|
|
if (!errorMessages && payload.user_actions.length > 0) {
|
|
const actionIds = payload.user_actions.map((action) => action.id)
|
|
const hasDuplicateIds = actionIds.length !== new Set(actionIds).size
|
|
if (hasDuplicateIds)
|
|
errorMessages = t(($) => $[`${i18nPrefix}.duplicateActionId`], { ns: 'workflow' })
|
|
}
|
|
|
|
if (!errorMessages && payload.user_actions.length > 0) {
|
|
const hasEmptyId = payload.user_actions.some((action) => !action.id?.trim())
|
|
if (hasEmptyId) errorMessages = t(($) => $[`${i18nPrefix}.emptyActionId`], { ns: 'workflow' })
|
|
}
|
|
|
|
if (!errorMessages && payload.user_actions.length > 0) {
|
|
const hasEmptyTitle = payload.user_actions.some((action) => !action.title?.trim())
|
|
if (hasEmptyTitle)
|
|
errorMessages = t(($) => $[`${i18nPrefix}.emptyActionTitle`], { ns: 'workflow' })
|
|
}
|
|
|
|
return {
|
|
isValid: !errorMessages,
|
|
errorMessage: errorMessages,
|
|
}
|
|
},
|
|
getOutputVars(payload, _allPluginInfoList, _ragVars) {
|
|
return buildOutputVars(payload.inputs)
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|