ProductDetail.jsx
7.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import React, { useState, useEffect } from 'react';
import { useParams, useNavigate } from 'react-router-dom';
import { productService } from '../services/api/productService';
import { useCart } from '../context/CartContext';
import LoadingSpinner from '../components/common/LoadingSpinner';
import './product-detail.css';
const ProductDetail = () => {
const { id } = useParams();
const navigate = useNavigate();
const { addToCart } = useCart();
const [product, setProduct] = useState(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState('');
const [quantity, setQuantity] = useState(1);
const [selectedImage, setSelectedImage] = useState(0);
useEffect(() => {
loadProduct();
}, [id]);
const loadProduct = async () => {
try {
setLoading(true);
const productData = await productService.getProduct(id);
setProduct(productData);
} catch (error) {
setError('Product not found');
console.error('Error loading product:', error);
} finally {
setLoading(false);
}
};
const handleAddToCart = async () => {
if (!product || product.availableQuantity === 0) return;
const result = await addToCart(product.id, quantity);
if (result.success) {
// Show success message
alert('Product added to cart!');
} else {
alert(result.error || 'Failed to add product to cart');
}
};
const handleBuyNow = async () => {
const result = await addToCart(product.id, quantity);
if (result.success) {
navigate('/cart');
}
};
const formatPrice = (price) => {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
}).format(price);
};
if (loading) {
return <LoadingSpinner />;
}
if (error || !product) {
return (
<div className="container">
<div className="error-page">
<h2>{error || 'Product not found'}</h2>
<button onClick={() => navigate('/products')} className="btn btn-primary">
Back to Products
</button>
</div>
</div>
);
}
const images = product.images ? Object.values(product.images) : [];
const mainImage = images[selectedImage] || product.imageUrl || '/images/placeholder-product.jpg';
return (
<div className="product-detail-page">
<div className="container">
<div className="product-detail">
{/* Breadcrumb */}
<nav className="breadcrumb">
<button onClick={() => navigate('/products')}>Products</button>
<span>/</span>
<span>{product.name}</span>
</nav>
<div className="product-detail-content">
{/* Product Images */}
<div className="product-images">
<div className="main-image">
<img
src={mainImage}
alt={product.name}
onError={(e) => {
e.target.src = '/images/placeholder-product.jpg';
}}
/>
</div>
{images.length > 1 && (
<div className="image-thumbnails">
{images.map((image, index) => (
<button
key={index}
className={`thumbnail ${selectedImage === index ? 'active' : ''}`}
onClick={() => setSelectedImage(index)}
>
<img src={image} alt={`${product.name} ${index + 1}`} />
</button>
))}
</div>
)}
</div>
{/* Product Info */}
<div className="product-info">
<h1 className="product-title">{product.name}</h1>
<p className="product-sku">SKU: {product.sku}</p>
<div className="product-pricing">
<span className="price">{formatPrice(product.price)}</span>
{product.comparePrice && product.comparePrice > product.price && (
<span className="compare-price">
{formatPrice(product.comparePrice)}
</span>
)}
</div>
<div className="product-description">
<p>{product.description}</p>
</div>
<div className="product-stock">
{product.availableQuantity > 0 ? (
<span className="in-stock">
{product.availableQuantity} in stock
</span>
) : (
<span className="out-of-stock">Out of stock</span>
)}
</div>
{/* Add to Cart */}
{product.availableQuantity > 0 && (
<div className="add-to-cart-section">
<div className="quantity-selector">
<label htmlFor="quantity">Quantity:</label>
<select
id="quantity"
value={quantity}
onChange={(e) => setQuantity(parseInt(e.target.value))}
>
{[...Array(Math.min(product.availableQuantity, 10))].map((_, i) => (
<option key={i + 1} value={i + 1}>
{i + 1}
</option>
))}
</select>
</div>
<div className="action-buttons">
<button
className="btn btn-primary add-to-cart-btn"
onClick={handleAddToCart}
>
Add to Cart
</button>
<button
className="btn btn-secondary buy-now-btn"
onClick={handleBuyNow}
>
Buy Now
</button>
</div>
</div>
)}
{/* Product Features */}
<div className="product-features">
<div className="feature">
<span>๐ Free shipping on orders over $50</span>
</div>
<div className="feature">
<span>โฉ๏ธ 30-day return policy</span>
</div>
<div className="feature">
<span>๐ Secure checkout</span>
</div>
</div>
</div>
</div>
{/* Product Details Tabs */}
<div className="product-tabs">
<div className="tab-content">
<h3>Product Details</h3>
<div className="product-attributes">
{product.attributes && Object.entries(product.attributes).map(([key, value]) => (
<div key={key} className="attribute">
<strong>{key}:</strong> <span>{value}</span>
</div>
))}
</div>
</div>
</div>
</div>
</div>
</div>
);
};
export default ProductDetail;