82 lines
2.5 KiB
React
82 lines
2.5 KiB
React
|
|
import { useEffect, useState } from 'react'
|
||
|
|
import { useApp } from '../context/AppContext.jsx'
|
||
|
|
import { useApi } from '../hooks/useApi.js'
|
||
|
|
|
||
|
|
export function Products() {
|
||
|
|
const [products, setProducts] = useState([])
|
||
|
|
const [loading, setLoading] = useState(true)
|
||
|
|
const { addToCart } = useApp()
|
||
|
|
const { getProducts } = useApi()
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
fetchProducts()
|
||
|
|
}, [])
|
||
|
|
|
||
|
|
const fetchProducts = async () => {
|
||
|
|
try {
|
||
|
|
const data = await getProducts()
|
||
|
|
setProducts(data)
|
||
|
|
} catch (error) {
|
||
|
|
console.error('Error fetching products:', error)
|
||
|
|
} finally {
|
||
|
|
setLoading(false)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
if (loading) {
|
||
|
|
return (
|
||
|
|
<div className="text-center py-12">
|
||
|
|
<div className="text-gray-400">Loading products...</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="text-3xl font-bold text-white mb-8">Products</h1>
|
||
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
|
||
|
|
{products.map((product) => (
|
||
|
|
<div
|
||
|
|
key={product.id}
|
||
|
|
className="bg-gray-800 rounded-lg overflow-hidden border border-gray-700 hover:border-blue-500 transition-colors"
|
||
|
|
>
|
||
|
|
{product.image_url && (
|
||
|
|
<img
|
||
|
|
src={product.image_url}
|
||
|
|
alt={product.name}
|
||
|
|
className="w-full h-48 object-cover"
|
||
|
|
/>
|
||
|
|
)}
|
||
|
|
<div className="p-4">
|
||
|
|
<h3 className="text-lg font-semibold text-white mb-2">
|
||
|
|
{product.name}
|
||
|
|
</h3>
|
||
|
|
<p className="text-gray-400 text-sm mb-3 line-clamp-2">
|
||
|
|
{product.description}
|
||
|
|
</p>
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<span className="text-xl font-bold text-blue-400">
|
||
|
|
${product.price}
|
||
|
|
</span>
|
||
|
|
<span className="text-sm text-gray-400">
|
||
|
|
Stock: {product.stock}
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
<button
|
||
|
|
onClick={() => addToCart(product)}
|
||
|
|
className="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg transition-colors"
|
||
|
|
>
|
||
|
|
Add to Cart
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
))}
|
||
|
|
</div>
|
||
|
|
{products.length === 0 && (
|
||
|
|
<div className="text-center py-12">
|
||
|
|
<p className="text-gray-400">No products available</p>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|