Fix: Fixed the issue that the key parameter duplication check of the begin operator was incorrect #3221 (#8964)

### What problem does this PR solve?

Fix: Fixed the issue that the key parameter duplication check of the
begin operator was incorrect #3221
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2025-07-22 11:27:57 +08:00
committed by GitHub
parent 95b9208b13
commit af00f2cad8

View File

@ -1,7 +1,7 @@
import { useSetModalState } from '@/hooks/common-hooks'; import { useSetModalState } from '@/hooks/common-hooks';
import { useSetSelectedRecord } from '@/hooks/logic-hooks'; import { useSetSelectedRecord } from '@/hooks/logic-hooks';
import { useCallback, useMemo, useState } from 'react'; import { useCallback, useMemo, useState } from 'react';
import { UseFormReturn } from 'react-hook-form'; import { UseFormReturn, useWatch } from 'react-hook-form';
import { BeginQuery, INextOperatorForm } from '../../interface'; import { BeginQuery, INextOperatorForm } from '../../interface';
export const useEditQueryRecord = ({ export const useEditQueryRecord = ({
@ -10,11 +10,14 @@ export const useEditQueryRecord = ({
const { setRecord, currentRecord } = useSetSelectedRecord<BeginQuery>(); const { setRecord, currentRecord } = useSetSelectedRecord<BeginQuery>();
const { visible, hideModal, showModal } = useSetModalState(); const { visible, hideModal, showModal } = useSetModalState();
const [index, setIndex] = useState(-1); const [index, setIndex] = useState(-1);
const inputs: BeginQuery[] = useWatch({
control: form.control,
name: 'inputs',
});
const otherThanCurrentQuery = useMemo(() => { const otherThanCurrentQuery = useMemo(() => {
const inputs: BeginQuery[] = form?.getValues('inputs') || [];
return inputs.filter((item, idx) => idx !== index); return inputs.filter((item, idx) => idx !== index);
}, [form, index]); }, [index, inputs]);
const handleEditRecord = useCallback( const handleEditRecord = useCallback(
(record: BeginQuery) => { (record: BeginQuery) => {