mirror of https://github.com/langgenius/dify.git
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { useCallback } from 'react'
|
|
import produce from 'immer'
|
|
import useVarList from '../_base/hooks/use-var-list'
|
|
import useOutputVarList from '../_base/hooks/use-output-var-list'
|
|
import type { CodeLanguage, CodeNodeType } from './types'
|
|
import useNodeCrud from '@/app/components/workflow/nodes/_base/hooks/use-node-crud'
|
|
|
|
const useConfig = (id: string, payload: CodeNodeType) => {
|
|
const { inputs, setInputs } = useNodeCrud<CodeNodeType>(id, payload)
|
|
const { handleVarListChange, handleAddVariable } = useVarList<CodeNodeType>({
|
|
inputs,
|
|
setInputs,
|
|
})
|
|
|
|
const handleCodeChange = useCallback((code: string) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.code = code
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleCodeLanguageChange = useCallback((codeLanguage: CodeLanguage) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.code_language = codeLanguage
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const { handleVarListChange: handleOutputVarListChange, handleAddVariable: handleAddOutputVariable } = useOutputVarList<CodeNodeType>({
|
|
inputs,
|
|
setInputs,
|
|
})
|
|
|
|
return {
|
|
inputs,
|
|
handleVarListChange,
|
|
handleAddVariable,
|
|
handleCodeChange,
|
|
handleCodeLanguageChange,
|
|
handleOutputVarListChange,
|
|
handleAddOutputVariable,
|
|
}
|
|
}
|
|
|
|
export default useConfig
|