mirror of
https://github.com/langgenius/dify.git
synced 2026-03-06 08:06:37 +08:00
- Implemented File Upload node with support for uploading files to the sandbox. - Added necessary UI components including node panel and default configurations. - Enhanced workflow constants and enums to include File Upload. - Updated error handling for file upload operations. - Integrated File Upload into existing workflow structure, ensuring compatibility with variable handling and output management. - Added translations for new File Upload features in workflow.json.
66 lines
2.3 KiB
TypeScript
66 lines
2.3 KiB
TypeScript
import type { ValueSelector, Var } from '../../types'
|
|
import type { FileUploadNodeType } from './types'
|
|
import { produce } from 'immer'
|
|
import { useCallback, useMemo } from 'react'
|
|
import { useStoreApi } from 'reactflow'
|
|
import {
|
|
useIsChatMode,
|
|
useNodesReadOnly,
|
|
useWorkflow,
|
|
useWorkflowVariables,
|
|
} from '@/app/components/workflow/hooks'
|
|
import useNodeCrud from '@/app/components/workflow/nodes/_base/hooks/use-node-crud'
|
|
import { VarType } from '../../types'
|
|
|
|
const useConfig = (id: string, payload: FileUploadNodeType) => {
|
|
const { nodesReadOnly: readOnly } = useNodesReadOnly()
|
|
const { inputs, setInputs } = useNodeCrud<FileUploadNodeType>(id, payload)
|
|
|
|
const filterVar = useCallback((varPayload: Var) => {
|
|
return varPayload.type === VarType.file || varPayload.type === VarType.arrayFile
|
|
}, [])
|
|
|
|
const isChatMode = useIsChatMode()
|
|
const store = useStoreApi()
|
|
const { getBeforeNodesInSameBranch } = useWorkflow()
|
|
const { getNodes } = store.getState()
|
|
const currentNode = getNodes().find(n => n.id === id)
|
|
const isInIteration = payload.isInIteration
|
|
const iterationNode = isInIteration ? getNodes().find(n => n.id === currentNode!.parentId) : null
|
|
const isInLoop = payload.isInLoop
|
|
const loopNode = isInLoop ? getNodes().find(n => n.id === currentNode!.parentId) : null
|
|
|
|
const availableNodes = useMemo(() => {
|
|
return getBeforeNodesInSameBranch(id)
|
|
}, [getBeforeNodesInSameBranch, id])
|
|
|
|
const { getCurrentVariableType } = useWorkflowVariables()
|
|
const getType = useCallback((variable?: ValueSelector) => {
|
|
const varType = getCurrentVariableType({
|
|
parentNode: isInIteration ? iterationNode : loopNode,
|
|
valueSelector: variable || [],
|
|
availableNodes,
|
|
isChatMode,
|
|
isConstant: false,
|
|
})
|
|
return varType
|
|
}, [getCurrentVariableType, isInIteration, iterationNode, loopNode, availableNodes, isChatMode])
|
|
|
|
const handleVarChanges = useCallback((variable: ValueSelector | string) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.variable_selector = variable as ValueSelector
|
|
draft.is_array_file = getType(draft.variable_selector) === VarType.arrayFile
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs, getType])
|
|
|
|
return {
|
|
readOnly,
|
|
inputs,
|
|
filterVar,
|
|
handleVarChanges,
|
|
}
|
|
}
|
|
|
|
export default useConfig
|