mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Display file references for agent dialogues #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
132 lines
4.0 KiB
TypeScript
132 lines
4.0 KiB
TypeScript
import { MessageType } from '@/constants/chat';
|
|
import { useGetFileIcon } from '@/pages/chat/hooks';
|
|
import { Spin } from 'antd';
|
|
|
|
import { useSendNextMessage } from './hooks';
|
|
|
|
import MessageInput from '@/components/message-input';
|
|
import MessageItem from '@/components/next-message-item';
|
|
import PdfDrawer from '@/components/pdf-drawer';
|
|
import { useClickDrawer } from '@/components/pdf-drawer/hooks';
|
|
import { useFetchAgent } from '@/hooks/use-agent-request';
|
|
import { useFetchUserInfo } from '@/hooks/user-setting-hooks';
|
|
import { Message } from '@/interfaces/database/chat';
|
|
import { buildMessageUuidWithRole } from '@/utils/chat';
|
|
import { get } from 'lodash';
|
|
import { useCallback } from 'react';
|
|
import { useParams } from 'umi';
|
|
import DebugContent from '../debug-content';
|
|
import { BeginQuery } from '../interface';
|
|
import { buildBeginQueryWithObject } from '../utils';
|
|
|
|
const AgentChatBox = () => {
|
|
const {
|
|
sendLoading,
|
|
handleInputChange,
|
|
handlePressEnter,
|
|
value,
|
|
loading,
|
|
ref,
|
|
derivedMessages,
|
|
stopOutputMessage,
|
|
sendFormMessage,
|
|
findReferenceByMessageId,
|
|
} = useSendNextMessage();
|
|
|
|
const { visible, hideModal, documentId, selectedChunk, clickDocumentButton } =
|
|
useClickDrawer();
|
|
useGetFileIcon();
|
|
const { data: userInfo } = useFetchUserInfo();
|
|
const { data: canvasInfo } = useFetchAgent();
|
|
const { id: canvasId } = useParams();
|
|
|
|
const getInputs = useCallback((message: Message) => {
|
|
return get(message, 'data.inputs', {}) as Record<string, BeginQuery>;
|
|
}, []);
|
|
|
|
const buildInputList = useCallback(
|
|
(message: Message) => {
|
|
return Object.entries(getInputs(message)).map(([key, val]) => {
|
|
return {
|
|
...val,
|
|
key,
|
|
};
|
|
});
|
|
},
|
|
[getInputs],
|
|
);
|
|
|
|
const handleOk = useCallback(
|
|
(message: Message) => (values: BeginQuery[]) => {
|
|
const inputs = getInputs(message);
|
|
const nextInputs = buildBeginQueryWithObject(inputs, values);
|
|
sendFormMessage({
|
|
inputs: nextInputs,
|
|
id: canvasId,
|
|
});
|
|
},
|
|
[canvasId, getInputs, sendFormMessage],
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<section className="flex flex-1 flex-col px-5 h-[90vh]">
|
|
<div className="flex-1 overflow-auto">
|
|
<div>
|
|
<Spin spinning={loading}>
|
|
{derivedMessages?.map((message, i) => {
|
|
return (
|
|
<MessageItem
|
|
loading={
|
|
message.role === MessageType.Assistant &&
|
|
sendLoading &&
|
|
derivedMessages.length - 1 === i
|
|
}
|
|
key={buildMessageUuidWithRole(message)}
|
|
nickname={userInfo.nickname}
|
|
avatar={userInfo.avatar}
|
|
avatarDialog={canvasInfo.avatar}
|
|
item={message}
|
|
reference={findReferenceByMessageId(message.id)}
|
|
clickDocumentButton={clickDocumentButton}
|
|
index={i}
|
|
showLikeButton={false}
|
|
sendLoading={sendLoading}
|
|
>
|
|
<DebugContent
|
|
parameters={buildInputList(message)}
|
|
ok={handleOk(message)}
|
|
isNext={false}
|
|
btnText={'Submit'}
|
|
></DebugContent>
|
|
</MessageItem>
|
|
);
|
|
})}
|
|
</Spin>
|
|
</div>
|
|
<div ref={ref} />
|
|
</div>
|
|
<MessageInput
|
|
showUploadIcon={false}
|
|
value={value}
|
|
sendLoading={sendLoading}
|
|
disabled={false}
|
|
sendDisabled={sendLoading}
|
|
conversationId=""
|
|
onPressEnter={handlePressEnter}
|
|
onInputChange={handleInputChange}
|
|
stopOutputMessage={stopOutputMessage}
|
|
/>
|
|
</section>
|
|
<PdfDrawer
|
|
visible={visible}
|
|
hideModal={hideModal}
|
|
documentId={documentId}
|
|
chunk={selectedChunk}
|
|
></PdfDrawer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AgentChatBox;
|