Skip to content

Commit

Permalink
Merge pull request #280 from ShivanshPlays/chat-page
Browse files Browse the repository at this point in the history
  • Loading branch information
Vimall03 authored Nov 10, 2024
2 parents 2ca6b3d + 4b5d48b commit 0ad1269
Show file tree
Hide file tree
Showing 8 changed files with 372 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,251 @@
'use client';

import React, { useState, useEffect } from 'react';
import { Spinner } from '@/components/ui/spinner'; // Assuming you have a Spinner component
import { Input } from '@/components/ui/input';
import { Button } from '@/components/ui/button';
import { useParams } from 'next/navigation';
import toast from 'react-hot-toast';
import DishCardFE from '@/app/(PublicRoutes)/dishes/components/dishCardFE';

const ChatPage = () => {
const params = useParams<{
customerId: string;
vendorId: string;
dishId: string;
}>();

const { customerId, vendorId, dishId } = params;
const [chat, setChat] = useState<any>(null); // Holds the chat data
const [isLoading, setIsLoading] = useState(true);
const [message, setMessage] = useState('');
const [error, setError] = useState<string | null>(null);
const [sending, setSending] = useState(false);

useEffect(() => {
if (!customerId || !vendorId || !dishId) {
setIsLoading(false);
return;
}

const fetchChat = async () => {
try {
const res = await fetch('/data/chat.json');
const data = await res.json();

const foundChat = data.chats.find(
(chat: any) =>
chat.customerId === customerId &&
chat.vendorId === vendorId &&
chat.dishId === dishId
);

if (foundChat) {
setChat(foundChat);
} else {
setChat({
customerId,
vendorId,
dishId,
messages: [],
});
}
} catch (error) {
setError('Failed to load chat.');
} finally {
setIsLoading(false);
}
};

fetchChat();
}, [customerId, vendorId, dishId]);

const handleSendMessage = async () => {
if (!message.trim()) return;

setSending(true);
try {
if (!chat) {
toast.error('Error creating chat');
} else {
const updatedChat = {
...chat,
messages: [...chat.messages, { senderId: customerId, content: message }],
};
setChat(updatedChat);
}
setMessage('');
} catch (error) {
setError('Failed to send message');
} finally {
setSending(false);
}
};

if (isLoading) {
return <Spinner />;
}

return (
<div className="bg-[url('/chatbgLight.png')] dark:bg-[url('/chatbg.png')] min-h-screen flex items-center justify-center p-4 md:p-8">
<div className="flex flex-col md:flex-row items-center gap-6 md:gap-10 justify-center w-full max-w-5xl">
{/* dish Info */}
<div className="bg-gray-50 p-6 rounded-lg shadow-xl w-full md:w-3/4">
<DishCardFE
id="3"
isStatic={true}
name="Bike"
price={40000}
description="a very nice bike"
images={[
{
dishId: 'dish1',
id: 'image1',
url: '/food2a.jpg',
createdAt: new Date('2024-01-01T10:00:00Z'),
updatedAt: new Date('2024-01-01T10:00:00Z'),
},
{
dishId: 'dish1',
id: 'image2',
url: '/food2b.avif',
createdAt: new Date('2024-01-01T10:00:00Z'),
updatedAt: new Date('2024-01-01T10:00:00Z'),
},
]}
/>
</div>

{/* Chat Box */}
<div className="bg-gray-50 p-6 rounded-lg shadow-xl w-full md:w-3/4">
<h1 className="text-2xl md:text-3xl font-semibold text-center text-gray-800 mb-6">
Chat with vendor
</h1>

{error && <p className="text-red-600 text-center mb-4">{error}</p>}

{/* Chat Messages */}
<div className="bg-white p-4 rounded-lg shadow-md space-y-4 max-h-64 md:max-h-96 overflow-y-auto">
{chat ? (
chat.messages.length > 0 ? (
chat.messages.map((msg: any, index: number) => (
<div
key={index}
className={msg.senderId === customerId ? 'text-right' : 'text-left'}
>
<div
className={`px-4 py-2 rounded-lg ${
msg.senderId === customerId
? 'bg-pink-500 text-white'
: 'bg-gray-300 text-black'
}`}
>
{msg.content}
</div>
</div>
))
) : (
<p className="text-center text-gray-600">
No messages yet. Start a conversation!
</p>
)
) : (
<p className="text-center text-gray-600">Loading chat...</p>
)}
</div>

{/* Message Input */}
<div className="flex mt-4 md:mt-6 items-center space-x-2 md:space-x-4">
<Input
type="text"
placeholder="Type a message"
value={message}
onChange={e => setMessage(e.target.value)}
className="flex-1 py-2 md:py-3 px-4 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-500"
/>
<Button
onClick={handleSendMessage}
disabled={sending}
className="bg-pink-500 text-white px-4 md:px-6 py-2 md:py-3 rounded-lg hover:bg-pink-600 transition"
>
{sending ? 'Sending...' : 'Send'}
</Button>
</div>
</div>
</div>
</div>
);
};

