- Created automated script (scripts/align-8px-grid.py) to align all spacing to 8px grid - Replaced non-8px-aligned spacing: gap-3/p-3/m-3 (12px) → gap-4/p-4/m-4 (16px), gap-5/p-5/m-5 (20px) → gap-6/p-6/m-6 (24px), gap-10/p-10/m-10 (40px) → gap-12/p-12/m-12 (48px), gap-20/p-20/m-20 (80px) → gap-24/p-24/m-24 (96px) - Preserved: 4px values (gap-1, p-1, m-1) as they may be intentional fine-tuning, responsive breakpoints (sm:, md:, lg:), test files, documentation - Modified files across all components to ensure consistent 8px grid alignment - Action 11.2.1.3: Align all elements to 8px grid - COMPLETE
179 lines
6.7 KiB
TypeScript
179 lines
6.7 KiB
TypeScript
import { useEffect, useRef, useMemo } from 'react';
|
|
import { useChatStore } from '../store/chatStore';
|
|
import { useUser } from '@/features/auth/hooks/useUser';
|
|
import { Card, CardContent } from '@/components/ui/card';
|
|
import { Button } from '@/components/ui/button';
|
|
import { sanitizeChatMessage } from '@/utils/sanitize';
|
|
import {
|
|
MoreVertical,
|
|
Reply,
|
|
Smile,
|
|
ThumbsUp,
|
|
ThumbsDown,
|
|
MessageSquare,
|
|
} from 'lucide-react';
|
|
|
|
export function ChatMessages() {
|
|
const { currentConversationId, conversations, messages, typingUsers } = useChatStore();
|
|
const { data: user } = useUser();
|
|
const messagesEndRef = useRef<HTMLDivElement>(null);
|
|
|
|
// Action 4.5.1.5: Get current conversation from conversations array using ID
|
|
const currentConversation = useMemo(() => {
|
|
if (!currentConversationId) return null;
|
|
return conversations.find((c) => c.id === currentConversationId) || null;
|
|
}, [currentConversationId, conversations]);
|
|
|
|
const conversationMessages = currentConversationId
|
|
? messages[currentConversationId] || []
|
|
: [];
|
|
|
|
const typingUserIds = currentConversationId
|
|
? typingUsers[currentConversationId] || []
|
|
: [];
|
|
|
|
useEffect(() => {
|
|
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' });
|
|
}, [conversationMessages]);
|
|
|
|
if (!currentConversation) {
|
|
return (
|
|
<div className="flex-1 flex items-center justify-center bg-muted/50">
|
|
<div className="text-center">
|
|
<MessageSquare className="h-12 w-12 mx-auto mb-4 text-muted-foreground" />
|
|
<h3 className="text-lg font-medium text-muted-foreground">
|
|
Sélectionnez une conversation
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Choisissez une conversation pour commencer à discuter
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex-1 flex flex-col">
|
|
{/* En-tête de la conversation */}
|
|
<div className="p-4 border-b bg-background">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h3 className="font-semibold">
|
|
{currentConversation.name ||
|
|
`Conversation ${currentConversation.id.slice(0, 8)}`}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
{currentConversation.participants?.length || 0} participant
|
|
{(currentConversation.participants?.length || 0) > 1 ? 's' : ''}
|
|
</p>
|
|
</div>
|
|
<Button variant="ghost" size="icon">
|
|
<MoreVertical className="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Messages */}
|
|
<div className="flex-1 overflow-y-auto p-4 space-y-4">
|
|
{conversationMessages.length === 0 ? (
|
|
<div className="text-center text-muted-foreground">
|
|
<p>Aucun message dans cette conversation</p>
|
|
</div>
|
|
) : (
|
|
conversationMessages.map((message) => {
|
|
const isOwn = message.sender_id === user?.id;
|
|
return (
|
|
<div
|
|
key={message.id}
|
|
className={`flex ${isOwn ? 'justify-end' : 'justify-start'}`}
|
|
>
|
|
<div className={`max-w-[70%] ${isOwn ? 'order-2' : 'order-1'}`}>
|
|
<div className="flex items-center space-x-2 mb-1">
|
|
<span className="text-xs text-muted-foreground">
|
|
{isOwn ? 'Vous' : `Utilisateur ${message.sender_id}`}
|
|
</span>
|
|
<span className="text-xs text-muted-foreground">
|
|
{new Date(message.created_at).toLocaleTimeString([], {
|
|
hour: '2-digit',
|
|
minute: '2-digit',
|
|
})}
|
|
</span>
|
|
</div>
|
|
<Card
|
|
className={`${isOwn ? 'bg-primary text-primary-foreground' : ''}`}
|
|
>
|
|
<CardContent className="p-4">
|
|
<p
|
|
className="text-sm"
|
|
dangerouslySetInnerHTML={{
|
|
__html: sanitizeChatMessage(message.content),
|
|
}}
|
|
/>
|
|
|
|
{/* Réactions */}
|
|
{message.reactions && Object.keys(message.reactions).length > 0 && (
|
|
<div className="flex flex-wrap gap-1 mt-2">
|
|
{Object.entries(message.reactions).map(([emoji, userIds]) => (
|
|
<Button
|
|
key={emoji}
|
|
variant="ghost"
|
|
size="sm"
|
|
className="h-6 px-2 text-xs"
|
|
>
|
|
{emoji} {userIds.length}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Actions sur le message */}
|
|
<div className="flex items-center space-x-1 mt-1 opacity-0 group-hover:opacity-100 transition-opacity">
|
|
<Button variant="ghost" size="sm" className="h-6 px-2">
|
|
<ThumbsUp className="h-3 w-3" />
|
|
</Button>
|
|
<Button variant="ghost" size="sm" className="h-6 px-2">
|
|
<ThumbsDown className="h-3 w-3" />
|
|
</Button>
|
|
<Button variant="ghost" size="sm" className="h-6 px-2">
|
|
<Reply className="h-3 w-3" />
|
|
</Button>
|
|
<Button variant="ghost" size="sm" className="h-6 px-2">
|
|
<Smile className="h-3 w-3" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
})
|
|
)}
|
|
|
|
{/* Indicateur de frappe */}
|
|
{typingUserIds.length > 0 && (
|
|
<div className="flex items-center space-x-2 text-sm text-muted-foreground">
|
|
<div className="flex space-x-1">
|
|
<div className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce"></div>
|
|
<div
|
|
className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce"
|
|
style={{ animationDelay: '0.1s' }}
|
|
></div>
|
|
<div
|
|
className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce"
|
|
style={{ animationDelay: '0.2s' }}
|
|
></div>
|
|
</div>
|
|
<span>
|
|
{typingUserIds.length === 1
|
|
? "Quelqu'un"
|
|
: `${typingUserIds.length} personnes`}{' '}
|
|
est en train d'écrire...
|
|
</span>
|
|
</div>
|
|
)}
|
|
|
|
<div ref={messagesEndRef} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|