feat: Implement agent messaging and settings pages with new components and icons.

This commit is contained in:
pradeepkumar
2026-01-18 23:58:25 +05:30
parent 48c4b564e5
commit c5ed8fb1aa
28 changed files with 1703 additions and 12 deletions

View File

@@ -0,0 +1,116 @@
'use client';
import Image from 'next/image';
interface ChatHeaderProps {
name: string;
role: string;
lastSeen: string;
avatar: string;
isOnline?: boolean;
pronouns?: string;
expertise?: string[];
}
export function ChatHeader({
name,
role,
lastSeen,
avatar,
isOnline = false,
pronouns,
expertise = [],
}: ChatHeaderProps) {
return (
<div className="border-b border-[#00293d]/10 pb-4">
{/* Top row - Name, status, actions */}
<div className="flex items-center justify-between mb-3">
<div className="flex items-center gap-2">
<h2 className="font-fractul font-bold text-[14px] leading-[17px] text-[#00293D]">
{name}
</h2>
<span className={`w-2.5 h-2.5 rounded-full ${isOnline ? 'bg-green-500' : 'bg-gray-400'}`} />
<span className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D]">
{role}
</span>
<span className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D]">
{lastSeen}
</span>
</div>
<div className="flex items-center gap-2">
<button className="p-2 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/three-dots-icon.svg"
alt="More options"
width={24}
height={24}
/>
</button>
<button className="p-2 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/star-outline-icon.svg"
alt="Star conversation"
width={24}
height={24}
/>
</button>
</div>
</div>
{/* User profile row */}
<div className="flex items-start gap-3">
{/* Avatar */}
<div className="relative flex-shrink-0">
<div className="w-[50px] h-[50px] rounded-full overflow-hidden">
<Image
src={avatar}
alt={name}
width={50}
height={50}
className="w-full h-full object-cover"
/>
</div>
{isOnline && (
<div className="absolute bottom-0 right-0 w-3 h-3 bg-green-500 rounded-full border-2 border-white" />
)}
</div>
{/* User info */}
<div className="flex-1">
<div className="flex items-center gap-2 mb-1">
<span className="font-fractul font-bold text-[14px] leading-[17px] text-[#00293D]">
{name}
</span>
<Image
src="/assets/icons/shield-verified-icon.svg"
alt="Verified"
width={17}
height={18}
/>
{pronouns && (
<span className="font-fractul font-bold text-[14px] leading-[17px] text-[#00293D]">
({pronouns})
</span>
)}
</div>
{/* Expertise tags */}
{expertise.length > 0 && (
<div className="flex items-center gap-2 flex-wrap">
{expertise.map((tag, index) => (
<span key={index} className="flex items-center">
<span className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D]">
{tag}
</span>
{index < expertise.length - 1 && (
<span className="mx-2 text-[#00293d]/30">|</span>
)}
</span>
))}
</div>
)}
</div>
</div>
</div>
);
}

View File

@@ -0,0 +1,65 @@
'use client';
import Image from 'next/image';
interface ConversationItemProps {
id: string;
name: string;
avatar: string;
lastMessage: string;
date: string;
isOnline?: boolean;
isSelected?: boolean;
onClick?: () => void;
}
export function ConversationItem({
id,
name,
avatar,
lastMessage,
date,
isOnline = false,
isSelected = false,
onClick,
}: ConversationItemProps) {
return (
<div
onClick={onClick}
className={`flex items-start gap-3 p-4 border border-[#00293d]/10 rounded-[15px] cursor-pointer transition-colors ${
isSelected ? 'bg-[#00293d]/5' : 'hover:bg-[#00293d]/5'
}`}
>
{/* Avatar with online indicator */}
<div className="relative flex-shrink-0">
<div className="w-[70px] h-[70px] rounded-full overflow-hidden">
<Image
src={avatar}
alt={name}
width={70}
height={70}
className="w-full h-full object-cover"
/>
</div>
{isOnline && (
<div className="absolute bottom-1 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white" />
)}
</div>
{/* Content */}
<div className="flex-1 min-w-0">
<p className="font-fractul font-medium text-[14px] leading-[17px] text-[#00293D] mb-1">
{name}
</p>
<p className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D] line-clamp-2">
{lastMessage}
</p>
</div>
{/* Date */}
<p className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D] flex-shrink-0">
{date}
</p>
</div>
);
}