export default ChatPage;


// useEffect(() => {
// if (!customerId || !vendorId || !dishId) {
// setIsLoading(false);
// return; // Wait for query params
// }

// const fetchChat = async () => {
// try {
// const { success, data, error } = await getSpecificChat(
// customerId as string,
// vendorId as string,
// dishId as string
// );
// if (success) {
// setChat(data);
// } else {
// if (!error) {
// toast.error('error');
// return;
// }
// toast.error(error);
// }
// } catch (error) {
// setError('Failed to load chat.');
// } finally {
// setIsLoading(false);
// }
// };

// fetchChat();
// }, [customerId, vendorId, dishId]);

// const handleSendMessage = async () => {
// if (!message.trim()) return;

// setSending(true);
// try {
// if (!chat) {
// // Create a new chat if it doesn't exist
// const { success, data, error } = await createChat(
// customerId as string,
// vendorId as string,
// dishId as string,
// message
// );
// if (success) {
// setChat(data);
// } else {
// if (!error) {
// toast.error('error');
// return;
// }
// toast.error(error);
// }
// } else {
// // Add message to the existing chat
// const updatedChat = {
// ...chat,
// messages: [...chat.messages, { senderId: customerId, content: message }],
// };
// setChat(updatedChat);
// }
// setMessage(''); // Clear message input
// } catch (error) {
// setError('Failed to send message');
// } finally {
// setSending(false);
// }
// };
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const DishesByVendor = () => {
const [searchQuery, setSearchQuery] = useState<string>('');
const [isMounted, setIsMounted] = useState(false);

const params = useParams<{ userId: string; vendorId: string }>();
const { userId, vendorId } = params;
const params = useParams<{ customerId: string; vendorId: string }>();
const { customerId, vendorId } = params;

useEffect(() => {
const fetchData = async () => {
Expand Down Expand Up @@ -60,7 +60,7 @@ const DishesByVendor = () => {
);

return (
<div className="min-h-screen bg-[url('/userdashboard.jpg')]">
<div className="min-h-screen bg-[url('/customerdashboard.jpg')]">
<Container>
<div className="p-8 h-screen bg-black bg-opacity-50 flex flex-col">
<div className="bg-black text-gray-200 w-fit my-4 bg-opacity-80 rounded-xl p-5">
Expand Down Expand Up @@ -89,7 +89,7 @@ const DishesByVendor = () => {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
{filteredDishes.length ? (
filteredDishes.map(dish => (
<Link key={dish.id} href={`/${userId}/${vendorId}/${dish.id}`}>
<Link key={dish.id} href={`/customer/${customerId}/${vendorId}/${dish.id}`}>
<Card>
<CardContent className="p-6">
<div className="flex items-center space-x-4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ interface DishCardProps {
price: number;
description: string;
images: ImageInterface[];
isStatic?: boolean
}

const DishCardFE: React.FC<DishCardProps> = ({
Expand All @@ -28,6 +29,8 @@ const DishCardFE: React.FC<DishCardProps> = ({
price,
description,
images,
isStatic

}) => {
const { addToWishlists, isWishlisted } = useWishlist();
const session = useSession();
Expand Down Expand Up @@ -83,6 +86,7 @@ const DishCardFE: React.FC<DishCardProps> = ({
<h3 className="text-xl font-semibold mb-2">{name}</h3>
<p className="text-gray-600 mb-2">{description}</p>
<p className="text-lg font-bold mb-2">Price: ₹{price}</p>
{isStatic&&(<>
<div className="flex justify-between">
<Button variant="outline" className="text-blue-600">
Add
Expand All @@ -105,6 +109,7 @@ const DishCardFE: React.FC<DishCardProps> = ({
</Button>
)}
</div>
</>)}
</div>
</div>
);
Expand Down
Binary file added alimento-nextjs/public/chatbg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added alimento-nextjs/public/chatbgLight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0ad1269

Please sign in to comment.