| 12345678910111213141516171819202122232425262728293031 |
- import { omit } from 'lodash';
- import { useEffect } from 'react';
- import { UseFormReturn, useWatch } from 'react-hook-form';
- import { BeginQuery } from '../../interface';
- import useGraphStore from '../../store';
-
- function transferInputsArrayToObject(inputs: BeginQuery[] = []) {
- return inputs.reduce<Record<string, Omit<BeginQuery, 'key'>>>((pre, cur) => {
- pre[cur.key] = omit(cur, 'key');
-
- return pre;
- }, {});
- }
-
- export function useWatchFormChange(id?: string, form?: UseFormReturn) {
- let values = useWatch({ control: form?.control });
- const updateNodeForm = useGraphStore((state) => state.updateNodeForm);
-
- useEffect(() => {
- if (id && form?.formState.isDirty) {
- values = form?.getValues();
-
- const nextValues = {
- ...values,
- inputs: transferInputsArrayToObject(values.inputs),
- };
-
- updateNodeForm(id, nextValues);
- }
- }, [form?.formState.isDirty, id, updateNodeForm, values]);
- }
|