View File

@@ -0,0 +1,41 @@
'use client';
import Image from 'next/image';
import { ConversationItem } from './ConversationItem';
interface Conversation {
id: string;
name: string;
avatar: string;
lastMessage: string;
date: string;
isOnline?: boolean;
}
interface ConversationListProps {
conversations: Conversation[];
selectedId: string | null;
onSelect: (id: string) => void;
}
export function ConversationList({
conversations,
selectedId,
onSelect,
}: ConversationListProps) {
return (
<div className="border border-[#00293d]/10 rounded-[15px] bg-white h-full flex flex-col">
{/* Scrollable conversation list */}
<div className="flex-1 overflow-y-auto p-2 space-y-2">
{conversations.map((conversation) => (
<ConversationItem
key={conversation.id}
{...conversation}
isSelected={selectedId === conversation.id}
onClick={() => onSelect(conversation.id)}
/>
))}
</div>
</div>
);
}

View File

@@ -0,0 +1,98 @@
'use client';
import Image from 'next/image';
import { useState } from 'react';
interface MessageInputProps {
onSend?: (message: string) => void;
}
export function MessageInput({ onSend }: MessageInputProps) {
const [message, setMessage] = useState('');
const handleSend = () => {
if (message.trim() && onSend) {
onSend(message.trim());
setMessage('');
}
};
const handleKeyDown = (e: React.KeyboardEvent) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSend();
}
};
return (
<div className="border border-[#00293d]/10 rounded-[20px] bg-white p-4">
{/* Text input area */}
<div className="border border-[#00293d]/10 rounded-[20px] p-4 mb-3">
<textarea
value={message}
onChange={(e) => setMessage(e.target.value)}
onKeyDown={handleKeyDown}
placeholder="Write a Message........"
className="w-full min-h-[120px] resize-none font-serif font-normal text-[14px] leading-[19px] text-[#00293D] placeholder-[#00293D]/50 focus:outline-none"
/>
</div>
{/* Action bar */}
<div className="flex items-center justify-between">
{/* Attachment buttons */}
<div className="flex items-center gap-3">
<button className="p-1.5 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/gallery-icon.svg"
alt="Add image"
width={24}
height={24}
/>
</button>
<button className="p-1.5 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/chain-icon.svg"
alt="Add link"
width={24}
height={24}
/>
</button>
<button className="p-1.5 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/gif-icon.svg"
alt="Add GIF"
width={24}
height={24}
/>
</button>
<button className="p-1.5 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/emoji-icon.svg"
alt="Add emoji"
width={24}
height={24}
/>
</button>
</div>
{/* Send button and more options */}
<div className="flex items-center gap-2">
<button
onClick={handleSend}
className="px-4 py-1.5 bg-[#e58625] text-[#00293d] font-serif font-normal text-[14px] leading-[19px] rounded-[15px] hover:bg-[#d47720] transition-colors cursor-pointer"
>
Send
</button>
<button className="p-1.5 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/three-dots-icon.svg"
alt="More options"
width={24}
height={24}
/>
</button>
</div>
</div>
</div>
);
}

View File

@@ -0,0 +1,4 @@
export { ConversationItem } from './ConversationItem';
export { ConversationList } from './ConversationList';
export { ChatHeader } from './ChatHeader';
export { MessageInput } from './MessageInput';

View File

