mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
### What problem does this PR solve? Feat: Use the message_id returned by the interface as the id of the reply message #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
109 lines
3.4 KiB
TypeScript
109 lines
3.4 KiB
TypeScript
import { Input } from '@/components/ui/input';
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from '@/components/ui/sheet';
|
|
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { IModalProps } from '@/interfaces/common';
|
|
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { cn } from '@/lib/utils';
|
|
import { lowerFirst } from 'lodash';
|
|
import { Play, X } from 'lucide-react';
|
|
import { BeginId, Operator } from '../constant';
|
|
import { AgentFormContext } from '../context';
|
|
import { RunTooltip } from '../flow-tooltip';
|
|
import { useHandleNodeNameChange } from '../hooks';
|
|
import OperatorIcon from '../operator-icon';
|
|
import { needsSingleStepDebugging } from '../utils';
|
|
import SingleDebugDrawer from './single-debug-drawer';
|
|
import { useFormConfigMap } from './use-form-config-map';
|
|
|
|
interface IProps {
|
|
node?: RAGFlowNodeType;
|
|
singleDebugDrawerVisible: IModalProps<any>['visible'];
|
|
hideSingleDebugDrawer: IModalProps<any>['hideModal'];
|
|
showSingleDebugDrawer: IModalProps<any>['showModal'];
|
|
}
|
|
|
|
const EmptyContent = () => <div></div>;
|
|
|
|
const FormSheet = ({
|
|
visible,
|
|
hideModal,
|
|
node,
|
|
singleDebugDrawerVisible,
|
|
hideSingleDebugDrawer,
|
|
showSingleDebugDrawer,
|
|
}: IModalProps<any> & IProps) => {
|
|
const operatorName: Operator = node?.data.label as Operator;
|
|
|
|
const FormConfigMap = useFormConfigMap();
|
|
|
|
const currentFormMap = FormConfigMap[operatorName];
|
|
|
|
const OperatorForm = currentFormMap?.component ?? EmptyContent;
|
|
|
|
const { name, handleNameBlur, handleNameChange } = useHandleNodeNameChange({
|
|
id: node?.id,
|
|
data: node?.data,
|
|
});
|
|
|
|
const { t } = useTranslate('flow');
|
|
|
|
return (
|
|
<Sheet open={visible} modal={false}>
|
|
<SheetContent className={cn('top-20 p-0')} closeIcon={false}>
|
|
<SheetHeader>
|
|
<SheetTitle className="hidden"></SheetTitle>
|
|
<section className="flex-col border-b py-2 px-5">
|
|
<div className="flex items-center gap-2 pb-3">
|
|
<OperatorIcon name={operatorName}></OperatorIcon>
|
|
<div className="flex items-center gap-1 flex-1">
|
|
<label htmlFor="">{t('title')}</label>
|
|
{node?.id === BeginId ? (
|
|
<span>{t(BeginId)}</span>
|
|
) : (
|
|
<Input
|
|
value={name}
|
|
onBlur={handleNameBlur}
|
|
onChange={handleNameChange}
|
|
></Input>
|
|
)}
|
|
</div>
|
|
|
|
{needsSingleStepDebugging(operatorName) && (
|
|
<RunTooltip>
|
|
<Play
|
|
className="size-5 cursor-pointer"
|
|
onClick={showSingleDebugDrawer}
|
|
/>
|
|
</RunTooltip>
|
|
)}
|
|
<X onClick={hideModal} />
|
|
</div>
|
|
<span>{t(`${lowerFirst(operatorName)}Description`)}</span>
|
|
</section>
|
|
</SheetHeader>
|
|
<section className="pt-4 overflow-auto max-h-[85vh]">
|
|
{visible && (
|
|
<AgentFormContext.Provider value={node}>
|
|
<OperatorForm node={node} key={node?.id}></OperatorForm>
|
|
</AgentFormContext.Provider>
|
|
)}
|
|
</section>
|
|
</SheetContent>
|
|
{singleDebugDrawerVisible && (
|
|
<SingleDebugDrawer
|
|
visible={singleDebugDrawerVisible}
|
|
hideModal={hideSingleDebugDrawer}
|
|
componentId={node?.id}
|
|
></SingleDebugDrawer>
|
|
)}
|
|
</Sheet>
|
|
);
|
|
};
|
|
|
|
export default FormSheet;
|