Spaces:
Configuration error
Configuration error
File size: 8,733 Bytes
2c6bb7b 590318c 2c6bb7b |
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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
import { useState, useRef, useEffect } from 'react'
import { useChatStore } from '@/store/chatStore'
import { useAuthStore } from '@/store/authStore'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import { ScrollArea } from '@/components/ui/scroll-area'
import {
Send,
Paperclip,
Smile,
Phone,
Video,
MoreVertical,
Users,
Info
} from 'lucide-react'
import { formatTime, getInitials } from '@/lib/utils'
export default function ChatWindow() {
const { user } = useAuthStore()
const { currentChat, messages, sendMessage, loading } = useChatStore()
const [messageText, setMessageText] = useState('')
const messagesEndRef = useRef<HTMLDivElement>(null)
const inputRef = useRef<HTMLInputElement>(null)
const chatMessages = currentChat ? messages[currentChat.id] || [] : []
useEffect(() => {
scrollToBottom()
}, [chatMessages])
const scrollToBottom = () => {
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' })
}
const handleSendMessage = async () => {
if (!messageText.trim() || !currentChat) return
try {
await sendMessage(currentChat.id, messageText.trim())
setMessageText('')
inputRef.current?.focus()
} catch (error) {
console.error('Failed to send message:', error)
}
}
const handleKeyPress = (e: React.KeyboardEvent) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault()
handleSendMessage()
}
}
const getChatDisplayName = () => {
if (!currentChat) return ''
if (currentChat.type === 'group') {
return currentChat.name || 'Unnamed Group'
} else {
const otherParticipant = currentChat.participants.find(p => p.userId !== user?.id)
return otherParticipant?.user.displayName || 'Unknown User'
}
}
const getChatAvatar = () => {
if (!currentChat) return undefined
if (currentChat.type === 'group') {
return currentChat.avatar
} else {
const otherParticipant = currentChat.participants.find(p => p.userId !== user?.id)
return otherParticipant?.user.avatar
}
}
const isMessageFromCurrentUser = (message: any) => {
return message.senderId === user?.id
}
if (!currentChat) {
return (
<div className="flex-1 flex items-center justify-center">
<div className="text-center">
<div className="text-6xl mb-4">π¬</div>
<h2 className="text-2xl font-semibold mb-2">Welcome to ChatApp</h2>
<p className="text-muted-foreground">
Select a chat to start messaging
</p>
</div>
</div>
)
}
return (
<div className="flex flex-col h-full">
{/* Header */}
<div className="flex items-center justify-between p-4 border-b border-border">
<div className="flex items-center space-x-3">
<Avatar className="w-10 h-10">
<AvatarImage src={getChatAvatar()} />
<AvatarFallback>
{currentChat.type === 'group' ? (
<Users className="w-5 h-5" />
) : (
getInitials(getChatDisplayName())
)}
</AvatarFallback>
</Avatar>
<div>
<h2 className="font-semibold">{getChatDisplayName()}</h2>
<p className="text-sm text-muted-foreground">
{currentChat.type === 'group'
? `${currentChat.participants.length} members`
: 'Online'
}
</p>
</div>
</div>
<div className="flex items-center space-x-2">
<Button variant="ghost" size="icon">
<Phone className="w-4 h-4" />
</Button>
<Button variant="ghost" size="icon">
<Video className="w-4 h-4" />
</Button>
<Button variant="ghost" size="icon">
<Info className="w-4 h-4" />
</Button>
<Button variant="ghost" size="icon">
<MoreVertical className="w-4 h-4" />
</Button>
</div>
</div>
{/* Messages */}
<ScrollArea className="flex-1 p-4">
<div className="space-y-4">
{loading ? (
<div className="flex items-center justify-center py-8">
<div className="text-muted-foreground">Loading messages...</div>
</div>
) : chatMessages.length === 0 ? (
<div className="flex items-center justify-center py-8">
<div className="text-center">
<div className="text-4xl mb-4">π</div>
<p className="text-muted-foreground">
No messages yet. Start the conversation!
</p>
</div>
</div>
) : (
chatMessages.map((message, index) => {
const isFromCurrentUser = isMessageFromCurrentUser(message)
const showAvatar = !isFromCurrentUser && (
index === 0 ||
chatMessages[index - 1]?.senderId !== message.senderId
)
return (
<div
key={message.id}
className={`flex ${isFromCurrentUser ? 'justify-end' : 'justify-start'}`}
>
<div className={`flex max-w-[70%] ${isFromCurrentUser ? 'flex-row-reverse' : 'flex-row'}`}>
{showAvatar && !isFromCurrentUser && (
<Avatar className="w-8 h-8 mr-2">
<AvatarImage src={message.sender?.avatar} />
<AvatarFallback>
{getInitials(message.sender?.displayName || 'U')}
</AvatarFallback>
</Avatar>
)}
<div className={`${!showAvatar && !isFromCurrentUser ? 'ml-10' : ''}`}>
<div
className={`
px-4 py-2 rounded-lg
${isFromCurrentUser
? 'bg-primary text-primary-foreground'
: 'bg-muted'
}
`}
>
{!isFromCurrentUser && showAvatar && currentChat.type === 'group' && (
<p className="text-xs font-medium mb-1 opacity-70">
{message.sender?.displayName}
</p>
)}
<p className="text-sm">{message.content}</p>
<div className={`flex items-center justify-end mt-1 space-x-1`}>
<span className="text-xs opacity-70">
{formatTime(message.createdAt)}
</span>
{isFromCurrentUser && (
<span className="text-xs opacity-70">
{message.status === 'sent' && 'β'}
{message.status === 'delivered' && 'ββ'}
{message.status === 'read' && 'ββ'}
</span>
)}
</div>
</div>
</div>
</div>
</div>
)
})
)}
<div ref={messagesEndRef} />
</div>
</ScrollArea>
{/* Message Input */}
<div className="p-4 border-t border-border">
<div className="flex items-center space-x-2">
<Button variant="ghost" size="icon">
<Paperclip className="w-4 h-4" />
</Button>
<div className="flex-1 relative">
<Input
ref={inputRef}
placeholder="Type a message..."
value={messageText}
onChange={(e) => setMessageText(e.target.value)}
onKeyPress={handleKeyPress}
className="pr-10"
/>
<Button
variant="ghost"
size="icon"
className="absolute right-1 top-1/2 transform -translate-y-1/2"
>
<Smile className="w-4 h-4" />
</Button>
</div>
<Button
onClick={handleSendMessage}
disabled={!messageText.trim()}
size="icon"
>
<Send className="w-4 h-4" />
</Button>
</div>
</div>
</div>
)
}
|