/** * @file MessageComponentBox.tsx * @description This file defines the MessageComponentBox component, which renders the content * of an AssistantMessage. It supports rendering various message types such as grounded text, * normal text, and follow-up questions. The component uses React and MobX for state management * and includes functionality for handling citation and follow-up actions, as well as displaying * agent processing information. */ import React, { useState } from 'react'; import { observer } from 'mobx-react'; import { AssistantMessage, Citation, MessageContent, PROCESSING_TYPE, ProcessingInfo, TEXT_TYPE } from '../types/types'; import ReactMarkdown from 'react-markdown'; /** * Props for the MessageComponentBox. * @interface MessageComponentProps * @property {AssistantMessage} message - The message data to display. * @property {number} index - The index of the message. * @property {Function} onFollowUpClick - Callback to handle follow-up question clicks. * @property {Function} onCitationClick - Callback to handle citation clicks. * @property {Function} updateMessageCitations - Function to update message citations. */ interface MessageComponentProps { message: AssistantMessage; onFollowUpClick: (question: string) => void; onCitationClick: (citation: Citation) => void; updateMessageCitations: (index: number, citations: Citation[]) => void; } /** * MessageComponentBox displays the content of an AssistantMessage including text, citations, * processing information, and follow-up questions. * @param {MessageComponentProps} props - The props for the component. */ const MessageComponentBox: React.FC = ({ message, onFollowUpClick, onCitationClick }) => { const [dropdownOpen, setDropdownOpen] = useState(false); const renderContent = (item: MessageContent) => { const i = item.index; if (item.type === TEXT_TYPE.GROUNDED) { const citation_ids = item.citation_ids || []; return ( {item.text} {citation_ids.map((id, idx) => { const citation = message.citations?.find(c => c.citation_id === id); if (!citation) return null; return ( ); })} ); } else if (item.type === TEXT_TYPE.NORMAL) { return ( {item.text} ); } else if ('query' in item) { return ( {JSON.stringify(item.query)} ); } else { return ( {JSON.stringify(item)} ); } }; const hasProcessingInfo = message.processing_info && message.processing_info.length > 0; const renderProcessingInfo = (info: ProcessingInfo) => { if (info.type === PROCESSING_TYPE.THOUGHT) { return (
Thought: {info.content}
); } else if (info.type === PROCESSING_TYPE.ACTION) { return (
Action: {info.content}
); } return null; }; return (
{message.content && message.content.map(messageFragment => {renderContent(messageFragment)})}
{/* Processing Information Dropdown */} {hasProcessingInfo && (
{dropdownOpen &&
{message.processing_info.map(renderProcessingInfo)}
}
)} {/* Follow-up Questions Section */} {message.follow_up_questions && message.follow_up_questions.length > 0 && (

Follow-up Questions:

{message.follow_up_questions.map((question, idx) => ( ))}
)}
); }; // Export the observer-wrapped component to allow MobX to react to state changes export default observer(MessageComponentBox);