create-brainerce-store 1.31.0 → 1.31.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/messages/en.json +434 -434
- package/messages/he.json +434 -434
- package/package.json +1 -1
- package/templates/nextjs/base/src/app/api/store/[...path]/route.ts +242 -242
- package/templates/nextjs/base/src/app/contact/page.tsx +211 -211
- package/templates/nextjs/base/src/app/products/[slug]/product-client-section.tsx +566 -566
- package/templates/nextjs/base/src/components/account/order-customizations.tsx +125 -125
- package/templates/nextjs/base/src/components/account/order-history.tsx +367 -367
- package/templates/nextjs/base/src/components/account/order-payment-block.tsx +58 -58
- package/templates/nextjs/base/src/components/account/order-shipping-block.tsx +79 -79
- package/templates/nextjs/base/src/components/account/order-status-timeline.tsx +66 -66
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +730 -730
- package/templates/nextjs/base/src/components/layout/footer.tsx +47 -47
- package/templates/nextjs/base/src/components/products/customization-fields.tsx +478 -478
- package/templates/nextjs/base/src/lib/safe-redirect.ts +60 -60
|
@@ -1,566 +1,566 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { useEffect, useState, useMemo } from 'react';
|
|
4
|
-
import Image from 'next/image';
|
|
5
|
-
import type {
|
|
6
|
-
Product,
|
|
7
|
-
ProductVariant,
|
|
8
|
-
ProductImage,
|
|
9
|
-
ProductMetafield,
|
|
10
|
-
DownloadFile,
|
|
11
|
-
} from 'brainerce';
|
|
12
|
-
import { getProductPriceInfo, getDescriptionContent } from 'brainerce';
|
|
13
|
-
import { useCart } from '@/providers/store-provider';
|
|
14
|
-
import { PriceDisplay } from '@/components/shared/price-display';
|
|
15
|
-
import { LoadingSpinner } from '@/components/shared/loading-spinner';
|
|
16
|
-
import { VariantSelector } from '@/components/products/variant-selector';
|
|
17
|
-
import { StockBadge } from '@/components/products/stock-badge';
|
|
18
|
-
import { RecommendationSection } from '@/components/products/recommendation-section';
|
|
19
|
-
import { FrequentlyBoughtTogether } from '@/components/products/frequently-bought-together';
|
|
20
|
-
import {
|
|
21
|
-
CustomizationFields,
|
|
22
|
-
validateCustomization,
|
|
23
|
-
type CustomizationValues,
|
|
24
|
-
} from '@/components/products/customization-fields';
|
|
25
|
-
import { useTranslations } from '@/lib/translations';
|
|
26
|
-
import { cn } from '@/lib/utils';
|
|
27
|
-
import { sanitizeProductHtml } from '@/lib/sanitize-html';
|
|
28
|
-
|
|
29
|
-
/** Render a metafield value based on its type */
|
|
30
|
-
function MetafieldValue({ field }: { field: ProductMetafield }) {
|
|
31
|
-
const tc = useTranslations('common');
|
|
32
|
-
switch (field.type) {
|
|
33
|
-
case 'IMAGE': {
|
|
34
|
-
if (!field.value) return <span className="text-muted-foreground">-</span>;
|
|
35
|
-
return (
|
|
36
|
-
<img
|
|
37
|
-
src={field.value}
|
|
38
|
-
alt={field.definitionName}
|
|
39
|
-
className="h-16 w-16 rounded object-cover"
|
|
40
|
-
/>
|
|
41
|
-
);
|
|
42
|
-
}
|
|
43
|
-
case 'GALLERY': {
|
|
44
|
-
let urls: string[] = [];
|
|
45
|
-
try {
|
|
46
|
-
const parsed = JSON.parse(field.value);
|
|
47
|
-
urls = Array.isArray(parsed)
|
|
48
|
-
? parsed.filter((u: unknown) => typeof u === 'string' && u)
|
|
49
|
-
: [];
|
|
50
|
-
} catch {
|
|
51
|
-
urls = field.value ? [field.value] : [];
|
|
52
|
-
}
|
|
53
|
-
if (urls.length === 0) return <span className="text-muted-foreground">-</span>;
|
|
54
|
-
return (
|
|
55
|
-
<div className="flex flex-wrap gap-2">
|
|
56
|
-
{urls.map((url, i) => (
|
|
57
|
-
<img
|
|
58
|
-
key={i}
|
|
59
|
-
src={url}
|
|
60
|
-
alt={`${field.definitionName} ${i + 1}`}
|
|
61
|
-
className="h-16 w-16 rounded object-cover"
|
|
62
|
-
/>
|
|
63
|
-
))}
|
|
64
|
-
</div>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
|
-
case 'URL':
|
|
68
|
-
return field.value ? (
|
|
69
|
-
<a
|
|
70
|
-
href={field.value}
|
|
71
|
-
target="_blank"
|
|
72
|
-
rel="noopener noreferrer"
|
|
73
|
-
className="text-primary break-all hover:underline"
|
|
74
|
-
>
|
|
75
|
-
{field.value}
|
|
76
|
-
</a>
|
|
77
|
-
) : (
|
|
78
|
-
<span className="text-muted-foreground">-</span>
|
|
79
|
-
);
|
|
80
|
-
case 'COLOR':
|
|
81
|
-
return field.value ? (
|
|
82
|
-
<span className="inline-flex items-center gap-2">
|
|
83
|
-
<span
|
|
84
|
-
className="border-border inline-block h-4 w-4 rounded-full border"
|
|
85
|
-
style={{ backgroundColor: field.value }}
|
|
86
|
-
/>
|
|
87
|
-
{field.value}
|
|
88
|
-
</span>
|
|
89
|
-
) : (
|
|
90
|
-
<span className="text-muted-foreground">-</span>
|
|
91
|
-
);
|
|
92
|
-
case 'BOOLEAN':
|
|
93
|
-
return <span>{field.value === 'true' ? tc('yes') : tc('no')}</span>;
|
|
94
|
-
case 'DATE':
|
|
95
|
-
case 'DATETIME': {
|
|
96
|
-
if (!field.value) return <span className="text-muted-foreground">-</span>;
|
|
97
|
-
try {
|
|
98
|
-
const date = new Date(field.value);
|
|
99
|
-
return (
|
|
100
|
-
<span>
|
|
101
|
-
{field.type === 'DATETIME' ? date.toLocaleString() : date.toLocaleDateString()}
|
|
102
|
-
</span>
|
|
103
|
-
);
|
|
104
|
-
} catch {
|
|
105
|
-
return <span>{field.value}</span>;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
default:
|
|
109
|
-
return <span>{field.value || '-'}</span>;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
interface ProductClientSectionProps {
|
|
114
|
-
product: Product;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export function ProductClientSection({ product: initialProduct }: ProductClientSectionProps) {
|
|
118
|
-
const { refreshCart } = useCart();
|
|
119
|
-
const t = useTranslations('productDetail');
|
|
120
|
-
|
|
121
|
-
const product = initialProduct;
|
|
122
|
-
const recommendations = product?.recommendations ?? null;
|
|
123
|
-
|
|
124
|
-
const [selectedVariant, setSelectedVariant] = useState<ProductVariant | null>(
|
|
125
|
-
product.variants && product.variants.length > 0 ? product.variants[0] : null
|
|
126
|
-
);
|
|
127
|
-
const [selectedImageIndex, setSelectedImageIndex] = useState(0);
|
|
128
|
-
const [quantity, setQuantity] = useState(1);
|
|
129
|
-
const [addingToCart, setAddingToCart] = useState(false);
|
|
130
|
-
const [addedMessage, setAddedMessage] = useState(false);
|
|
131
|
-
const customizationFields = product.customizationFields ?? [];
|
|
132
|
-
const [customizationValues, setCustomizationValues] = useState<CustomizationValues>(() => {
|
|
133
|
-
const initial: CustomizationValues = {};
|
|
134
|
-
for (const field of customizationFields) {
|
|
135
|
-
if (field.defaultValue != null) initial[field.key] = field.defaultValue;
|
|
136
|
-
}
|
|
137
|
-
return initial;
|
|
138
|
-
});
|
|
139
|
-
const [customizationErrors, setCustomizationErrors] = useState<Record<string, string>>({});
|
|
140
|
-
|
|
141
|
-
// Images list - switch main image when variant changes
|
|
142
|
-
const images: ProductImage[] = useMemo(() => {
|
|
143
|
-
return product?.images || [];
|
|
144
|
-
}, [product]);
|
|
145
|
-
|
|
146
|
-
// When variant changes, update selected image to variant image if available
|
|
147
|
-
useEffect(() => {
|
|
148
|
-
if (!selectedVariant?.image || !product) return;
|
|
149
|
-
|
|
150
|
-
const variantImgUrl =
|
|
151
|
-
typeof selectedVariant.image === 'string' ? selectedVariant.image : selectedVariant.image.url;
|
|
152
|
-
|
|
153
|
-
// Find if variant image exists in product images
|
|
154
|
-
const idx = images.findIndex((img) => img.url === variantImgUrl);
|
|
155
|
-
if (idx >= 0) {
|
|
156
|
-
setSelectedImageIndex(idx);
|
|
157
|
-
} else {
|
|
158
|
-
// Variant image not in product images - select index 0 as fallback
|
|
159
|
-
setSelectedImageIndex(-1);
|
|
160
|
-
}
|
|
161
|
-
}, [selectedVariant, images, product]);
|
|
162
|
-
|
|
163
|
-
// Determine which image to show
|
|
164
|
-
const mainImageUrl = useMemo(() => {
|
|
165
|
-
if (selectedImageIndex === -1 && selectedVariant?.image) {
|
|
166
|
-
const img = selectedVariant.image;
|
|
167
|
-
return typeof img === 'string' ? img : img.url;
|
|
168
|
-
}
|
|
169
|
-
return images[selectedImageIndex]?.url || null;
|
|
170
|
-
}, [selectedImageIndex, selectedVariant, images]);
|
|
171
|
-
|
|
172
|
-
// Price info - use variant price if selected, else product price
|
|
173
|
-
const priceInfo = useMemo(() => {
|
|
174
|
-
if (selectedVariant?.price) {
|
|
175
|
-
const variantBase = parseFloat(selectedVariant.price);
|
|
176
|
-
const variantSale = selectedVariant.salePrice ? parseFloat(selectedVariant.salePrice) : null;
|
|
177
|
-
const variantEffective =
|
|
178
|
-
variantSale != null && variantSale < variantBase ? variantSale : variantBase;
|
|
179
|
-
|
|
180
|
-
// Overlay any product-level discount rule onto the variant price using the rule's ratio
|
|
181
|
-
if (product.discount) {
|
|
182
|
-
const ruleOriginal = parseFloat(product.discount.originalPrice) || 0;
|
|
183
|
-
const ruleDiscounted = parseFloat(product.discount.discountedPrice) || 0;
|
|
184
|
-
const ratio = ruleOriginal > 0 ? ruleDiscounted / ruleOriginal : 1;
|
|
185
|
-
const discounted = variantEffective * ratio;
|
|
186
|
-
const amount = Math.max(0, variantEffective - discounted);
|
|
187
|
-
return {
|
|
188
|
-
price: discounted,
|
|
189
|
-
originalPrice: variantEffective,
|
|
190
|
-
isOnSale: discounted < variantEffective,
|
|
191
|
-
discountAmount: amount,
|
|
192
|
-
discountPercent: variantEffective > 0 ? Math.round((amount / variantEffective) * 100) : 0,
|
|
193
|
-
};
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
return {
|
|
197
|
-
price: variantEffective,
|
|
198
|
-
originalPrice: variantBase,
|
|
199
|
-
isOnSale: variantEffective < variantBase,
|
|
200
|
-
discountPercent:
|
|
201
|
-
variantEffective < variantBase && variantBase > 0
|
|
202
|
-
? Math.round(((variantBase - variantEffective) / variantBase) * 100)
|
|
203
|
-
: 0,
|
|
204
|
-
};
|
|
205
|
-
}
|
|
206
|
-
return getProductPriceInfo(product);
|
|
207
|
-
}, [product, selectedVariant]);
|
|
208
|
-
|
|
209
|
-
// Inventory: use variant inventory if selected, else product inventory
|
|
210
|
-
const inventory = selectedVariant?.inventory ?? product?.inventory ?? null;
|
|
211
|
-
const canPurchase = inventory?.canPurchase !== false;
|
|
212
|
-
|
|
213
|
-
// Description
|
|
214
|
-
const description = useMemo(() => {
|
|
215
|
-
return product ? getDescriptionContent(product) : null;
|
|
216
|
-
}, [product]);
|
|
217
|
-
|
|
218
|
-
async function handleAddToCart() {
|
|
219
|
-
if (!product || addingToCart) return;
|
|
220
|
-
|
|
221
|
-
if (customizationFields.length > 0) {
|
|
222
|
-
const errs = validateCustomization(customizationFields, customizationValues);
|
|
223
|
-
if (Object.keys(errs).length > 0) {
|
|
224
|
-
setCustomizationErrors(errs);
|
|
225
|
-
return;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
setCustomizationErrors({});
|
|
229
|
-
|
|
230
|
-
try {
|
|
231
|
-
setAddingToCart(true);
|
|
232
|
-
const { getClient } = await import('@/lib/brainerce');
|
|
233
|
-
const client = getClient();
|
|
234
|
-
await client.smartAddToCart({
|
|
235
|
-
productId: product.id,
|
|
236
|
-
variantId: selectedVariant?.id,
|
|
237
|
-
quantity,
|
|
238
|
-
metadata:
|
|
239
|
-
customizationFields.length > 0 && Object.keys(customizationValues).length > 0
|
|
240
|
-
? customizationValues
|
|
241
|
-
: undefined,
|
|
242
|
-
});
|
|
243
|
-
await refreshCart();
|
|
244
|
-
setAddedMessage(true);
|
|
245
|
-
setTimeout(() => setAddedMessage(false), 2000);
|
|
246
|
-
} catch (err) {
|
|
247
|
-
console.error('Failed to add to cart:', err);
|
|
248
|
-
} finally {
|
|
249
|
-
setAddingToCart(false);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
return (
|
|
254
|
-
<div className="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
255
|
-
<div className="grid grid-cols-1 gap-8 lg:grid-cols-2 lg:gap-12">
|
|
256
|
-
{/* Image Gallery */}
|
|
257
|
-
<div className="space-y-4">
|
|
258
|
-
{/* Main Image */}
|
|
259
|
-
<div className="bg-muted relative aspect-square overflow-hidden rounded-lg">
|
|
260
|
-
{mainImageUrl ? (
|
|
261
|
-
<Image
|
|
262
|
-
src={mainImageUrl}
|
|
263
|
-
alt={product.name}
|
|
264
|
-
fill
|
|
265
|
-
sizes="(max-width: 1024px) 100vw, 50vw"
|
|
266
|
-
className="object-contain"
|
|
267
|
-
priority
|
|
268
|
-
/>
|
|
269
|
-
) : (
|
|
270
|
-
<div className="text-muted-foreground absolute inset-0 flex items-center justify-center">
|
|
271
|
-
<svg className="h-24 w-24" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
272
|
-
<path
|
|
273
|
-
strokeLinecap="round"
|
|
274
|
-
strokeLinejoin="round"
|
|
275
|
-
strokeWidth={1}
|
|
276
|
-
d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"
|
|
277
|
-
/>
|
|
278
|
-
</svg>
|
|
279
|
-
</div>
|
|
280
|
-
)}
|
|
281
|
-
</div>
|
|
282
|
-
|
|
283
|
-
{/* Thumbnails */}
|
|
284
|
-
{images.length > 1 && (
|
|
285
|
-
<div className="flex gap-2 overflow-x-auto pb-2">
|
|
286
|
-
{images.map((img, idx) => (
|
|
287
|
-
<button
|
|
288
|
-
key={idx}
|
|
289
|
-
type="button"
|
|
290
|
-
onClick={() => setSelectedImageIndex(idx)}
|
|
291
|
-
className={cn(
|
|
292
|
-
'relative h-16 w-16 flex-shrink-0 overflow-hidden rounded border-2 transition-colors',
|
|
293
|
-
selectedImageIndex === idx
|
|
294
|
-
? 'border-primary'
|
|
295
|
-
: 'border-border hover:border-muted-foreground'
|
|
296
|
-
)}
|
|
297
|
-
>
|
|
298
|
-
<Image
|
|
299
|
-
src={img.url}
|
|
300
|
-
alt={img.alt || `${product.name} ${idx + 1}`}
|
|
301
|
-
fill
|
|
302
|
-
sizes="64px"
|
|
303
|
-
className="object-cover"
|
|
304
|
-
/>
|
|
305
|
-
</button>
|
|
306
|
-
))}
|
|
307
|
-
</div>
|
|
308
|
-
)}
|
|
309
|
-
</div>
|
|
310
|
-
|
|
311
|
-
{/* Product Info */}
|
|
312
|
-
<div className="space-y-6">
|
|
313
|
-
{/* Categories */}
|
|
314
|
-
{product.categories && product.categories.length > 0 && (
|
|
315
|
-
<div className="flex flex-wrap gap-2">
|
|
316
|
-
{product.categories.map((cat) => (
|
|
317
|
-
<span
|
|
318
|
-
key={cat.id}
|
|
319
|
-
className="text-muted-foreground bg-muted rounded px-2 py-1 text-xs"
|
|
320
|
-
>
|
|
321
|
-
{cat.name}
|
|
322
|
-
</span>
|
|
323
|
-
))}
|
|
324
|
-
</div>
|
|
325
|
-
)}
|
|
326
|
-
|
|
327
|
-
{/* Brand */}
|
|
328
|
-
{(product as { brands?: Array<{ id: string; name: string }> }).brands &&
|
|
329
|
-
(product as { brands: Array<{ id: string; name: string }> }).brands.length > 0 && (
|
|
330
|
-
<div className="text-muted-foreground text-sm">
|
|
331
|
-
{t('by')}{' '}
|
|
332
|
-
<span className="text-foreground font-medium">
|
|
333
|
-
{(product as { brands: Array<{ id: string; name: string }> }).brands
|
|
334
|
-
.map((b) => b.name)
|
|
335
|
-
.join(', ')}
|
|
336
|
-
</span>
|
|
337
|
-
</div>
|
|
338
|
-
)}
|
|
339
|
-
|
|
340
|
-
{/* Title */}
|
|
341
|
-
<h1 className="text-foreground text-2xl font-bold sm:text-3xl">{product.name}</h1>
|
|
342
|
-
|
|
343
|
-
{/* Tags */}
|
|
344
|
-
{(product as { tags?: Array<{ id: string; name: string }> }).tags &&
|
|
345
|
-
(product as { tags: Array<{ id: string; name: string }> }).tags.length > 0 && (
|
|
346
|
-
<div className="flex flex-wrap gap-1.5">
|
|
347
|
-
{(product as { tags: Array<{ id: string; name: string }> }).tags.map((tag) => (
|
|
348
|
-
<span
|
|
349
|
-
key={tag.id}
|
|
350
|
-
className="border-border text-muted-foreground rounded-full border px-2.5 py-0.5 text-xs"
|
|
351
|
-
>
|
|
352
|
-
#{tag.name}
|
|
353
|
-
</span>
|
|
354
|
-
))}
|
|
355
|
-
</div>
|
|
356
|
-
)}
|
|
357
|
-
|
|
358
|
-
{/* Price */}
|
|
359
|
-
<PriceDisplay
|
|
360
|
-
price={priceInfo.originalPrice}
|
|
361
|
-
salePrice={priceInfo.isOnSale ? priceInfo.price : undefined}
|
|
362
|
-
size="lg"
|
|
363
|
-
/>
|
|
364
|
-
|
|
365
|
-
{/* Stock / Digital badge */}
|
|
366
|
-
{product.isDownloadable ? (
|
|
367
|
-
<span className="inline-flex items-center gap-1.5 rounded-full bg-green-100 px-3 py-1 text-xs font-medium text-green-800 dark:bg-green-950/30 dark:text-green-400">
|
|
368
|
-
<svg className="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
369
|
-
<path
|
|
370
|
-
strokeLinecap="round"
|
|
371
|
-
strokeLinejoin="round"
|
|
372
|
-
strokeWidth={2}
|
|
373
|
-
d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"
|
|
374
|
-
/>
|
|
375
|
-
</svg>
|
|
376
|
-
{t('instantDownload')}
|
|
377
|
-
</span>
|
|
378
|
-
) : (
|
|
379
|
-
<StockBadge inventory={inventory} lowStockThreshold={5} />
|
|
380
|
-
)}
|
|
381
|
-
|
|
382
|
-
{/* Downloadable files info */}
|
|
383
|
-
{product.isDownloadable && product.downloads && product.downloads.length > 0 && (
|
|
384
|
-
<div className="bg-muted/50 rounded-lg border p-4">
|
|
385
|
-
<p className="text-foreground mb-2 text-sm font-medium">
|
|
386
|
-
{t('filesIncluded')} ({product.downloads.length})
|
|
387
|
-
</p>
|
|
388
|
-
<ul className="space-y-1.5">
|
|
389
|
-
{product.downloads.map((file: DownloadFile) => (
|
|
390
|
-
<li
|
|
391
|
-
key={file.id}
|
|
392
|
-
className="text-muted-foreground flex items-center gap-2 text-sm"
|
|
393
|
-
>
|
|
394
|
-
<svg
|
|
395
|
-
className="h-4 w-4 flex-shrink-0"
|
|
396
|
-
fill="none"
|
|
397
|
-
viewBox="0 0 24 24"
|
|
398
|
-
stroke="currentColor"
|
|
399
|
-
>
|
|
400
|
-
<path
|
|
401
|
-
strokeLinecap="round"
|
|
402
|
-
strokeLinejoin="round"
|
|
403
|
-
strokeWidth={1.5}
|
|
404
|
-
d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z"
|
|
405
|
-
/>
|
|
406
|
-
</svg>
|
|
407
|
-
<span className="truncate">{file.name}</span>
|
|
408
|
-
{file.size && (
|
|
409
|
-
<span className="flex-shrink-0 text-xs">
|
|
410
|
-
(
|
|
411
|
-
{file.size < 1024 * 1024
|
|
412
|
-
? `${(file.size / 1024).toFixed(0)} KB`
|
|
413
|
-
: `${(file.size / (1024 * 1024)).toFixed(1)} MB`}
|
|
414
|
-
)
|
|
415
|
-
</span>
|
|
416
|
-
)}
|
|
417
|
-
</li>
|
|
418
|
-
))}
|
|
419
|
-
</ul>
|
|
420
|
-
</div>
|
|
421
|
-
)}
|
|
422
|
-
|
|
423
|
-
{/* Variant Selector */}
|
|
424
|
-
{product.type === 'VARIABLE' && product.variants && product.variants.length > 0 && (
|
|
425
|
-
<VariantSelector
|
|
426
|
-
product={product}
|
|
427
|
-
selectedVariant={selectedVariant}
|
|
428
|
-
onVariantChange={setSelectedVariant}
|
|
429
|
-
/>
|
|
430
|
-
)}
|
|
431
|
-
|
|
432
|
-
{/* Customization Fields (buyer input) */}
|
|
433
|
-
{customizationFields.length > 0 && (
|
|
434
|
-
<CustomizationFields
|
|
435
|
-
fields={customizationFields}
|
|
436
|
-
values={customizationValues}
|
|
437
|
-
onChange={setCustomizationValues}
|
|
438
|
-
errors={customizationErrors}
|
|
439
|
-
/>
|
|
440
|
-
)}
|
|
441
|
-
|
|
442
|
-
{/* Quantity + Add to Cart */}
|
|
443
|
-
<div className="flex items-center gap-4">
|
|
444
|
-
<div className="border-border flex items-center rounded border">
|
|
445
|
-
<button
|
|
446
|
-
type="button"
|
|
447
|
-
onClick={() => setQuantity((q) => Math.max(1, q - 1))}
|
|
448
|
-
className="text-foreground hover:bg-muted px-3 py-2 transition-colors"
|
|
449
|
-
aria-label={t('decreaseQuantity')}
|
|
450
|
-
>
|
|
451
|
-
-
|
|
452
|
-
</button>
|
|
453
|
-
<span className="text-foreground min-w-[3rem] px-4 py-2 text-center text-sm font-medium">
|
|
454
|
-
{quantity}
|
|
455
|
-
</span>
|
|
456
|
-
<button
|
|
457
|
-
type="button"
|
|
458
|
-
onClick={() => setQuantity((q) => q + 1)}
|
|
459
|
-
className="text-foreground hover:bg-muted px-3 py-2 transition-colors"
|
|
460
|
-
aria-label={t('increaseQuantity')}
|
|
461
|
-
>
|
|
462
|
-
+
|
|
463
|
-
</button>
|
|
464
|
-
</div>
|
|
465
|
-
|
|
466
|
-
<button
|
|
467
|
-
type="button"
|
|
468
|
-
onClick={handleAddToCart}
|
|
469
|
-
disabled={!canPurchase || addingToCart}
|
|
470
|
-
className={cn(
|
|
471
|
-
'flex-1 rounded px-6 py-3 text-sm font-medium transition-all',
|
|
472
|
-
canPurchase
|
|
473
|
-
? 'bg-primary text-primary-foreground hover:opacity-90'
|
|
474
|
-
: 'bg-muted text-muted-foreground cursor-not-allowed'
|
|
475
|
-
)}
|
|
476
|
-
>
|
|
477
|
-
{addingToCart ? (
|
|
478
|
-
<span className="inline-flex items-center gap-2">
|
|
479
|
-
<LoadingSpinner
|
|
480
|
-
size="sm"
|
|
481
|
-
className="border-primary-foreground/30 border-t-primary-foreground"
|
|
482
|
-
/>
|
|
483
|
-
{t('addingToCart')}
|
|
484
|
-
</span>
|
|
485
|
-
) : addedMessage ? (
|
|
486
|
-
t('addedToCart')
|
|
487
|
-
) : !canPurchase ? (
|
|
488
|
-
t('outOfStock')
|
|
489
|
-
) : (
|
|
490
|
-
t('addToCart')
|
|
491
|
-
)}
|
|
492
|
-
</button>
|
|
493
|
-
</div>
|
|
494
|
-
|
|
495
|
-
{/* Download after purchase note */}
|
|
496
|
-
{product.isDownloadable && (
|
|
497
|
-
<p className="text-muted-foreground text-sm">{t('downloadAfterPurchase')}</p>
|
|
498
|
-
)}
|
|
499
|
-
|
|
500
|
-
{/* Description */}
|
|
501
|
-
{description && (
|
|
502
|
-
<div className="border-border border-t pt-4">
|
|
503
|
-
<h2 className="text-foreground mb-3 text-lg font-semibold">{t('description')}</h2>
|
|
504
|
-
{'html' in description ? (
|
|
505
|
-
<div
|
|
506
|
-
className="prose prose-sm text-muted-foreground max-w-none"
|
|
507
|
-
dangerouslySetInnerHTML={{ __html: sanitizeProductHtml(description.html) }}
|
|
508
|
-
/>
|
|
509
|
-
) : (
|
|
510
|
-
<p className="text-muted-foreground whitespace-pre-wrap">{description.text}</p>
|
|
511
|
-
)}
|
|
512
|
-
</div>
|
|
513
|
-
)}
|
|
514
|
-
|
|
515
|
-
{/* Metafields / Specifications */}
|
|
516
|
-
{product.metafields && product.metafields.length > 0 && (
|
|
517
|
-
<div className="border-border border-t pt-4">
|
|
518
|
-
<h2 className="text-foreground mb-3 text-lg font-semibold">{t('specifications')}</h2>
|
|
519
|
-
<table className="w-full text-sm">
|
|
520
|
-
<tbody>
|
|
521
|
-
{product.metafields.map((field) => (
|
|
522
|
-
<tr key={field.id} className="border-border border-b last:border-0">
|
|
523
|
-
<td className="text-foreground whitespace-nowrap py-2 pe-4 font-medium">
|
|
524
|
-
{field.definitionName}
|
|
525
|
-
</td>
|
|
526
|
-
<td className="text-muted-foreground py-2">
|
|
527
|
-
<MetafieldValue field={field} />
|
|
528
|
-
</td>
|
|
529
|
-
</tr>
|
|
530
|
-
))}
|
|
531
|
-
</tbody>
|
|
532
|
-
</table>
|
|
533
|
-
</div>
|
|
534
|
-
)}
|
|
535
|
-
</div>
|
|
536
|
-
</div>
|
|
537
|
-
|
|
538
|
-
{/* Frequently Bought Together (cross-sells) */}
|
|
539
|
-
{recommendations?.crossSells && recommendations.crossSells.length > 0 && (
|
|
540
|
-
<FrequentlyBoughtTogether
|
|
541
|
-
items={recommendations.crossSells}
|
|
542
|
-
currentProduct={product}
|
|
543
|
-
className="mt-12"
|
|
544
|
-
/>
|
|
545
|
-
)}
|
|
546
|
-
|
|
547
|
-
{/* Upsells */}
|
|
548
|
-
{recommendations?.upsells && recommendations.upsells.length > 0 && (
|
|
549
|
-
<RecommendationSection
|
|
550
|
-
title={t('upgradeYourChoice')}
|
|
551
|
-
items={recommendations.upsells}
|
|
552
|
-
className="mt-12"
|
|
553
|
-
/>
|
|
554
|
-
)}
|
|
555
|
-
|
|
556
|
-
{/* Related products */}
|
|
557
|
-
{recommendations?.related && recommendations.related.length > 0 && (
|
|
558
|
-
<RecommendationSection
|
|
559
|
-
title={t('similarProducts')}
|
|
560
|
-
items={recommendations.related}
|
|
561
|
-
className="mt-12"
|
|
562
|
-
/>
|
|
563
|
-
)}
|
|
564
|
-
</div>
|
|
565
|
-
);
|
|
566
|
-
}
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState, useMemo } from 'react';
|
|
4
|
+
import Image from 'next/image';
|
|
5
|
+
import type {
|
|
6
|
+
Product,
|
|
7
|
+
ProductVariant,
|
|
8
|
+
ProductImage,
|
|
9
|
+
ProductMetafield,
|
|
10
|
+
DownloadFile,
|
|
11
|
+
} from 'brainerce';
|
|
12
|
+
import { getProductPriceInfo, getDescriptionContent } from 'brainerce';
|
|
13
|
+
import { useCart } from '@/providers/store-provider';
|
|
14
|
+
import { PriceDisplay } from '@/components/shared/price-display';
|
|
15
|
+
import { LoadingSpinner } from '@/components/shared/loading-spinner';
|
|
16
|
+
import { VariantSelector } from '@/components/products/variant-selector';
|
|
17
|
+
import { StockBadge } from '@/components/products/stock-badge';
|
|
18
|
+
import { RecommendationSection } from '@/components/products/recommendation-section';
|
|
19
|
+
import { FrequentlyBoughtTogether } from '@/components/products/frequently-bought-together';
|
|
20
|
+
import {
|
|
21
|
+
CustomizationFields,
|
|
22
|
+
validateCustomization,
|
|
23
|
+
type CustomizationValues,
|
|
24
|
+
} from '@/components/products/customization-fields';
|
|
25
|
+
import { useTranslations } from '@/lib/translations';
|
|
26
|
+
import { cn } from '@/lib/utils';
|
|
27
|
+
import { sanitizeProductHtml } from '@/lib/sanitize-html';
|
|
28
|
+
|
|
29
|
+
/** Render a metafield value based on its type */
|
|
30
|
+
function MetafieldValue({ field }: { field: ProductMetafield }) {
|
|
31
|
+
const tc = useTranslations('common');
|
|
32
|
+
switch (field.type) {
|
|
33
|
+
case 'IMAGE': {
|
|
34
|
+
if (!field.value) return <span className="text-muted-foreground">-</span>;
|
|
35
|
+
return (
|
|
36
|
+
<img
|
|
37
|
+
src={field.value}
|
|
38
|
+
alt={field.definitionName}
|
|
39
|
+
className="h-16 w-16 rounded object-cover"
|
|
40
|
+
/>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
case 'GALLERY': {
|
|
44
|
+
let urls: string[] = [];
|
|
45
|
+
try {
|
|
46
|
+
const parsed = JSON.parse(field.value);
|
|
47
|
+
urls = Array.isArray(parsed)
|
|
48
|
+
? parsed.filter((u: unknown) => typeof u === 'string' && u)
|
|
49
|
+
: [];
|
|
50
|
+
} catch {
|
|
51
|
+
urls = field.value ? [field.value] : [];
|
|
52
|
+
}
|
|
53
|
+
if (urls.length === 0) return <span className="text-muted-foreground">-</span>;
|
|
54
|
+
return (
|
|
55
|
+
<div className="flex flex-wrap gap-2">
|
|
56
|
+
{urls.map((url, i) => (
|
|
57
|
+
<img
|
|
58
|
+
key={i}
|
|
59
|
+
src={url}
|
|
60
|
+
alt={`${field.definitionName} ${i + 1}`}
|
|
61
|
+
className="h-16 w-16 rounded object-cover"
|
|
62
|
+
/>
|
|
63
|
+
))}
|
|
64
|
+
</div>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
case 'URL':
|
|
68
|
+
return field.value ? (
|
|
69
|
+
<a
|
|
70
|
+
href={field.value}
|
|
71
|
+
target="_blank"
|
|
72
|
+
rel="noopener noreferrer"
|
|
73
|
+
className="text-primary break-all hover:underline"
|
|
74
|
+
>
|
|
75
|
+
{field.value}
|
|
76
|
+
</a>
|
|
77
|
+
) : (
|
|
78
|
+
<span className="text-muted-foreground">-</span>
|
|
79
|
+
);
|
|
80
|
+
case 'COLOR':
|
|
81
|
+
return field.value ? (
|
|
82
|
+
<span className="inline-flex items-center gap-2">
|
|
83
|
+
<span
|
|
84
|
+
className="border-border inline-block h-4 w-4 rounded-full border"
|
|
85
|
+
style={{ backgroundColor: field.value }}
|
|
86
|
+
/>
|
|
87
|
+
{field.value}
|
|
88
|
+
</span>
|
|
89
|
+
) : (
|
|
90
|
+
<span className="text-muted-foreground">-</span>
|
|
91
|
+
);
|
|
92
|
+
case 'BOOLEAN':
|
|
93
|
+
return <span>{field.value === 'true' ? tc('yes') : tc('no')}</span>;
|
|
94
|
+
case 'DATE':
|
|
95
|
+
case 'DATETIME': {
|
|
96
|
+
if (!field.value) return <span className="text-muted-foreground">-</span>;
|
|
97
|
+
try {
|
|
98
|
+
const date = new Date(field.value);
|
|
99
|
+
return (
|
|
100
|
+
<span>
|
|
101
|
+
{field.type === 'DATETIME' ? date.toLocaleString() : date.toLocaleDateString()}
|
|
102
|
+
</span>
|
|
103
|
+
);
|
|
104
|
+
} catch {
|
|
105
|
+
return <span>{field.value}</span>;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
default:
|
|
109
|
+
return <span>{field.value || '-'}</span>;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
interface ProductClientSectionProps {
|
|
114
|
+
product: Product;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export function ProductClientSection({ product: initialProduct }: ProductClientSectionProps) {
|
|
118
|
+
const { refreshCart } = useCart();
|
|
119
|
+
const t = useTranslations('productDetail');
|
|
120
|
+
|
|
121
|
+
const product = initialProduct;
|
|
122
|
+
const recommendations = product?.recommendations ?? null;
|
|
123
|
+
|
|
124
|
+
const [selectedVariant, setSelectedVariant] = useState<ProductVariant | null>(
|
|
125
|
+
product.variants && product.variants.length > 0 ? product.variants[0] : null
|
|
126
|
+
);
|
|
127
|
+
const [selectedImageIndex, setSelectedImageIndex] = useState(0);
|
|
128
|
+
const [quantity, setQuantity] = useState(1);
|
|
129
|
+
const [addingToCart, setAddingToCart] = useState(false);
|
|
130
|
+
const [addedMessage, setAddedMessage] = useState(false);
|
|
131
|
+
const customizationFields = product.customizationFields ?? [];
|
|
132
|
+
const [customizationValues, setCustomizationValues] = useState<CustomizationValues>(() => {
|
|
133
|
+
const initial: CustomizationValues = {};
|
|
134
|
+
for (const field of customizationFields) {
|
|
135
|
+
if (field.defaultValue != null) initial[field.key] = field.defaultValue;
|
|
136
|
+
}
|
|
137
|
+
return initial;
|
|
138
|
+
});
|
|
139
|
+
const [customizationErrors, setCustomizationErrors] = useState<Record<string, string>>({});
|
|
140
|
+
|
|
141
|
+
// Images list - switch main image when variant changes
|
|
142
|
+
const images: ProductImage[] = useMemo(() => {
|
|
143
|
+
return product?.images || [];
|
|
144
|
+
}, [product]);
|
|
145
|
+
|
|
146
|
+
// When variant changes, update selected image to variant image if available
|
|
147
|
+
useEffect(() => {
|
|
148
|
+
if (!selectedVariant?.image || !product) return;
|
|
149
|
+
|
|
150
|
+
const variantImgUrl =
|
|
151
|
+
typeof selectedVariant.image === 'string' ? selectedVariant.image : selectedVariant.image.url;
|
|
152
|
+
|
|
153
|
+
// Find if variant image exists in product images
|
|
154
|
+
const idx = images.findIndex((img) => img.url === variantImgUrl);
|
|
155
|
+
if (idx >= 0) {
|
|
156
|
+
setSelectedImageIndex(idx);
|
|
157
|
+
} else {
|
|
158
|
+
// Variant image not in product images - select index 0 as fallback
|
|
159
|
+
setSelectedImageIndex(-1);
|
|
160
|
+
}
|
|
161
|
+
}, [selectedVariant, images, product]);
|
|
162
|
+
|
|
163
|
+
// Determine which image to show
|
|
164
|
+
const mainImageUrl = useMemo(() => {
|
|
165
|
+
if (selectedImageIndex === -1 && selectedVariant?.image) {
|
|
166
|
+
const img = selectedVariant.image;
|
|
167
|
+
return typeof img === 'string' ? img : img.url;
|
|
168
|
+
}
|
|
169
|
+
return images[selectedImageIndex]?.url || null;
|
|
170
|
+
}, [selectedImageIndex, selectedVariant, images]);
|
|
171
|
+
|
|
172
|
+
// Price info - use variant price if selected, else product price
|
|
173
|
+
const priceInfo = useMemo(() => {
|
|
174
|
+
if (selectedVariant?.price) {
|
|
175
|
+
const variantBase = parseFloat(selectedVariant.price);
|
|
176
|
+
const variantSale = selectedVariant.salePrice ? parseFloat(selectedVariant.salePrice) : null;
|
|
177
|
+
const variantEffective =
|
|
178
|
+
variantSale != null && variantSale < variantBase ? variantSale : variantBase;
|
|
179
|
+
|
|
180
|
+
// Overlay any product-level discount rule onto the variant price using the rule's ratio
|
|
181
|
+
if (product.discount) {
|
|
182
|
+
const ruleOriginal = parseFloat(product.discount.originalPrice) || 0;
|
|
183
|
+
const ruleDiscounted = parseFloat(product.discount.discountedPrice) || 0;
|
|
184
|
+
const ratio = ruleOriginal > 0 ? ruleDiscounted / ruleOriginal : 1;
|
|
185
|
+
const discounted = variantEffective * ratio;
|
|
186
|
+
const amount = Math.max(0, variantEffective - discounted);
|
|
187
|
+
return {
|
|
188
|
+
price: discounted,
|
|
189
|
+
originalPrice: variantEffective,
|
|
190
|
+
isOnSale: discounted < variantEffective,
|
|
191
|
+
discountAmount: amount,
|
|
192
|
+
discountPercent: variantEffective > 0 ? Math.round((amount / variantEffective) * 100) : 0,
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
return {
|
|
197
|
+
price: variantEffective,
|
|
198
|
+
originalPrice: variantBase,
|
|
199
|
+
isOnSale: variantEffective < variantBase,
|
|
200
|
+
discountPercent:
|
|
201
|
+
variantEffective < variantBase && variantBase > 0
|
|
202
|
+
? Math.round(((variantBase - variantEffective) / variantBase) * 100)
|
|
203
|
+
: 0,
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
return getProductPriceInfo(product);
|
|
207
|
+
}, [product, selectedVariant]);
|
|
208
|
+
|
|
209
|
+
// Inventory: use variant inventory if selected, else product inventory
|
|
210
|
+
const inventory = selectedVariant?.inventory ?? product?.inventory ?? null;
|
|
211
|
+
const canPurchase = inventory?.canPurchase !== false;
|
|
212
|
+
|
|
213
|
+
// Description
|
|
214
|
+
const description = useMemo(() => {
|
|
215
|
+
return product ? getDescriptionContent(product) : null;
|
|
216
|
+
}, [product]);
|
|
217
|
+
|
|
218
|
+
async function handleAddToCart() {
|
|
219
|
+
if (!product || addingToCart) return;
|
|
220
|
+
|
|
221
|
+
if (customizationFields.length > 0) {
|
|
222
|
+
const errs = validateCustomization(customizationFields, customizationValues);
|
|
223
|
+
if (Object.keys(errs).length > 0) {
|
|
224
|
+
setCustomizationErrors(errs);
|
|
225
|
+
return;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
setCustomizationErrors({});
|
|
229
|
+
|
|
230
|
+
try {
|
|
231
|
+
setAddingToCart(true);
|
|
232
|
+
const { getClient } = await import('@/lib/brainerce');
|
|
233
|
+
const client = getClient();
|
|
234
|
+
await client.smartAddToCart({
|
|
235
|
+
productId: product.id,
|
|
236
|
+
variantId: selectedVariant?.id,
|
|
237
|
+
quantity,
|
|
238
|
+
metadata:
|
|
239
|
+
customizationFields.length > 0 && Object.keys(customizationValues).length > 0
|
|
240
|
+
? customizationValues
|
|
241
|
+
: undefined,
|
|
242
|
+
});
|
|
243
|
+
await refreshCart();
|
|
244
|
+
setAddedMessage(true);
|
|
245
|
+
setTimeout(() => setAddedMessage(false), 2000);
|
|
246
|
+
} catch (err) {
|
|
247
|
+
console.error('Failed to add to cart:', err);
|
|
248
|
+
} finally {
|
|
249
|
+
setAddingToCart(false);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
return (
|
|
254
|
+
<div className="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
255
|
+
<div className="grid grid-cols-1 gap-8 lg:grid-cols-2 lg:gap-12">
|
|
256
|
+
{/* Image Gallery */}
|
|
257
|
+
<div className="space-y-4">
|
|
258
|
+
{/* Main Image */}
|
|
259
|
+
<div className="bg-muted relative aspect-square overflow-hidden rounded-lg">
|
|
260
|
+
{mainImageUrl ? (
|
|
261
|
+
<Image
|
|
262
|
+
src={mainImageUrl}
|
|
263
|
+
alt={product.name}
|
|
264
|
+
fill
|
|
265
|
+
sizes="(max-width: 1024px) 100vw, 50vw"
|
|
266
|
+
className="object-contain"
|
|
267
|
+
priority
|
|
268
|
+
/>
|
|
269
|
+
) : (
|
|
270
|
+
<div className="text-muted-foreground absolute inset-0 flex items-center justify-center">
|
|
271
|
+
<svg className="h-24 w-24" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
272
|
+
<path
|
|
273
|
+
strokeLinecap="round"
|
|
274
|
+
strokeLinejoin="round"
|
|
275
|
+
strokeWidth={1}
|
|
276
|
+
d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"
|
|
277
|
+
/>
|
|
278
|
+
</svg>
|
|
279
|
+
</div>
|
|
280
|
+
)}
|
|
281
|
+
</div>
|
|
282
|
+
|
|
283
|
+
{/* Thumbnails */}
|
|
284
|
+
{images.length > 1 && (
|
|
285
|
+
<div className="flex gap-2 overflow-x-auto pb-2">
|
|
286
|
+
{images.map((img, idx) => (
|
|
287
|
+
<button
|
|
288
|
+
key={idx}
|
|
289
|
+
type="button"
|
|
290
|
+
onClick={() => setSelectedImageIndex(idx)}
|
|
291
|
+
className={cn(
|
|
292
|
+
'relative h-16 w-16 flex-shrink-0 overflow-hidden rounded border-2 transition-colors',
|
|
293
|
+
selectedImageIndex === idx
|
|
294
|
+
? 'border-primary'
|
|
295
|
+
: 'border-border hover:border-muted-foreground'
|
|
296
|
+
)}
|
|
297
|
+
>
|
|
298
|
+
<Image
|
|
299
|
+
src={img.url}
|
|
300
|
+
alt={img.alt || `${product.name} ${idx + 1}`}
|
|
301
|
+
fill
|
|
302
|
+
sizes="64px"
|
|
303
|
+
className="object-cover"
|
|
304
|
+
/>
|
|
305
|
+
</button>
|
|
306
|
+
))}
|
|
307
|
+
</div>
|
|
308
|
+
)}
|
|
309
|
+
</div>
|
|
310
|
+
|
|
311
|
+
{/* Product Info */}
|
|
312
|
+
<div className="space-y-6">
|
|
313
|
+
{/* Categories */}
|
|
314
|
+
{product.categories && product.categories.length > 0 && (
|
|
315
|
+
<div className="flex flex-wrap gap-2">
|
|
316
|
+
{product.categories.map((cat) => (
|
|
317
|
+
<span
|
|
318
|
+
key={cat.id}
|
|
319
|
+
className="text-muted-foreground bg-muted rounded px-2 py-1 text-xs"
|
|
320
|
+
>
|
|
321
|
+
{cat.name}
|
|
322
|
+
</span>
|
|
323
|
+
))}
|
|
324
|
+
</div>
|
|
325
|
+
)}
|
|
326
|
+
|
|
327
|
+
{/* Brand */}
|
|
328
|
+
{(product as { brands?: Array<{ id: string; name: string }> }).brands &&
|
|
329
|
+
(product as { brands: Array<{ id: string; name: string }> }).brands.length > 0 && (
|
|
330
|
+
<div className="text-muted-foreground text-sm">
|
|
331
|
+
{t('by')}{' '}
|
|
332
|
+
<span className="text-foreground font-medium">
|
|
333
|
+
{(product as { brands: Array<{ id: string; name: string }> }).brands
|
|
334
|
+
.map((b) => b.name)
|
|
335
|
+
.join(', ')}
|
|
336
|
+
</span>
|
|
337
|
+
</div>
|
|
338
|
+
)}
|
|
339
|
+
|
|
340
|
+
{/* Title */}
|
|
341
|
+
<h1 className="text-foreground text-2xl font-bold sm:text-3xl">{product.name}</h1>
|
|
342
|
+
|
|
343
|
+
{/* Tags */}
|
|
344
|
+
{(product as { tags?: Array<{ id: string; name: string }> }).tags &&
|
|
345
|
+
(product as { tags: Array<{ id: string; name: string }> }).tags.length > 0 && (
|
|
346
|
+
<div className="flex flex-wrap gap-1.5">
|
|
347
|
+
{(product as { tags: Array<{ id: string; name: string }> }).tags.map((tag) => (
|
|
348
|
+
<span
|
|
349
|
+
key={tag.id}
|
|
350
|
+
className="border-border text-muted-foreground rounded-full border px-2.5 py-0.5 text-xs"
|
|
351
|
+
>
|
|
352
|
+
#{tag.name}
|
|
353
|
+
</span>
|
|
354
|
+
))}
|
|
355
|
+
</div>
|
|
356
|
+
)}
|
|
357
|
+
|
|
358
|
+
{/* Price */}
|
|
359
|
+
<PriceDisplay
|
|
360
|
+
price={priceInfo.originalPrice}
|
|
361
|
+
salePrice={priceInfo.isOnSale ? priceInfo.price : undefined}
|
|
362
|
+
size="lg"
|
|
363
|
+
/>
|
|
364
|
+
|
|
365
|
+
{/* Stock / Digital badge */}
|
|
366
|
+
{product.isDownloadable ? (
|
|
367
|
+
<span className="inline-flex items-center gap-1.5 rounded-full bg-green-100 px-3 py-1 text-xs font-medium text-green-800 dark:bg-green-950/30 dark:text-green-400">
|
|
368
|
+
<svg className="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
369
|
+
<path
|
|
370
|
+
strokeLinecap="round"
|
|
371
|
+
strokeLinejoin="round"
|
|
372
|
+
strokeWidth={2}
|
|
373
|
+
d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"
|
|
374
|
+
/>
|
|
375
|
+
</svg>
|
|
376
|
+
{t('instantDownload')}
|
|
377
|
+
</span>
|
|
378
|
+
) : (
|
|
379
|
+
<StockBadge inventory={inventory} lowStockThreshold={5} />
|
|
380
|
+
)}
|
|
381
|
+
|
|
382
|
+
{/* Downloadable files info */}
|
|
383
|
+
{product.isDownloadable && product.downloads && product.downloads.length > 0 && (
|
|
384
|
+
<div className="bg-muted/50 rounded-lg border p-4">
|
|
385
|
+
<p className="text-foreground mb-2 text-sm font-medium">
|
|
386
|
+
{t('filesIncluded')} ({product.downloads.length})
|
|
387
|
+
</p>
|
|
388
|
+
<ul className="space-y-1.5">
|
|
389
|
+
{product.downloads.map((file: DownloadFile) => (
|
|
390
|
+
<li
|
|
391
|
+
key={file.id}
|
|
392
|
+
className="text-muted-foreground flex items-center gap-2 text-sm"
|
|
393
|
+
>
|
|
394
|
+
<svg
|
|
395
|
+
className="h-4 w-4 flex-shrink-0"
|
|
396
|
+
fill="none"
|
|
397
|
+
viewBox="0 0 24 24"
|
|
398
|
+
stroke="currentColor"
|
|
399
|
+
>
|
|
400
|
+
<path
|
|
401
|
+
strokeLinecap="round"
|
|
402
|
+
strokeLinejoin="round"
|
|
403
|
+
strokeWidth={1.5}
|
|
404
|
+
d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z"
|
|
405
|
+
/>
|
|
406
|
+
</svg>
|
|
407
|
+
<span className="truncate">{file.name}</span>
|
|
408
|
+
{file.size && (
|
|
409
|
+
<span className="flex-shrink-0 text-xs">
|
|
410
|
+
(
|
|
411
|
+
{file.size < 1024 * 1024
|
|
412
|
+
? `${(file.size / 1024).toFixed(0)} KB`
|
|
413
|
+
: `${(file.size / (1024 * 1024)).toFixed(1)} MB`}
|
|
414
|
+
)
|
|
415
|
+
</span>
|
|
416
|
+
)}
|
|
417
|
+
</li>
|
|
418
|
+
))}
|
|
419
|
+
</ul>
|
|
420
|
+
</div>
|
|
421
|
+
)}
|
|
422
|
+
|
|
423
|
+
{/* Variant Selector */}
|
|
424
|
+
{product.type === 'VARIABLE' && product.variants && product.variants.length > 0 && (
|
|
425
|
+
<VariantSelector
|
|
426
|
+
product={product}
|
|
427
|
+
selectedVariant={selectedVariant}
|
|
428
|
+
onVariantChange={setSelectedVariant}
|
|
429
|
+
/>
|
|
430
|
+
)}
|
|
431
|
+
|
|
432
|
+
{/* Customization Fields (buyer input) */}
|
|
433
|
+
{customizationFields.length > 0 && (
|
|
434
|
+
<CustomizationFields
|
|
435
|
+
fields={customizationFields}
|
|
436
|
+
values={customizationValues}
|
|
437
|
+
onChange={setCustomizationValues}
|
|
438
|
+
errors={customizationErrors}
|
|
439
|
+
/>
|
|
440
|
+
)}
|
|
441
|
+
|
|
442
|
+
{/* Quantity + Add to Cart */}
|
|
443
|
+
<div className="flex items-center gap-4">
|
|
444
|
+
<div className="border-border flex items-center rounded border">
|
|
445
|
+
<button
|
|
446
|
+
type="button"
|
|
447
|
+
onClick={() => setQuantity((q) => Math.max(1, q - 1))}
|
|
448
|
+
className="text-foreground hover:bg-muted px-3 py-2 transition-colors"
|
|
449
|
+
aria-label={t('decreaseQuantity')}
|
|
450
|
+
>
|
|
451
|
+
-
|
|
452
|
+
</button>
|
|
453
|
+
<span className="text-foreground min-w-[3rem] px-4 py-2 text-center text-sm font-medium">
|
|
454
|
+
{quantity}
|
|
455
|
+
</span>
|
|
456
|
+
<button
|
|
457
|
+
type="button"
|
|
458
|
+
onClick={() => setQuantity((q) => q + 1)}
|
|
459
|
+
className="text-foreground hover:bg-muted px-3 py-2 transition-colors"
|
|
460
|
+
aria-label={t('increaseQuantity')}
|
|
461
|
+
>
|
|
462
|
+
+
|
|
463
|
+
</button>
|
|
464
|
+
</div>
|
|
465
|
+
|
|
466
|
+
<button
|
|
467
|
+
type="button"
|
|
468
|
+
onClick={handleAddToCart}
|
|
469
|
+
disabled={!canPurchase || addingToCart}
|
|
470
|
+
className={cn(
|
|
471
|
+
'flex-1 rounded px-6 py-3 text-sm font-medium transition-all',
|
|
472
|
+
canPurchase
|
|
473
|
+
? 'bg-primary text-primary-foreground hover:opacity-90'
|
|
474
|
+
: 'bg-muted text-muted-foreground cursor-not-allowed'
|
|
475
|
+
)}
|
|
476
|
+
>
|
|
477
|
+
{addingToCart ? (
|
|
478
|
+
<span className="inline-flex items-center gap-2">
|
|
479
|
+
<LoadingSpinner
|
|
480
|
+
size="sm"
|
|
481
|
+
className="border-primary-foreground/30 border-t-primary-foreground"
|
|
482
|
+
/>
|
|
483
|
+
{t('addingToCart')}
|
|
484
|
+
</span>
|
|
485
|
+
) : addedMessage ? (
|
|
486
|
+
t('addedToCart')
|
|
487
|
+
) : !canPurchase ? (
|
|
488
|
+
t('outOfStock')
|
|
489
|
+
) : (
|
|
490
|
+
t('addToCart')
|
|
491
|
+
)}
|
|
492
|
+
</button>
|
|
493
|
+
</div>
|
|
494
|
+
|
|
495
|
+
{/* Download after purchase note */}
|
|
496
|
+
{product.isDownloadable && (
|
|
497
|
+
<p className="text-muted-foreground text-sm">{t('downloadAfterPurchase')}</p>
|
|
498
|
+
)}
|
|
499
|
+
|
|
500
|
+
{/* Description */}
|
|
501
|
+
{description && (
|
|
502
|
+
<div className="border-border border-t pt-4">
|
|
503
|
+
<h2 className="text-foreground mb-3 text-lg font-semibold">{t('description')}</h2>
|
|
504
|
+
{'html' in description ? (
|
|
505
|
+
<div
|
|
506
|
+
className="prose prose-sm text-muted-foreground max-w-none"
|
|
507
|
+
dangerouslySetInnerHTML={{ __html: sanitizeProductHtml(description.html) }}
|
|
508
|
+
/>
|
|
509
|
+
) : (
|
|
510
|
+
<p className="text-muted-foreground whitespace-pre-wrap">{description.text}</p>
|
|
511
|
+
)}
|
|
512
|
+
</div>
|
|
513
|
+
)}
|
|
514
|
+
|
|
515
|
+
{/* Metafields / Specifications */}
|
|
516
|
+
{product.metafields && product.metafields.length > 0 && (
|
|
517
|
+
<div className="border-border border-t pt-4">
|
|
518
|
+
<h2 className="text-foreground mb-3 text-lg font-semibold">{t('specifications')}</h2>
|
|
519
|
+
<table className="w-full text-sm">
|
|
520
|
+
<tbody>
|
|
521
|
+
{product.metafields.map((field) => (
|
|
522
|
+
<tr key={field.id} className="border-border border-b last:border-0">
|
|
523
|
+
<td className="text-foreground whitespace-nowrap py-2 pe-4 font-medium">
|
|
524
|
+
{field.definitionName}
|
|
525
|
+
</td>
|
|
526
|
+
<td className="text-muted-foreground py-2">
|
|
527
|
+
<MetafieldValue field={field} />
|
|
528
|
+
</td>
|
|
529
|
+
</tr>
|
|
530
|
+
))}
|
|
531
|
+
</tbody>
|
|
532
|
+
</table>
|
|
533
|
+
</div>
|
|
534
|
+
)}
|
|
535
|
+
</div>
|
|
536
|
+
</div>
|
|
537
|
+
|
|
538
|
+
{/* Frequently Bought Together (cross-sells) */}
|
|
539
|
+
{recommendations?.crossSells && recommendations.crossSells.length > 0 && (
|
|
540
|
+
<FrequentlyBoughtTogether
|
|
541
|
+
items={recommendations.crossSells}
|
|
542
|
+
currentProduct={product}
|
|
543
|
+
className="mt-12"
|
|
544
|
+
/>
|
|
545
|
+
)}
|
|
546
|
+
|
|
547
|
+
{/* Upsells */}
|
|
548
|
+
{recommendations?.upsells && recommendations.upsells.length > 0 && (
|
|
549
|
+
<RecommendationSection
|
|
550
|
+
title={t('upgradeYourChoice')}
|
|
551
|
+
items={recommendations.upsells}
|
|
552
|
+
className="mt-12"
|
|
553
|
+
/>
|
|
554
|
+
)}
|
|
555
|
+
|
|
556
|
+
{/* Related products */}
|
|
557
|
+
{recommendations?.related && recommendations.related.length > 0 && (
|
|
558
|
+
<RecommendationSection
|
|
559
|
+
title={t('similarProducts')}
|
|
560
|
+
items={recommendations.related}
|
|
561
|
+
className="mt-12"
|
|
562
|
+
/>
|
|
563
|
+
)}
|
|
564
|
+
</div>
|
|
565
|
+
);
|
|
566
|
+
}
|