123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- import { useCallback } from 'react'
- import produce from 'immer'
- import { v4 as uuid4 } from 'uuid'
- import { useUpdateNodeInternals } from 'reactflow'
- import type {
- Var,
- } from '../../types'
- import { VarType } from '../../types'
- import { LogicalOperator } from './types'
- import type {
- CaseItem,
- HandleAddCondition,
- HandleRemoveCondition,
- HandleUpdateCondition,
- HandleUpdateConditionLogicalOperator,
- IfElseNodeType,
- } from './types'
- import {
- branchNameCorrect,
- getOperators,
- } from './utils'
- import useNodeCrud from '@/app/components/workflow/nodes/_base/hooks/use-node-crud'
- import {
- useEdgesInteractions,
- useNodesReadOnly,
- } from '@/app/components/workflow/hooks'
- import useAvailableVarList from '@/app/components/workflow/nodes/_base/hooks/use-available-var-list'
- const useConfig = (id: string, payload: IfElseNodeType) => {
- const updateNodeInternals = useUpdateNodeInternals()
- const { nodesReadOnly: readOnly } = useNodesReadOnly()
- const { handleEdgeDeleteByDeleteBranch } = useEdgesInteractions()
- const { inputs, setInputs } = useNodeCrud<IfElseNodeType>(id, payload)
- const filterVar = useCallback((varPayload: Var) => {
- return varPayload.type !== VarType.arrayFile
- }, [])
- const {
- availableVars,
- availableNodesWithParent,
- } = useAvailableVarList(id, {
- onlyLeafNodeVar: false,
- filterVar,
- })
- const filterNumberVar = useCallback((varPayload: Var) => {
- return varPayload.type === VarType.number
- }, [])
- const {
- availableVars: availableNumberVars,
- availableNodesWithParent: availableNumberNodesWithParent,
- } = useAvailableVarList(id, {
- onlyLeafNodeVar: false,
- filterVar: filterNumberVar,
- })
- const handleAddCase = useCallback(() => {
- const newInputs = produce(inputs, () => {
- if (inputs.cases) {
- const case_id = uuid4()
- inputs.cases.push({
- case_id,
- logical_operator: LogicalOperator.and,
- conditions: [],
- })
- if (inputs._targetBranches) {
- const elseCaseIndex = inputs._targetBranches.findIndex(branch => branch.id === 'false')
- if (elseCaseIndex > -1) {
- inputs._targetBranches = branchNameCorrect([
- ...inputs._targetBranches.slice(0, elseCaseIndex),
- {
- id: case_id,
- name: '',
- },
- ...inputs._targetBranches.slice(elseCaseIndex),
- ])
- }
- }
- }
- })
- setInputs(newInputs)
- }, [inputs, setInputs])
- const handleRemoveCase = useCallback((caseId: string) => {
- const newInputs = produce(inputs, (draft) => {
- draft.cases = draft.cases?.filter(item => item.case_id !== caseId)
- if (draft._targetBranches)
- draft._targetBranches = branchNameCorrect(draft._targetBranches.filter(branch => branch.id !== caseId))
- handleEdgeDeleteByDeleteBranch(id, caseId)
- })
- setInputs(newInputs)
- }, [inputs, setInputs, id, handleEdgeDeleteByDeleteBranch])
- const handleSortCase = useCallback((newCases: (CaseItem & { id: string })[]) => {
- const newInputs = produce(inputs, (draft) => {
- draft.cases = newCases.filter(Boolean).map(item => ({
- id: item.id,
- case_id: item.case_id,
- logical_operator: item.logical_operator,
- conditions: item.conditions,
- }))
- draft._targetBranches = branchNameCorrect([
- ...newCases.filter(Boolean).map(item => ({ id: item.case_id, name: '' })),
- { id: 'false', name: '' },
- ])
- })
- setInputs(newInputs)
- updateNodeInternals(id)
- }, [inputs, setInputs])
- const handleAddCondition = useCallback<HandleAddCondition>((caseId, valueSelector, varItem) => {
- const newInputs = produce(inputs, (draft) => {
- const targetCase = draft.cases?.find(item => item.case_id === caseId)
- if (targetCase) {
- targetCase.conditions.push({
- id: uuid4(),
- varType: varItem.type,
- variable_selector: valueSelector,
- comparison_operator: getOperators(varItem.type)[0],
- value: '',
- })
- }
- })
- setInputs(newInputs)
- }, [inputs, setInputs])
- const handleRemoveCondition = useCallback<HandleRemoveCondition>((caseId, conditionId) => {
- const newInputs = produce(inputs, (draft) => {
- const targetCase = draft.cases?.find(item => item.case_id === caseId)
- if (targetCase)
- targetCase.conditions = targetCase.conditions.filter(item => item.id !== conditionId)
- })
- setInputs(newInputs)
- }, [inputs, setInputs])
- const handleUpdateCondition = useCallback<HandleUpdateCondition>((caseId, conditionId, newCondition) => {
- const newInputs = produce(inputs, (draft) => {
- const targetCase = draft.cases?.find(item => item.case_id === caseId)
- if (targetCase) {
- const targetCondition = targetCase.conditions.find(item => item.id === conditionId)
- if (targetCondition)
- Object.assign(targetCondition, newCondition)
- }
- })
- setInputs(newInputs)
- }, [inputs, setInputs])
- const handleUpdateConditionLogicalOperator = useCallback<HandleUpdateConditionLogicalOperator>((caseId, value) => {
- const newInputs = produce(inputs, (draft) => {
- const targetCase = draft.cases?.find(item => item.case_id === caseId)
- if (targetCase)
- targetCase.logical_operator = value
- })
- setInputs(newInputs)
- }, [inputs, setInputs])
- return {
- readOnly,
- inputs,
- filterVar,
- filterNumberVar,
- handleAddCase,
- handleRemoveCase,
- handleSortCase,
- handleAddCondition,
- handleRemoveCondition,
- handleUpdateCondition,
- handleUpdateConditionLogicalOperator,
- nodesOutputVars: availableVars,
- availableNodes: availableNodesWithParent,
- nodesOutputNumberVars: availableNumberVars,
- availableNumberNodes: availableNumberNodesWithParent,
- }
- }
- export default useConfig
|