Spaces:
Sleeping
Sleeping
File size: 7,579 Bytes
760b33c |
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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
import React, { useState } from 'react';
import { Button } from './ui/button';
import {
Copy,
ThumbsUp,
ThumbsDown,
ChevronDown,
ChevronUp,
Check,
Bot
} from 'lucide-react';
import { Badge } from './ui/badge';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from './ui/collapsible';
import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from './ui/dialog';
import { Textarea } from './ui/textarea';
import { Label } from './ui/label';
import type { Message as MessageType } from '../App';
import { toast } from 'sonner@2.0.3';
interface MessageProps {
message: MessageType;
showSenderInfo?: boolean; // For group chat mode
}
export function Message({ message, showSenderInfo = false }: MessageProps) {
const [feedback, setFeedback] = useState<'helpful' | 'not-helpful' | null>(null);
const [copied, setCopied] = useState(false);
const [referencesOpen, setReferencesOpen] = useState(false);
const [showFeedbackDialog, setShowFeedbackDialog] = useState(false);
const [feedbackType, setFeedbackType] = useState<'helpful' | 'not-helpful' | null>(null);
const [feedbackText, setFeedbackText] = useState('');
const isUser = message.role === 'user';
const handleCopy = async () => {
await navigator.clipboard.writeText(message.content);
setCopied(true);
toast.success('Message copied to clipboard');
setTimeout(() => setCopied(false), 2000);
};
const handleFeedback = (type: 'helpful' | 'not-helpful') => {
setFeedback(type);
toast.success(`Thanks for your feedback!`);
};
const handleFeedbackDialogOpen = (type: 'helpful' | 'not-helpful') => {
setFeedbackType(type);
setShowFeedbackDialog(true);
};
const handleFeedbackDialogClose = () => {
setShowFeedbackDialog(false);
setFeedbackType(null);
setFeedbackText('');
};
const handleFeedbackDialogSubmit = () => {
if (feedbackType) {
setFeedback(feedbackType);
toast.success(`Thanks for your feedback!`);
}
handleFeedbackDialogClose();
};
return (
<div className={`flex gap-3 ${isUser && !showSenderInfo ? 'justify-end' : 'justify-start'}`}>
{/* Avatar */}
{showSenderInfo && message.sender ? (
<div className={`w-8 h-8 rounded-full flex items-center justify-center flex-shrink-0 ${
message.sender.isAI
? 'bg-gradient-to-br from-purple-500 to-blue-500'
: 'bg-muted'
}`}>
{message.sender.isAI ? (
<Bot className="h-4 w-4 text-white" />
) : (
<span className="text-sm">
{message.sender.name.split(' ').map(n => n[0]).join('').toUpperCase()}
</span>
)}
</div>
) : !isUser ? (
<div className="w-8 h-8 rounded-full bg-gradient-to-br from-purple-500 to-blue-500 flex items-center justify-center flex-shrink-0">
<span className="text-white text-sm">C</span>
</div>
) : null}
<div className={`flex flex-col gap-2 max-w-[80%] ${isUser && !showSenderInfo ? 'items-end' : 'items-start'}`}>
{/* Sender name in group chat */}
{showSenderInfo && message.sender && (
<div className="flex items-center gap-2 px-1">
<span className="text-xs">{message.sender.name}</span>
{message.sender.isAI && (
<Badge variant="secondary" className="text-xs h-4 px-1">AI</Badge>
)}
</div>
)}
<div
className={`
rounded-2xl px-4 py-3
${isUser && !showSenderInfo
? 'bg-primary text-primary-foreground'
: 'bg-muted'
}
`}
>
<p className="whitespace-pre-wrap">{message.content}</p>
</div>
{/* References */}
{message.references && message.references.length > 0 && (
<Collapsible open={referencesOpen} onOpenChange={setReferencesOpen}>
<CollapsibleTrigger asChild>
<Button variant="ghost" size="sm" className="gap-1 h-7 text-xs">
{referencesOpen ? (
<ChevronUp className="h-3 w-3" />
) : (
<ChevronDown className="h-3 w-3" />
)}
{message.references.length} {message.references.length === 1 ? 'reference' : 'references'}
</Button>
</CollapsibleTrigger>
<CollapsibleContent className="space-y-1 mt-1">
{message.references.map((ref, index) => (
<Badge key={index} variant="outline" className="text-xs">
{ref}
</Badge>
))}
</CollapsibleContent>
</Collapsible>
)}
{/* Message Actions */}
<div className="flex items-center gap-1">
<Button
variant="ghost"
size="sm"
className="h-7 gap-1"
onClick={handleCopy}
>
{copied ? (
<>
<Check className="h-3 w-3" />
<span className="text-xs">Copied</span>
</>
) : (
<>
<Copy className="h-3 w-3" />
<span className="text-xs">Copy</span>
</>
)}
</Button>
{!isUser && (
<>
<Button
variant="ghost"
size="sm"
className={`h-7 gap-1 ${feedback === 'helpful' ? 'text-green-600' : ''}`}
onClick={() => handleFeedbackDialogOpen('helpful')}
>
<ThumbsUp className="h-3 w-3" />
<span className="text-xs">Helpful</span>
</Button>
<Button
variant="ghost"
size="sm"
className={`h-7 gap-1 ${feedback === 'not-helpful' ? 'text-red-600' : ''}`}
onClick={() => handleFeedbackDialogOpen('not-helpful')}
>
<ThumbsDown className="h-3 w-3" />
<span className="text-xs">Not helpful</span>
</Button>
</>
)}
</div>
</div>
{isUser && !showSenderInfo && (
<div className="w-8 h-8 rounded-full bg-muted flex items-center justify-center flex-shrink-0">
<span className="text-sm">👤</span>
</div>
)}
{/* Feedback Dialog */}
<Dialog open={showFeedbackDialog} onOpenChange={handleFeedbackDialogClose}>
<DialogContent className="sm:max-w-[425px]">
<DialogHeader>
<DialogTitle>Provide Feedback</DialogTitle>
<DialogDescription>
{feedbackType === 'helpful' ? 'Tell us why you found this message helpful.' : 'Tell us why you found this message not helpful.'}
</DialogDescription>
</DialogHeader>
<Textarea
className="h-20"
value={feedbackText}
onChange={(e) => setFeedbackText(e.target.value)}
placeholder="Type your feedback here..."
/>
<DialogFooter>
<Button
type="button"
variant="outline"
onClick={handleFeedbackDialogClose}
>
Cancel
</Button>
<Button
type="button"
onClick={handleFeedbackDialogSubmit}
>
Submit
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
</div>
);
} |