mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-30 16:45:35 +08:00
### What problem does this PR solve? Fix: Fixed the issue that variables defined in the begin operator cannot be referenced in the switch operator. #3221 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from '@/components/ui/sheet';
|
|
import { IModalProps } from '@/interfaces/common';
|
|
import { cn } from '@/lib/utils';
|
|
import { useCallback } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { BeginId } from '../constant';
|
|
import DebugContent from '../debug-content';
|
|
import { useGetBeginNodeDataInputs } from '../hooks/use-get-begin-query';
|
|
import { useSaveGraphBeforeOpeningDebugDrawer } from '../hooks/use-save-graph';
|
|
import { BeginQuery } from '../interface';
|
|
import useGraphStore from '../store';
|
|
import { buildBeginQueryWithObject } from '../utils';
|
|
|
|
const RunSheet = ({
|
|
hideModal,
|
|
showModal: showChatModal,
|
|
}: IModalProps<any>) => {
|
|
const { t } = useTranslation();
|
|
const { updateNodeForm, getNode } = useGraphStore((state) => state);
|
|
|
|
const inputs = useGetBeginNodeDataInputs();
|
|
|
|
const { handleRun, loading } = useSaveGraphBeforeOpeningDebugDrawer(
|
|
showChatModal!,
|
|
);
|
|
|
|
const handleRunAgent = useCallback(
|
|
(nextValues: BeginQuery[]) => {
|
|
const beginNode = getNode(BeginId);
|
|
const inputs: Record<string, BeginQuery> = beginNode?.data.form.inputs;
|
|
|
|
const nextInputs = buildBeginQueryWithObject(inputs, nextValues);
|
|
|
|
const currentNodes = updateNodeForm(BeginId, nextInputs, ['inputs']);
|
|
handleRun(currentNodes);
|
|
hideModal?.();
|
|
},
|
|
[getNode, handleRun, hideModal, updateNodeForm],
|
|
);
|
|
|
|
const onOk = useCallback(
|
|
async (nextValues: any[]) => {
|
|
handleRunAgent(nextValues);
|
|
},
|
|
[handleRunAgent],
|
|
);
|
|
|
|
return (
|
|
<Sheet onOpenChange={hideModal} open>
|
|
<SheetContent className={cn('top-20 p-2')}>
|
|
<SheetHeader>
|
|
<SheetTitle>{t('flow.testRun')}</SheetTitle>
|
|
<DebugContent
|
|
ok={onOk}
|
|
parameters={inputs}
|
|
loading={loading}
|
|
></DebugContent>
|
|
</SheetHeader>
|
|
</SheetContent>
|
|
</Sheet>
|
|
);
|
|
};
|
|
|
|
export default RunSheet;
|