File size: 10,187 Bytes
057576a | 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 | import React, { useState, useMemo } from 'react';
import { Search, LogOut, Settings, UserPlus, MessageCircle, Users } from 'lucide-react';
import { useAuth } from '../../contexts/AuthContext';
import { formatConversationTime } from '../../utils/dateFormatter';
const Sidebar = ({
conversations,
selectedConversation,
onSelectConversation,
onNewConversation,
onlineUsers
}) => {
const { user, logout } = useAuth();
const [searchTerm, setSearchTerm] = useState('');
const filteredConversations = useMemo(() => {
if (!searchTerm) return conversations;
return conversations.filter(conv => {
if (conv.type === 'direct') {
const otherParticipant = conv.participants.find(p => p.user._id !== user.id);
return otherParticipant?.user.displayName.toLowerCase().includes(searchTerm.toLowerCase()) ||
otherParticipant?.user.username.toLowerCase().includes(searchTerm.toLowerCase());
} else {
return conv.name.toLowerCase().includes(searchTerm.toLowerCase());
}
});
}, [conversations, searchTerm, user.id]);
const getConversationDisplay = (conversation) => {
if (conversation.type === 'direct') {
const otherParticipant = conversation.participants.find(p => p.user._id !== user.id);
return {
name: otherParticipant?.user.displayName || 'Unknown User',
avatar: otherParticipant?.user.avatar,
status: otherParticipant?.user.status,
isOnline: onlineUsers.has(otherParticipant?.user._id)
};
} else {
return {
name: conversation.name,
avatar: conversation.avatar,
isGroup: true
};
}
};
const getLastMessagePreview = (conversation) => {
if (!conversation.lastMessage) return 'No messages yet';
const lastMessage = conversation.lastMessage;
if (lastMessage.type === 'image') return '📷 Image';
if (lastMessage.type === 'audio') return '🎵 Audio';
if (lastMessage.type === 'file') return '📎 File';
return lastMessage.content.length > 30
? lastMessage.content.substring(0, 30) + '...'
: lastMessage.content;
};
const handleLogout = async () => {
if (window.confirm('Are you sure you want to logout?')) {
await logout();
}
};
return (
<div className="flex flex-col h-full bg-white dark:bg-gray-800">
{/* Header */}
<div className="p-4 border-b border-gray-200 dark:border-gray-700">
<div className="flex items-center justify-between mb-4">
<div className="flex items-center space-x-3">
<div className="w-10 h-10 bg-primary-500 rounded-full flex items-center justify-center">
<MessageCircle className="w-6 h-6 text-white" />
</div>
<div>
<h1 className="text-lg font-bold text-gray-900 dark:text-white">YSNRFD</h1>
<p className="text-xs text-gray-500 dark:text-gray-400">Messenger</p>
</div>
</div>
<div className="flex items-center space-x-2">
<button
onClick={onNewConversation}
className="p-2 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors"
title="New conversation"
>
<UserPlus size={20} />
</button>
<button
onClick={handleLogout}
className="p-2 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg transition-colors"
title="Logout"
>
<LogOut size={20} />
</button>
</div>
</div>
{/* Search Bar */}
<div className="relative">
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 w-4 h-4" />
<input
type="text"
placeholder="Search conversations..."
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
className="w-full pl-10 pr-4 py-2 bg-gray-100 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent text-sm text-gray-900 dark:text-white placeholder-gray-500 dark:placeholder-gray-400"
/>
</div>
</div>
{/* Conversations List */}
<div className="flex-1 overflow-y-auto scrollbar-thin">
{filteredConversations.length === 0 ? (
<div className="flex flex-col items-center justify-center h-full p-8 text-center">
<Users className="w-16 h-16 text-gray-300 dark:text-gray-600 mb-4" />
<h3 className="text-lg font-medium text-gray-900 dark:text-white mb-2">
{searchTerm ? 'No conversations found' : 'No conversations yet'}
</h3>
<p className="text-gray-500 dark:text-gray-400 mb-4">
{searchTerm
? 'Try adjusting your search terms'
: 'Start a new conversation to begin messaging'
}
</p>
{!searchTerm && (
<button
onClick={onNewConversation}
className="btn-primary"
>
Start Conversation
</button>
)}
</div>
) : (
<div className="p-2">
{filteredConversations.map((conversation) => {
const display = getConversationDisplay(conversation);
const isSelected = selectedConversation?._id === conversation._id;
return (
<div
key={conversation._id}
onClick={() => onSelectConversation(conversation)}
className={`sidebar-item ${isSelected ? 'sidebar-item-active' : ''}`}
>
{/* Avatar */}
<div className="relative flex-shrink-0">
<div className="w-12 h-12 bg-gradient-to-br from-primary-400 to-primary-600 rounded-full flex items-center justify-center text-white font-medium text-sm">
{display.avatar ? (
<img
src={display.avatar}
alt={display.name}
className="w-12 h-12 rounded-full object-cover"
/>
) : (
display.name.charAt(0).toUpperCase()
)}
</div>
{/* Online Status Indicator */}
{display.isOnline && (
<div className="absolute bottom-0 right-0 w-3 h-3 bg-green-500 border-2 border-white dark:border-gray-800 rounded-full"></div>
)}
{/* Group Indicator */}
{display.isGroup && (
<div className="absolute bottom-0 right-0 w-3 h-3 bg-blue-500 border-2 border-white dark:border-gray-800 rounded-full flex items-center justify-center">
<Users className="w-2 h-2 text-white" />
</div>
)}
</div>
{/* Conversation Info */}
<div className="flex-1 min-w-0">
<div className="flex items-center justify-between">
<h3 className="text-sm font-semibold text-gray-900 dark:text-white truncate">
{display.name}
</h3>
{conversation.lastMessage && (
<span className="text-xs text-gray-500 dark:text-gray-400 whitespace-nowrap">
{formatConversationTime(conversation.lastMessage.createdAt)}
</span>
)}
</div>
<div className="flex items-center justify-between">
<p className="text-sm text-gray-500 dark:text-gray-400 truncate">
{getLastMessagePreview(conversation)}
</p>
{/* Unread message indicator */}
{conversation.unreadCount > 0 && (
<span className="bg-primary-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center flex-shrink-0">
{conversation.unreadCount}
</span>
)}
</div>
</div>
</div>
);
})}
</div>
)}
</div>
{/* User Profile Footer */}
<div className="p-4 border-t border-gray-200 dark:border-gray-700">
<div className="flex items-center space-x-3">
<div className="w-10 h-10 bg-gradient-to-br from-primary-400 to-primary-600 rounded-full flex items-center justify-center text-white font-medium text-sm">
{user.avatar ? (
<img
src={user.avatar}
alt={user.displayName}
className="w-10 h-10 rounded-full object-cover"
/>
) : (
user.displayName.charAt(0).toUpperCase()
)}
</div>
<div className="flex-1 min-w-0">
<h3 className="text-sm font-semibold text-gray-900 dark:text-white truncate">
{user.displayName}
</h3>
<p className="text-xs text-gray-500 dark:text-gray-400 truncate">
@{user.username}
</p>
</div>
<div className="w-2 h-2 bg-green-500 rounded-full" title="Online"></div>
</div>
</div>
</div>
);
};
export default Sidebar; |