Files
Campus-Plug/frontend/src/pages/ProductDetail.jsx

259 lines
8.9 KiB
React
Raw Normal View History

2025-03-24 23:04:12 -06:00
import { useState, useEffect } from "react";
2025-03-18 18:09:15 -06:00
import { useParams, Link } from "react-router-dom";
2025-03-24 23:04:12 -06:00
import { Heart, ArrowLeft, Tag, User, Calendar } from "lucide-react";
2025-03-05 22:30:52 -07:00
const ProductDetail = () => {
const { id } = useParams();
2025-03-24 23:04:12 -06:00
const [product, setProduct] = useState(null);
2025-03-05 22:30:52 -07:00
const [isFavorite, setIsFavorite] = useState(false);
const [showContactForm, setShowContactForm] = useState(false);
2025-03-18 18:09:15 -06:00
const [message, setMessage] = useState("");
2025-03-05 22:30:52 -07:00
const [currentImage, setCurrentImage] = useState(0);
2025-03-18 18:09:15 -06:00
2025-03-24 23:04:12 -06:00
// Fetch product details
useEffect(() => {
const fetchProduct = async () => {
try {
const response = await fetch(
`http://localhost:3030/api/product/get_productID/${id}`,
);
if (!response.ok) throw new Error("Failed to fetch product");
2025-03-05 22:30:52 -07:00
2025-03-24 23:04:12 -06:00
const data = await response.json();
if (data.success) {
setProduct(data.data); // Update the state with product details
} else {
throw new Error(data.message || "Error fetching product");
}
} catch (error) {
console.error("Error fetching product:", error);
}
};
2025-03-05 22:30:52 -07:00
2025-03-24 23:04:12 -06:00
fetchProduct();
}, [id]);
// Handle favorite toggle
2025-03-05 22:30:52 -07:00
const toggleFavorite = () => {
setIsFavorite(!isFavorite);
};
2025-03-18 18:09:15 -06:00
2025-03-24 23:04:12 -06:00
// Handle message submission
2025-03-05 22:30:52 -07:00
const handleSendMessage = (e) => {
e.preventDefault();
2025-03-24 23:04:12 -06:00
// Handle message logic here (send to seller)
2025-03-18 18:09:15 -06:00
console.log("Message sent:", message);
setMessage("");
2025-03-05 22:30:52 -07:00
setShowContactForm(false);
2025-03-18 18:09:15 -06:00
alert("Message sent to seller!");
2025-03-05 22:30:52 -07:00
};
2025-03-24 23:04:12 -06:00
// Image navigation
2025-03-05 22:30:52 -07:00
const nextImage = () => {
2025-03-18 18:09:15 -06:00
setCurrentImage((prev) =>
prev === product.images.length - 1 ? 0 : prev + 1,
);
2025-03-05 22:30:52 -07:00
};
const prevImage = () => {
2025-03-18 18:09:15 -06:00
setCurrentImage((prev) =>
prev === 0 ? product.images.length - 1 : prev - 1,
);
2025-03-05 22:30:52 -07:00
};
const selectImage = (index) => {
setCurrentImage(index);
};
2025-03-24 23:04:12 -06:00
if (!product) return <div>Loading...</div>; // Handle loading state
2025-03-05 22:30:52 -07:00
return (
<div className="max-w-6xl mx-auto px-4 py-8">
<div className="mb-6">
2025-03-18 18:09:15 -06:00
<Link
to="/"
className="flex items-center text-green-600 hover:text-green-700"
>
2025-03-05 22:30:52 -07:00
<ArrowLeft className="h-4 w-4 mr-1" />
<span>Back to listings</span>
</Link>
</div>
<div className="flex flex-col md:flex-row gap-8">
<div className="md:w-3/5">
<div className="bg-white border border-gray-200 mb-4 relative">
2025-03-18 18:09:15 -06:00
<img
2025-03-24 23:04:12 -06:00
src={product.images[currentImage]}
alt={product.title}
2025-03-05 22:30:52 -07:00
className="w-full h-auto object-contain cursor-pointer"
onClick={nextImage}
/>
</div>
2025-03-18 18:09:15 -06:00
2025-03-24 23:04:12 -06:00
{product.images.length > 1 && (
2025-03-05 22:30:52 -07:00
<div className="flex gap-2 overflow-x-auto pb-2">
2025-03-24 23:04:12 -06:00
{product.images.map((image, index) => (
2025-03-18 18:09:15 -06:00
<div
key={index}
className={`bg-white border ${currentImage === index ? "border-green-500" : "border-gray-200"} min-w-[100px] cursor-pointer`}
2025-03-05 22:30:52 -07:00
onClick={() => selectImage(index)}
>
2025-03-18 18:09:15 -06:00
<img
src={image}
2025-03-24 23:04:12 -06:00
alt={`${product.title} - view ${index + 1}`}
2025-03-05 22:30:52 -07:00
className="w-full h-auto object-cover"
/>
</div>
))}
</div>
)}
</div>
<div className="md:w-2/5">
<div className="bg-white border border-gray-200 p-6 mb-6">
<div className="flex justify-between items-start mb-4">
2025-03-18 18:09:15 -06:00
<h1 className="text-2xl font-bold text-gray-800">
2025-03-24 23:04:12 -06:00
{product.title}
2025-03-18 18:09:15 -06:00
</h1>
<button
2025-03-05 22:30:52 -07:00
onClick={toggleFavorite}
className="p-2 hover:bg-gray-100"
>
2025-03-18 18:09:15 -06:00
<Heart
className={`h-6 w-6 ${isFavorite ? "text-red-500 fill-red-500" : "text-gray-400"}`}
2025-03-05 22:30:52 -07:00
/>
</button>
</div>
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
<div className="text-2xl font-bold text-green-600 mb-4">
2025-03-24 23:04:12 -06:00
${product.price}
2025-03-05 22:30:52 -07:00
</div>
<div className="flex flex-wrap gap-x-4 gap-y-2 mb-6 text-sm">
<div className="flex items-center text-gray-600">
<Tag className="h-4 w-4 mr-1" />
2025-03-24 23:04:12 -06:00
<span>{product.category}</span>
2025-03-05 22:30:52 -07:00
</div>
<div className="flex items-center text-gray-600">
<span className="font-medium">Condition:</span>
2025-03-24 23:04:12 -06:00
<span className="ml-1">{product.condition}</span>
2025-03-05 22:30:52 -07:00
</div>
<div className="flex items-center text-gray-600">
<Calendar className="h-4 w-4 mr-1" />
2025-03-24 23:04:12 -06:00
<span>Posted on {product.datePosted}</span>
2025-03-05 22:30:52 -07:00
</div>
</div>
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
<div className="bg-gray-50 p-4 mb-6 border border-gray-200">
2025-03-24 23:04:12 -06:00
<p className="text-gray-700">{product.shortDescription}</p>
2025-03-05 22:30:52 -07:00
</div>
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
<button
onClick={() => setShowContactForm(!showContactForm)}
className="w-full bg-green-500 hover:bg-green-600 text-white font-medium py-3 px-4 mb-3"
>
Contact Seller
</button>
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
{showContactForm && (
<div className="border border-gray-200 p-4 mb-4">
2025-03-18 18:09:15 -06:00
<h3 className="font-medium text-gray-800 mb-2">
Contact Seller
</h3>
2025-03-05 22:30:52 -07:00
<form onSubmit={handleSendMessage}>
2025-03-18 18:09:15 -06:00
<div className="mb-3">
<label htmlFor="email" className="block text-gray-700 mb-1">
Email
</label>
<input
type="email"
id="email"
2025-03-24 23:04:12 -06:00
value={message}
onChange={(e) => setMessage(e.target.value)}
2025-03-18 18:09:15 -06:00
className="w-full p-3 border border-gray-300 focus:outline-none focus:border-green-500"
required
/>
</div>
<div className="mb-3">
<label htmlFor="phone" className="block text-gray-700 mb-1">
Phone Number
</label>
<input
type="tel"
id="phone"
className="w-full p-3 border border-gray-300 focus:outline-none focus:border-green-500"
required
/>
</div>
<div className="mb-3">
<label
htmlFor="contactMessage"
className="block text-gray-700 mb-1"
>
Message (Optional)
</label>
<input
type="text"
id="contactMessage"
2025-03-24 23:04:12 -06:00
value={message}
onChange={(e) => setMessage(e.target.value)}
2025-03-18 18:09:15 -06:00
placeholder="Hi, is this item still available?"
className="w-full p-3 border border-gray-300 focus:outline-none focus:border-green-500"
/>
</div>
2025-03-05 22:30:52 -07:00
<button
type="submit"
className="bg-green-500 hover:bg-green-600 text-white font-medium py-2 px-4"
>
2025-03-18 18:09:15 -06:00
Send Contact Info
2025-03-05 22:30:52 -07:00
</button>
</form>
</div>
)}
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
<div className="pt-4 border-t border-gray-200">
<div className="flex items-center mb-3">
<div className="mr-3">
2025-03-24 23:04:12 -06:00
{product.seller.avatar ? (
2025-03-18 18:09:15 -06:00
<img
2025-03-24 23:04:12 -06:00
src={product.seller.avatar}
2025-03-18 18:09:15 -06:00
alt="Seller"
2025-03-05 22:30:52 -07:00
className="h-12 w-12 rounded-full"
/>
) : (
<div className="h-12 w-12 rounded-full bg-gray-200 flex items-center justify-center">
<User className="h-6 w-6 text-gray-600" />
</div>
)}
</div>
<div>
2025-03-18 18:09:15 -06:00
<h3 className="font-medium text-gray-800">
2025-03-24 23:04:12 -06:00
{product.seller.name}
2025-03-18 18:09:15 -06:00
</h3>
<p className="text-sm text-gray-500">
2025-03-24 23:04:12 -06:00
Member since {product.seller.memberSince}
2025-03-18 18:09:15 -06:00
</p>
2025-03-05 22:30:52 -07:00
</div>
</div>
<div className="text-sm text-gray-600">
<div>
2025-03-18 18:09:15 -06:00
<span className="font-medium">Rating:</span>{" "}
2025-03-24 23:04:12 -06:00
{product.seller.rating}/5
2025-03-05 22:30:52 -07:00
</div>
</div>
</div>
</div>
</div>
</div>
2025-03-18 18:09:15 -06:00
2025-03-05 22:30:52 -07:00
<div className="mt-8">
<h2 className="text-xl font-bold text-gray-800 mb-4">Description</h2>
<div className="bg-white border border-gray-200 p-6">
2025-03-24 23:04:12 -06:00
<div className="text-gray-700">{product.description}</div>
2025-03-05 22:30:52 -07:00
</div>
</div>
</div>
);
};
2025-03-18 18:09:15 -06:00
export default ProductDetail;