2025-03-18 18:09:15 -06:00
|
|
|
import { useState, useEffect } from "react";
|
2025-03-14 16:14:10 -06:00
|
|
|
import { Link, useNavigate } from "react-router-dom";
|
|
|
|
|
import { Tag, Book, Laptop, Sofa, Utensils, Gift, Heart } from "lucide-react";
|
2025-03-05 22:30:52 -07:00
|
|
|
|
|
|
|
|
const Home = () => {
|
|
|
|
|
const navigate = useNavigate();
|
2025-03-18 18:09:15 -06:00
|
|
|
const [listings, setListings] = useState([]);
|
|
|
|
|
const [error, setError] = useState(null);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const fetchProducts = async () => {
|
|
|
|
|
try {
|
2025-03-19 02:09:30 -06:00
|
|
|
const response = await fetch(
|
|
|
|
|
"http://localhost:3030/api/product/get_product"
|
|
|
|
|
);
|
2025-03-18 18:09:15 -06:00
|
|
|
if (!response.ok) throw new Error("Failed to fetch products");
|
|
|
|
|
|
|
|
|
|
const data = await response.json();
|
|
|
|
|
|
|
|
|
|
if (data.success) {
|
|
|
|
|
setListings(
|
|
|
|
|
data.data.map((product) => ({
|
|
|
|
|
id: product.ProductID,
|
|
|
|
|
title: product.Name,
|
|
|
|
|
price: product.Price,
|
|
|
|
|
category: product.CategoryID,
|
|
|
|
|
image: product.ImageURL,
|
|
|
|
|
condition: "New", // Modify based on actual data
|
|
|
|
|
seller: "Unknown", // Modify if seller info is available
|
|
|
|
|
datePosted: "Just now",
|
|
|
|
|
isFavorite: false,
|
2025-03-19 02:09:30 -06:00
|
|
|
}))
|
2025-03-18 18:09:15 -06:00
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(data.message || "Error fetching products");
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error("Error fetching products:", error);
|
|
|
|
|
setError(error.message);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fetchProducts();
|
|
|
|
|
}, []);
|
2025-03-14 16:14:10 -06:00
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
// Toggle favorite status
|
|
|
|
|
const toggleFavorite = (id, e) => {
|
|
|
|
|
e.preventDefault(); // Prevent navigation when clicking the heart icon
|
2025-03-18 18:09:15 -06:00
|
|
|
setListings((prevListings) =>
|
|
|
|
|
prevListings.map((listing) =>
|
2025-03-14 16:14:10 -06:00
|
|
|
listing.id === id
|
|
|
|
|
? { ...listing, isFavorite: !listing.isFavorite }
|
2025-03-19 02:09:30 -06:00
|
|
|
: listing
|
|
|
|
|
)
|
2025-03-05 22:30:52 -07:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSelling = () => {
|
2025-03-14 16:14:10 -06:00
|
|
|
navigate("/selling");
|
|
|
|
|
};
|
2025-03-05 22:30:52 -07:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2025-03-14 16:14:10 -06:00
|
|
|
{/* Hero Section with School Background */}
|
|
|
|
|
<div className="relative py-12 px-4 mb-8 shadow-sm">
|
|
|
|
|
{/* Background Image - Positioned at bottom */}
|
|
|
|
|
<div className="absolute inset-0 z-0 overflow-hidden bg-black bg-opacity-100">
|
|
|
|
|
<img
|
|
|
|
|
src="../public/Ucalgary.png"
|
|
|
|
|
alt="University of Calgary"
|
|
|
|
|
className="w-full h-full object-cover object-bottom opacity-50"
|
|
|
|
|
/>
|
|
|
|
|
{/* Dark overlay for better text readability */}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Content */}
|
|
|
|
|
<div className="max-w-2xl mx-auto text-center relative z-1">
|
|
|
|
|
<h1 className="text-3xl font-bold text-white mb-4">
|
2025-03-05 22:30:52 -07:00
|
|
|
Buy and Sell on Campus
|
|
|
|
|
</h1>
|
2025-03-14 16:14:10 -06:00
|
|
|
<p className="text-white mb-6">
|
|
|
|
|
The marketplace exclusively for university students. Find everything
|
|
|
|
|
you need or sell what you don't.
|
2025-03-05 22:30:52 -07:00
|
|
|
</p>
|
2025-03-14 16:14:10 -06:00
|
|
|
<button
|
|
|
|
|
onClick={handleSelling}
|
|
|
|
|
className="bg-green-500 hover:bg-green-600 text-white font-medium py-2 px-6 focus:outline-none focus:ring-2 focus:ring-green-400 transition-colors"
|
|
|
|
|
>
|
2025-03-05 22:30:52 -07:00
|
|
|
Post an Item
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
{/* Categories */}
|
2025-03-14 16:14:10 -06:00
|
|
|
{/* <div className="mb-8">
|
2025-03-05 22:30:52 -07:00
|
|
|
<h2 className="text-xl font-semibold text-gray-800 mb-4">Categories</h2>
|
|
|
|
|
<div className="grid grid-cols-2 md:grid-cols-5 gap-4">
|
|
|
|
|
{categories.map((category) => (
|
|
|
|
|
<button
|
|
|
|
|
key={category.id}
|
|
|
|
|
className="flex flex-col items-center justify-center p-4 bg-white border border-gray-200 hover:border-green-500 hover:shadow-sm"
|
|
|
|
|
>
|
|
|
|
|
<div className="flex items-center justify-center w-12 h-12 bg-green-50 text-green-600 rounded-full mb-2">
|
|
|
|
|
{category.icon}
|
|
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
<span className="text-sm font-medium text-gray-700">
|
|
|
|
|
{category.name}
|
|
|
|
|
</span>
|
2025-03-05 22:30:52 -07:00
|
|
|
</button>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
</div> */}
|
|
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
{/* Recent Listings */}
|
|
|
|
|
<div>
|
2025-03-14 16:14:10 -06:00
|
|
|
<h2 className="text-xl font-semibold text-gray-800 mb-4">
|
|
|
|
|
Recent Listings
|
|
|
|
|
</h2>
|
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-6">
|
2025-03-05 22:30:52 -07:00
|
|
|
{listings.map((listing) => (
|
|
|
|
|
<Link
|
|
|
|
|
key={listing.id}
|
|
|
|
|
to={`/product/${listing.id}`}
|
|
|
|
|
className="bg-white border border-gray-200 hover:shadow-md transition-shadow"
|
|
|
|
|
>
|
|
|
|
|
<div className="relative">
|
2025-03-14 16:14:10 -06:00
|
|
|
<img
|
|
|
|
|
src={listing.image}
|
|
|
|
|
alt={listing.title}
|
|
|
|
|
className="w-full h-48 object-cover"
|
|
|
|
|
/>
|
2025-03-05 22:30:52 -07:00
|
|
|
<button
|
|
|
|
|
onClick={(e) => toggleFavorite(listing.id, e)}
|
|
|
|
|
className="absolute top-2 right-2 p-1 bg-white rounded-full shadow-sm"
|
|
|
|
|
>
|
|
|
|
|
<Heart
|
|
|
|
|
className={`h-5 w-5 ${
|
2025-03-14 16:14:10 -06:00
|
|
|
listing.isFavorite
|
|
|
|
|
? "text-red-500 fill-red-500"
|
|
|
|
|
: "text-gray-400"
|
2025-03-05 22:30:52 -07:00
|
|
|
}`}
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
<div className="p-4">
|
|
|
|
|
<div className="flex justify-between items-start mb-2">
|
|
|
|
|
<h3 className="text-lg font-medium text-gray-800 leading-tight">
|
|
|
|
|
{listing.title}
|
|
|
|
|
</h3>
|
2025-03-14 16:14:10 -06:00
|
|
|
<span className="font-semibold text-green-600">
|
|
|
|
|
${listing.price}
|
|
|
|
|
</span>
|
2025-03-05 22:30:52 -07:00
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
<div className="flex items-center text-sm text-gray-500 mb-3">
|
|
|
|
|
<Tag className="h-4 w-4 mr-1" />
|
|
|
|
|
<span>{listing.category}</span>
|
|
|
|
|
<span className="mx-2">•</span>
|
|
|
|
|
<span>{listing.condition}</span>
|
|
|
|
|
</div>
|
2025-03-14 16:14:10 -06:00
|
|
|
|
2025-03-05 22:30:52 -07:00
|
|
|
<div className="flex justify-between items-center pt-2 border-t border-gray-100">
|
2025-03-14 16:14:10 -06:00
|
|
|
<span className="text-xs text-gray-500">
|
|
|
|
|
{listing.datePosted}
|
|
|
|
|
</span>
|
|
|
|
|
<span className="text-sm font-medium text-gray-700">
|
|
|
|
|
{listing.seller}
|
|
|
|
|
</span>
|
2025-03-05 22:30:52 -07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Link>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2025-03-14 16:14:10 -06:00
|
|
|
export default Home;
|