Spaces:
Sleeping
Sleeping
File size: 7,301 Bytes
fd52f31 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
import React, { useRef, useEffect, useState } from 'react';
import { FaRobot, FaUser, FaCopy, FaSearch, FaEdit, FaSave, FaTimes } from 'react-icons/fa';
import './ChatDetailModal.css';
/**
* Modal component for displaying and editing agent chat messages in detail
* @param {Object} props
* @param {boolean} props.isOpen - Whether the modal is open
* @param {function} props.onClose - Function to call when the modal is closed
* @param {string} props.agentName - The name of the agent
* @param {string} props.agentId - The ID of the agent
* @param {number} props.turn - The turn number
* @param {string} props.content - The chat message content
* @param {function} props.onSave - Function to call when the content is saved
*/
const ChatDetailModal = ({ isOpen, onClose, agentName, agentId, turn, content, onSave }) => {
const modalRef = useRef(null);
const [isEditing, setIsEditing] = useState(false);
const [editedContent, setEditedContent] = useState('');
const textareaRef = useRef(null);
// Initialize the editor with the current content when editing starts
useEffect(() => {
if (isEditing && content) {
// Remove any HTML tags to get plain text for editing
const plainText = content.replace(/<[^>]*>/g, '');
setEditedContent(plainText);
// Focus the textarea when editing starts
setTimeout(() => {
if (textareaRef.current) {
textareaRef.current.focus();
}
}, 100);
}
}, [isEditing, content]);
// Reset edited content when content changes (even if modal is already open)
useEffect(() => {
if (content && isOpen) {
// If we're currently editing, update the edited content
if (isEditing) {
const plainText = content.replace(/<[^>]*>/g, '');
setEditedContent(plainText);
}
}
}, [content, isOpen]);
// Handle clicks outside the modal to close it
useEffect(() => {
const handleClickOutside = (event) => {
if (modalRef.current && !modalRef.current.contains(event.target)) {
onClose();
}
};
if (isOpen) {
document.addEventListener('mousedown', handleClickOutside);
}
return () => {
document.removeEventListener('mousedown', handleClickOutside);
};
}, [isOpen, onClose]);
// Copy content to clipboard
const handleCopyContent = () => {
const plainText = content.replace(/<[^>]*>/g, '');
navigator.clipboard.writeText(plainText);
// Show a mini toast or feedback
const copyButton = document.querySelector('.copy-button');
if (copyButton) {
copyButton.classList.add('copied');
setTimeout(() => {
copyButton.classList.remove('copied');
}, 2000);
}
};
// Start editing the content
const handleStartEditing = () => {
setIsEditing(true);
};
// Cancel editing and reset
const handleCancelEdit = () => {
setIsEditing(false);
setEditedContent('');
};
// Save the edited content
const handleSaveEdit = () => {
if (onSave) {
onSave(agentId, turn, editedContent);
}
setIsEditing(false);
};
// Don't render anything if the modal is not open
if (!isOpen) return null;
// Get agent icon based on agent ID or name
const getAgentIcon = () => {
if (agentId === 'researcher') {
return <FaSearch />;
}
return <FaRobot />;
};
return (
<div className="chat-modal-overlay">
<div className="chat-modal-content" ref={modalRef}>
<div className="chat-modal-header">
<div className="agent-info">
<div className="agent-avatar">
{getAgentIcon()}
</div>
<div className="agent-details">
<h3>{agentName}</h3>
<span className="turn-badge">Turn {turn}</span>
</div>
</div>
<div className="modal-actions">
{!isEditing ? (
<>
<button
className="edit-button"
onClick={handleStartEditing}
title="Edit content"
>
<FaEdit />
</button>
<button
className="copy-button"
onClick={handleCopyContent}
title="Copy to clipboard"
>
<FaCopy />
</button>
</>
) : (
<>
<button
className="save-button"
onClick={handleSaveEdit}
title="Save changes"
>
<FaSave />
</button>
<button
className="cancel-button"
onClick={handleCancelEdit}
title="Cancel editing"
>
<FaTimes />
</button>
</>
)}
<button className="close-button" onClick={onClose}>×</button>
</div>
</div>
<div className="chat-modal-body">
{!isEditing ? (
<div className="content-box" dangerouslySetInnerHTML={{ __html: content }} />
) : (
<textarea
ref={textareaRef}
className="content-editor"
value={editedContent}
onChange={(e) => setEditedContent(e.target.value)}
placeholder="Edit the content..."
/>
)}
</div>
<div className="chat-modal-footer">
{!isEditing ? (
<button className="modal-button close-btn" onClick={onClose}>Close</button>
) : (
<>
<button className="modal-button cancel-btn" onClick={handleCancelEdit}>Cancel</button>
<button className="modal-button save-btn" onClick={handleSaveEdit}>Save Changes</button>
</>
)}
</div>
</div>
</div>
);
};
export default ChatDetailModal; |