wwf
2 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { useCallback } from 'react'
import produce from 'immer'
import type { AssignerNodeOperation, AssignerNodeType } from '../../types'
import { AssignerNodeInputType, WriteMode } from '../../types'
 
type Params = {
  id: string
  inputs: AssignerNodeType
  setInputs: (newInputs: AssignerNodeType) => void
}
function useVarList({
  inputs,
  setInputs,
}: Params) {
  const handleVarListChange = useCallback((newList: AssignerNodeOperation[]) => {
    const newInputs = produce(inputs, (draft) => {
      draft.items = newList
    })
    setInputs(newInputs)
  }, [inputs, setInputs])
 
  const handleAddVariable = useCallback(() => {
    const newInputs = produce(inputs, (draft) => {
      draft.items.push({
        variable_selector: [],
        input_type: AssignerNodeInputType.constant,
        operation: WriteMode.overwrite,
        value: '',
      })
    })
    setInputs(newInputs)
  }, [inputs, setInputs])
  return {
    handleVarListChange,
    handleAddVariable,
  }
}
 
export default useVarList