@@ -0,0 +1,383 @@
'use client';
import { useState } from 'react';
import Image from 'next/image';
import { ChatHeader, MessageInput } from './component';
// Custom scrollbar styles
const customScrollbarStyles = `
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(0, 41, 61, 0.5);
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(0, 41, 61, 0.7);
}
`;
// Mock data for conversations
const conversations = [
{
id: '1',
name: 'Pradeep Ram',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: true,
},
{
id: '2',
name: 'Pradeep',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: true,
},
{
id: '3',
name: 'Gokulraj',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: true,
},
{
id: '4',
name: 'Suriya s',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: true,
},
{
id: '5',
name: 'Sanjay',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: true,
},
{
id: '6',
name: 'Pradeep Ram',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
date: 'Dec 4',
isOnline: false,
},
{
id: '7',
name: 'Rahul Kumar',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Thanks for your help with the property listing!',
date: 'Dec 3',
isOnline: true,
},
{
id: '8',
name: 'Anita Singh',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Can we schedule a viewing for tomorrow?',
date: 'Dec 3',
isOnline: false,
},
{
id: '9',
name: 'Vikram Patel',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'The documents have been submitted.',
date: 'Dec 2',
isOnline: true,
},
{
id: '10',
name: 'Meera Sharma',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Looking forward to our meeting next week.',
date: 'Dec 2',
isOnline: false,
},
{
id: '11',
name: 'Arjun Reddy',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'Please send me the property details.',
date: 'Dec 1',
isOnline: true,
},
{
id: '12',
name: 'Sneha Nair',
avatar: '/assets/icons/user-placeholder-icon.svg',
lastMessage: 'I have a few questions about the contract.',
date: 'Dec 1',
isOnline: false,
},
];
// Mock data for selected user
const selectedUserData = {
name: 'Pradeep Ram',
role: 'Advisor',
lastSeen: '21h Ago',
avatar: '/assets/icons/user-placeholder-icon.svg',
isOnline: true,
pronouns: 'He/Him',
expertise: ['Sales', 'Analytics', 'Inspection', 'Residential', 'Commercial'],
};
// Mock messages data
const messages = [
{
id: '1',
senderId: '1',
text: 'Hi! I saw your profile and I think you might be a great fit for what I\'m looking for.',
timestamp: '10:30 AM',
isOwn: false,
},
{
id: '2',
senderId: 'me',
text: 'Hello! Thank you for reaching out. I\'d be happy to help. What kind of property are you looking for?',
timestamp: '10:32 AM',
isOwn: true,
},
{
id: '3',
senderId: '1',
text: 'I\'m looking for a residential property in the downtown area. Preferably a 3-bedroom apartment with modern amenities.',
timestamp: '10:35 AM',
isOwn: false,
},
{
id: '4',
senderId: 'me',
text: 'That sounds great! I have several listings that might interest you. Do you have a specific budget range in mind?',
timestamp: '10:38 AM',
isOwn: true,
},
{
id: '5',
senderId: '1',
text: 'My budget is around $500,000 to $700,000. I\'m also interested in properties with good investment potential.',
timestamp: '10:40 AM',
isOwn: false,
},
{
id: '6',
senderId: 'me',
text: 'Perfect! I have a few properties in that range. Would you like to schedule a viewing this weekend?',
timestamp: '10:42 AM',
isOwn: true,
},
{
id: '7',
senderId: '1',
text: 'Yes, that would be great! Saturday afternoon works best for me.',
timestamp: '10:45 AM',
isOwn: false,
},
{
id: '8',
senderId: 'me',
text: 'Saturday at 2 PM works for me. I\'ll send you the addresses and details of the properties we\'ll be visiting.',
timestamp: '10:48 AM',
isOwn: true,
},
{
id: '9',
senderId: '1',
text: 'Sounds perfect! Looking forward to it. Thank you for your quick response.',
timestamp: '10:50 AM',
isOwn: false,
},
{
id: '10',
senderId: 'me',
text: 'You\'re welcome! See you on Saturday. Feel free to reach out if you have any questions before then.',
timestamp: '10:52 AM',
isOwn: true,
},
];
export default function MessagePage() {
const [selectedConversation, setSelectedConversation] = useState<string | null>('1');
const [searchQuery, setSearchQuery] = useState('');
const handleSendMessage = (message: string) => {
console.log('Sending message:', message);
// In production, this would send the message to the API
};
const filteredConversations = conversations.filter((conv) =>
conv.name.toLowerCase().includes(searchQuery.toLowerCase())
);
return (
<>
<style>{customScrollbarStyles}</style>
<div className="border border-[#00293d]/10 rounded-[20px] bg-white overflow-hidden">
{/* Header */}
<div className="flex items-center gap-4 p-4 border-b border-[#00293d]/10">
<h1 className="font-fractul font-bold text-[18px] leading-[22px] text-[#00293D]">
Messaging
</h1>
{/* Search bar */}
<div className="flex-1 max-w-[600px]">
<div className="flex items-center gap-2 border border-[#00293d]/10 rounded-[15px] px-4 py-2">
<Image
src="/assets/icons/search-icon.svg"
alt="Search"
width={20}
height={20}
/>
<input
type="text"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
placeholder="Search Message"
className="flex-1 font-serif font-normal text-[18px] leading-[24px] text-[#00293D] placeholder-[#00293D]/50 focus:outline-none"
/>
</div>
</div>
{/* Header actions */}
<div className="flex items-center gap-2">
<button className="p-2 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/three-dots-icon.svg"
alt="More options"
width={24}
height={24}
/>
</button>
<button className="p-2 hover:bg-gray-100 rounded-lg transition-colors cursor-pointer">
<Image
src="/assets/icons/compose-icon.svg"
alt="Compose"
width={24}
height={24}
/>
</button>
</div>
</div>
{/* Main content */}
<div className="flex h-[700px]">
{/* Left sidebar - Conversation list */}
<div className="w-[380px] border-r border-[#00293d]/10 flex-shrink-0 overflow-hidden flex flex-col">
<div className="flex-1 overflow-y-auto p-2 space-y-2 custom-scrollbar">
{filteredConversations.map((conversation) => (
<div
key={conversation.id}
onClick={() => setSelectedConversation(conversation.id)}
className={`flex items-start gap-3 p-4 border border-[#00293d]/10 rounded-[15px] cursor-pointer transition-colors ${
selectedConversation === conversation.id ? 'bg-[#00293d]/5' : 'hover:bg-[#00293d]/5'
}`}
>
{/* Avatar with online indicator */}
<div className="relative flex-shrink-0">
<div className="w-[70px] h-[70px] rounded-full overflow-hidden">
<Image
src={conversation.avatar}
alt={conversation.name}
width={70}
height={70}
className="w-full h-full object-cover"
/>
</div>
{conversation.isOnline && (
<div className="absolute bottom-1 right-1 w-3 h-3 bg-green-500 rounded-full border-2 border-white" />
)}
</div>
{/* Content */}
<div className="flex-1 min-w-0">
<p className="font-fractul font-medium text-[14px] leading-[17px] text-[#00293D] mb-1">
{conversation.name}
</p>
<p className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D] line-clamp-2">
{conversation.lastMessage}
</p>
</div>
{/* Date */}
<p className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D] flex-shrink-0">
{conversation.date}
</p>
</div>
))}
</div>
</div>
{/* Right panel - Chat area */}
<div className="flex-1 flex flex-col p-4">
{selectedConversation ? (
<>
{/* Chat header */}
<ChatHeader {...selectedUserData} />
{/* Messages area */}
<div className="flex-1 overflow-y-auto py-4 relative custom-scrollbar">
<div className="space-y-4 px-2">
{messages.map((message) => (
<div
key={message.id}
className={`flex ${message.isOwn ? 'justify-end' : 'justify-start'}`}
>
<div
className={`max-w-[70%] rounded-[15px] px-4 py-3 ${
message.isOwn
? 'bg-[#e58625] text-[#00293D]'
: 'bg-[#00293d]/10 text-[#00293D]'
}`}
>
<p className="font-serif font-normal text-[14px] leading-[19px]">
{message.text}
</p>
<p
className={`font-serif font-normal text-[12px] leading-[16px] mt-1 ${
message.isOwn ? 'text-[#00293D]/70' : 'text-[#00293D]/50'
}`}
>
{message.timestamp}
</p>
</div>
</div>
))}
</div>
{/* Scroll to bottom button */}
<div className="absolute bottom-4 right-4">
<button className="w-[50px] h-[50px] bg-[#00293d]/10 rounded-full flex items-center justify-center hover:bg-[#00293d]/20 transition-colors cursor-pointer">
<Image
src="/assets/icons/arrow-down-icon.svg"
alt="Scroll to bottom"
width={20}
height={20}
/>
</button>
</div>
</div>
{/* Message input */}
<MessageInput onSend={handleSendMessage} />
</>
) : (
<div className="flex items-center justify-center h-full text-[#00293D]/50 font-serif">
Select a conversation to start messaging
</div>
)}
</div>
</div>
</div>
</>
);
}