create-brainerce-store 1.51.0 → 1.52.0
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/README.md +72 -0
- package/dist/index.js +9 -68
- package/messages/en.json +32 -0
- package/messages/he.json +32 -0
- package/package.json +1 -1
- package/templates/nextjs/base/.claude/commands/design.md +9 -0
- package/templates/nextjs/base/AI-GUIDE.md +52 -3
- package/templates/nextjs/base/CLAUDE.md +10 -0
- package/templates/nextjs/base/package.json.ejs +52 -39
- package/templates/nextjs/base/src/app/globals.css +36 -30
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +14 -10
- package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -0
- package/templates/nextjs/base/src/components/ui/badge.tsx +32 -0
- package/templates/nextjs/base/src/components/ui/button.tsx +49 -0
- package/templates/nextjs/base/src/components/ui/card.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -0
- package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -0
- package/templates/nextjs/base/src/components/ui/input.tsx +22 -0
- package/templates/nextjs/base/src/components/ui/label.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -0
- package/templates/nextjs/base/src/components/ui/select.tsx +153 -0
- package/templates/nextjs/base/src/components/ui/separator.tsx +26 -0
- package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -0
- package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -0
- package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -0
- package/templates/nextjs/base/src/ui/cart/cart-bundle-offer.tsx +17 -11
- package/templates/nextjs/base/src/ui/cart/cart-item.tsx +2 -8
- package/templates/nextjs/base/src/ui/cart/cart-nudges.tsx +28 -39
- package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +3 -1
- package/templates/nextjs/base/src/ui/cart/cart-upgrade-banner.tsx +8 -23
- package/templates/nextjs/base/src/ui/cart/cart-view.tsx +18 -27
- package/templates/nextjs/base/src/ui/cart/coupon-input.tsx +10 -21
- package/templates/nextjs/base/src/ui/cart/free-shipping-bar.tsx +2 -3
- package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +95 -103
- package/templates/nextjs/base/src/ui/home/hero-section.tsx +4 -6
- package/templates/nextjs/base/src/ui/layout/announcement-bar.tsx.ejs +116 -125
- package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -103
- package/templates/nextjs/base/src/ui/layout/header-account.tsx +2 -17
- package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -70
- package/templates/nextjs/base/src/ui/layout/site-footer.tsx.ejs +144 -164
- package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +152 -182
- package/templates/nextjs/base/src/ui/product/customization-fields.tsx +456 -444
- package/templates/nextjs/base/src/ui/product/discount-badge.tsx +18 -22
- package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +15 -27
- package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -175
- package/templates/nextjs/base/src/ui/product/price-display.tsx +3 -2
- package/templates/nextjs/base/src/ui/product/product-card.tsx +238 -271
- package/templates/nextjs/base/src/ui/product/product-client-section.tsx +455 -470
- package/templates/nextjs/base/src/ui/product/product-listing.tsx +96 -79
- package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +102 -107
- package/templates/nextjs/base/src/ui/product/review-form.tsx +44 -43
- package/templates/nextjs/{designs/passepartout → base/src}/ui/product/reviews-section.tsx.ejs +108 -96
- package/templates/nextjs/base/src/ui/product/stock-badge.tsx +61 -63
- package/templates/nextjs/base/tailwind.config.ts +69 -42
- package/templates/nextjs/designs/{passepartout → atelier}/app-overlay/layout.tsx.ejs +23 -25
- package/templates/nextjs/designs/atelier/globals.css +396 -0
- package/templates/nextjs/designs/atelier/messages-patch/en.json +99 -0
- package/templates/nextjs/designs/atelier/messages-patch/he.json +99 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-bundle-offer.tsx +110 -111
- package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-upgrade-banner.tsx +123 -141
- package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -0
- package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/free-shipping-bar.tsx +77 -62
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/reservation-countdown.tsx +89 -103
- package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -0
- package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +73 -0
- package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -0
- package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -0
- package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -0
- package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -0
- package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -0
- package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -0
- package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -0
- package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/discount-badge.tsx +17 -22
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/frequently-bought-together.tsx +196 -205
- package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -0
- package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -0
- package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +471 -0
- package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +47 -0
- package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/review-form.tsx +267 -294
- package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -0
- package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -0
- package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -0
- package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/shared/fly-to-cart.ts +86 -85
- package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +269 -0
- package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +64 -0
- package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -0
- package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -0
- package/templates/nextjs/themes/luxury/globals.css +405 -399
- package/templates/nextjs/themes/minimal/globals.css +36 -30
- package/templates/nextjs/themes/playful/globals.css +406 -400
- package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-item.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-view.tsx +2 -2
- package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +2 -0
- package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/hero-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/home-client.tsx +1 -1
- package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +1 -1
- package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/layout/header-account.tsx +1 -1
- package/templates/nextjs/ui-canvas/layout/language-switcher.tsx.ejs +2 -0
- package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +2 -0
- package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/product/customization-fields.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/discount-badge.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/price-display.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/product-card.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-client-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-grid.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-listing.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +4 -0
- package/templates/nextjs/ui-canvas/product/review-form.tsx +29 -32
- package/templates/nextjs/ui-canvas/product/{reviews-section.tsx → reviews-section.tsx.ejs} +26 -8
- package/templates/nextjs/ui-canvas/product/stock-badge.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/variant-selector.tsx +2 -0
- package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +2 -0
- package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +2 -0
- package/templates/nextjs/base/src/ui/product/reviews-section.tsx +0 -85
- package/templates/nextjs/designs/passepartout/globals.css +0 -412
- package/templates/nextjs/designs/passepartout/messages-patch/en.json +0 -87
- package/templates/nextjs/designs/passepartout/messages-patch/he.json +0 -87
- package/templates/nextjs/designs/passepartout/ui/cart/cart-nudges.tsx +0 -39
- package/templates/nextjs/designs/passepartout/ui/cart/cart-view.tsx +0 -149
- package/templates/nextjs/designs/passepartout/ui/home/home-client.tsx +0 -401
- package/templates/nextjs/designs/passepartout/ui/layout/announcement-bar.tsx +0 -139
- package/templates/nextjs/designs/passepartout/ui/layout/cart-link.tsx +0 -45
- package/templates/nextjs/designs/passepartout/ui/layout/faq-section.tsx +0 -103
- package/templates/nextjs/designs/passepartout/ui/layout/site-footer.tsx +0 -159
- package/templates/nextjs/designs/passepartout/ui/layout/site-header.tsx.ejs +0 -155
- package/templates/nextjs/designs/passepartout/ui/layout/trust-icons.tsx +0 -60
- package/templates/nextjs/designs/passepartout/ui/layout/whatsapp-button.tsx +0 -34
- package/templates/nextjs/designs/passepartout/ui/product/price-display.tsx +0 -111
- package/templates/nextjs/designs/passepartout/ui/product/product-card.tsx +0 -265
- package/templates/nextjs/designs/passepartout/ui/product/product-client-section.tsx +0 -667
- package/templates/nextjs/designs/passepartout/ui/product/product-grid.tsx +0 -35
- package/templates/nextjs/designs/passepartout/ui/product/product-listing.tsx +0 -427
- package/templates/nextjs/designs/passepartout/ui/product/recommendation-section.tsx +0 -113
- package/templates/nextjs/designs/passepartout/ui/product/stock-badge.tsx +0 -52
- package/templates/nextjs/designs/passepartout/ui/product/variant-selector.tsx +0 -307
- package/templates/nextjs/designs/passepartout/ui/shared/loading-spinner.tsx +0 -33
package/templates/nextjs/designs/{passepartout → atelier}/ui/product/frequently-bought-together.tsx
RENAMED
|
@@ -1,205 +1,196 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { useState } from 'react';
|
|
4
|
-
import { CdnImage as Image } from '@/ui/shared/cdn-image';
|
|
5
|
-
import type { Product, ProductRecommendation } from 'brainerce';
|
|
6
|
-
import { formatPrice } from 'brainerce';
|
|
7
|
-
import { useCart, useStoreInfo } from '@/core/providers/store-provider';
|
|
8
|
-
import { useCurrency } from '@/core/lib/use-currency';
|
|
9
|
-
import { useTranslations } from '@/core/lib/translations';
|
|
10
|
-
import { cn } from '@/core/lib/utils';
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
const
|
|
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
|
-
const
|
|
94
|
-
|
|
95
|
-
const
|
|
96
|
-
const
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
const
|
|
102
|
-
const
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
const
|
|
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
|
-
'disabled:cursor-not-allowed disabled:opacity-50'
|
|
198
|
-
)}
|
|
199
|
-
>
|
|
200
|
-
{adding ? t('addingAll') : t('addSelectedToCart')}
|
|
201
|
-
</button>
|
|
202
|
-
</div>
|
|
203
|
-
</div>
|
|
204
|
-
);
|
|
205
|
-
}
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useState } from 'react';
|
|
4
|
+
import { CdnImage as Image } from '@/ui/shared/cdn-image';
|
|
5
|
+
import type { Product, ProductRecommendation } from 'brainerce';
|
|
6
|
+
import { formatPrice } from 'brainerce';
|
|
7
|
+
import { useCart, useStoreInfo } from '@/core/providers/store-provider';
|
|
8
|
+
import { useCurrency } from '@/core/lib/use-currency';
|
|
9
|
+
import { useTranslations } from '@/core/lib/translations';
|
|
10
|
+
import { cn } from '@/core/lib/utils';
|
|
11
|
+
import { IconPlus, IconBag } from '@/ui/shared/icons';
|
|
12
|
+
|
|
13
|
+
interface FrequentlyBoughtTogetherProps {
|
|
14
|
+
items: ProductRecommendation[];
|
|
15
|
+
currentProduct: Product;
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function getEffectivePrice(item: { basePrice: string; salePrice?: string | null }): number {
|
|
20
|
+
const sale = item.salePrice ? parseFloat(item.salePrice) : null;
|
|
21
|
+
const base = parseFloat(item.basePrice);
|
|
22
|
+
return sale != null && sale < base ? sale : base;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function ProductThumb({
|
|
26
|
+
name,
|
|
27
|
+
imageUrl,
|
|
28
|
+
price,
|
|
29
|
+
currency,
|
|
30
|
+
checked,
|
|
31
|
+
onToggle,
|
|
32
|
+
disabled,
|
|
33
|
+
}: {
|
|
34
|
+
name: string;
|
|
35
|
+
imageUrl: string | null;
|
|
36
|
+
price: number;
|
|
37
|
+
currency: string;
|
|
38
|
+
checked: boolean;
|
|
39
|
+
onToggle?: () => void;
|
|
40
|
+
disabled?: boolean;
|
|
41
|
+
}) {
|
|
42
|
+
return (
|
|
43
|
+
<label
|
|
44
|
+
className={cn(
|
|
45
|
+
'flex w-40 cursor-pointer flex-col gap-2 rounded-xl border bg-background p-3 transition-colors',
|
|
46
|
+
checked ? 'border-primary' : 'border-border',
|
|
47
|
+
disabled && 'cursor-default'
|
|
48
|
+
)}
|
|
49
|
+
>
|
|
50
|
+
{/* `relative` + fixed box are layout-critical for next/image fill */}
|
|
51
|
+
<span className="relative block aspect-square overflow-hidden rounded-lg bg-secondary">
|
|
52
|
+
{imageUrl ? <Image src={imageUrl} alt={name} fill sizes="160px" className="object-cover" /> : null}
|
|
53
|
+
{onToggle && (
|
|
54
|
+
<input
|
|
55
|
+
type="checkbox"
|
|
56
|
+
checked={checked}
|
|
57
|
+
onChange={onToggle}
|
|
58
|
+
disabled={disabled}
|
|
59
|
+
className="absolute end-2 top-2 h-[18px] w-[18px] accent-primary"
|
|
60
|
+
aria-label={name}
|
|
61
|
+
/>
|
|
62
|
+
)}
|
|
63
|
+
</span>
|
|
64
|
+
<span className="line-clamp-2 text-xs font-semibold leading-snug text-foreground">
|
|
65
|
+
{name}
|
|
66
|
+
</span>
|
|
67
|
+
<span className="text-sm font-semibold text-foreground">
|
|
68
|
+
{formatPrice(price, { currency }) as string}
|
|
69
|
+
</span>
|
|
70
|
+
</label>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* "Frequently bought together" bundle on the product page: current product +
|
|
76
|
+
* selectable cross-sells + combined total + add-all button; items come from
|
|
77
|
+
* useProductPage().recommendations.crossSells, the feature gate from
|
|
78
|
+
* useStoreInfo().upsell.
|
|
79
|
+
*/
|
|
80
|
+
export function FrequentlyBoughtTogether({
|
|
81
|
+
items,
|
|
82
|
+
currentProduct,
|
|
83
|
+
className,
|
|
84
|
+
}: FrequentlyBoughtTogetherProps) {
|
|
85
|
+
// Hooks must be called unconditionally and in the same order on every
|
|
86
|
+
// render — keep all of them above any early `return null` branch.
|
|
87
|
+
const { storeInfo } = useStoreInfo();
|
|
88
|
+
const { refreshCart } = useCart();
|
|
89
|
+
const t = useTranslations('productDetail');
|
|
90
|
+
const currency = useCurrency();
|
|
91
|
+
|
|
92
|
+
// Only show up to 3 cross-sells
|
|
93
|
+
const crossSells = items.slice(0, 3);
|
|
94
|
+
|
|
95
|
+
const [selected, setSelected] = useState<Set<string>>(() => new Set(crossSells.map((i) => i.id)));
|
|
96
|
+
const [adding, setAdding] = useState(false);
|
|
97
|
+
|
|
98
|
+
if (!storeInfo?.upsell?.frequentlyBoughtTogetherEnabled) return null;
|
|
99
|
+
if (crossSells.length === 0) return null;
|
|
100
|
+
|
|
101
|
+
const currentPrice = getEffectivePrice(currentProduct);
|
|
102
|
+
const currentImage = currentProduct.images?.[0];
|
|
103
|
+
const currentImageUrl = currentImage
|
|
104
|
+
? typeof currentImage === 'string'
|
|
105
|
+
? currentImage
|
|
106
|
+
: currentImage.url
|
|
107
|
+
: null;
|
|
108
|
+
|
|
109
|
+
const totalPrice = crossSells
|
|
110
|
+
.filter((item) => selected.has(item.id))
|
|
111
|
+
.reduce((sum, item) => sum + getEffectivePrice(item), currentPrice);
|
|
112
|
+
|
|
113
|
+
const toggleItem = (id: string) => {
|
|
114
|
+
setSelected((prev) => {
|
|
115
|
+
const next = new Set(prev);
|
|
116
|
+
if (next.has(id)) {
|
|
117
|
+
next.delete(id);
|
|
118
|
+
} else {
|
|
119
|
+
next.add(id);
|
|
120
|
+
}
|
|
121
|
+
return next;
|
|
122
|
+
});
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
async function handleAddAll() {
|
|
126
|
+
if (adding || selected.size === 0) return;
|
|
127
|
+
try {
|
|
128
|
+
setAdding(true);
|
|
129
|
+
const { getClient } = await import('@/core/lib/brainerce');
|
|
130
|
+
const client = getClient();
|
|
131
|
+
const selectedItems = crossSells.filter((item) => selected.has(item.id));
|
|
132
|
+
for (const item of selectedItems) {
|
|
133
|
+
await client.smartAddToCart({ productId: item.id, quantity: 1 });
|
|
134
|
+
}
|
|
135
|
+
await refreshCart();
|
|
136
|
+
} catch (err) {
|
|
137
|
+
console.error('Failed to add items to cart:', err);
|
|
138
|
+
} finally {
|
|
139
|
+
setAdding(false);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return (
|
|
144
|
+
<section className={cn('rounded-2xl border bg-secondary/50 p-6 sm:p-8', className)}>
|
|
145
|
+
<h2 className="mb-6 text-2xl">{t('frequentlyBoughtTogether')}</h2>
|
|
146
|
+
|
|
147
|
+
<div className="flex flex-wrap items-center gap-3">
|
|
148
|
+
{/* Current product (always included, no checkbox) */}
|
|
149
|
+
<ProductThumb
|
|
150
|
+
name={currentProduct.name}
|
|
151
|
+
imageUrl={currentImageUrl}
|
|
152
|
+
price={currentPrice}
|
|
153
|
+
currency={currency}
|
|
154
|
+
checked={true}
|
|
155
|
+
disabled
|
|
156
|
+
/>
|
|
157
|
+
|
|
158
|
+
{crossSells.map((item) => {
|
|
159
|
+
const img = item.images?.[0];
|
|
160
|
+
const imgUrl = img ? (typeof img === 'string' ? img : img.url) : null;
|
|
161
|
+
return (
|
|
162
|
+
<div key={item.id} className="flex items-center gap-3">
|
|
163
|
+
<span aria-hidden="true" className="text-muted-foreground">
|
|
164
|
+
<IconPlus size={20} />
|
|
165
|
+
</span>
|
|
166
|
+
<ProductThumb
|
|
167
|
+
name={item.name}
|
|
168
|
+
imageUrl={imgUrl}
|
|
169
|
+
price={getEffectivePrice(item)}
|
|
170
|
+
currency={currency}
|
|
171
|
+
checked={selected.has(item.id)}
|
|
172
|
+
onToggle={() => toggleItem(item.id)}
|
|
173
|
+
/>
|
|
174
|
+
</div>
|
|
175
|
+
);
|
|
176
|
+
})}
|
|
177
|
+
</div>
|
|
178
|
+
|
|
179
|
+
{/* Total + Add button */}
|
|
180
|
+
<div className="mt-6 flex flex-wrap items-center gap-4 border-t pt-5">
|
|
181
|
+
<span className="text-lg font-semibold text-foreground">
|
|
182
|
+
{t('totalPrice').replace('{price}', formatPrice(totalPrice, { currency }) as string)}
|
|
183
|
+
</span>
|
|
184
|
+
<button
|
|
185
|
+
type="button"
|
|
186
|
+
onClick={handleAddAll}
|
|
187
|
+
disabled={adding || selected.size === 0}
|
|
188
|
+
className="btn-primary btn-md"
|
|
189
|
+
>
|
|
190
|
+
<IconBag size={18} />
|
|
191
|
+
{adding ? t('addingAll') : t('addSelectedToCart')}
|
|
192
|
+
</button>
|
|
193
|
+
</div>
|
|
194
|
+
</section>
|
|
195
|
+
);
|
|
196
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* <ModifierGroupSelector> — bare-skeleton renderer for a single modifier
|
|
5
|
+
* group (toppings, sauce, bread type, …) per PRD §8.4.
|
|
6
|
+
*
|
|
7
|
+
* DESIGN ME — modifier group on the product page; the group + selections
|
|
8
|
+
* come from useProductPage() via props. The data contract is what matters:
|
|
9
|
+
*
|
|
10
|
+
* - SINGLE → renders as <input type="radio">, max picks = 1
|
|
11
|
+
* - MULTIPLE → renders as <input type="checkbox">, picks bounded by min..max
|
|
12
|
+
* - effectiveMax === 0 → group is hidden entirely (variant-disable convention)
|
|
13
|
+
* - available === false → modifier is disabled with "Sold out" badge
|
|
14
|
+
* - free counter shows "{used} of {freeQuantity} free" when freeQuantity > 0
|
|
15
|
+
* - defaultModifierIds + isDefault drive first-render checked state
|
|
16
|
+
* - client-side guards mirror min/max (UX); the SERVER is authoritative — wire
|
|
17
|
+
* `MODIFIER_VALIDATION_FAILED` errors back to the user when add-to-cart fails
|
|
18
|
+
*
|
|
19
|
+
* The price-delta side: this component does NOT compute totals. The server
|
|
20
|
+
* runs the free-allocation policy and returns the line's `unitPrice` /
|
|
21
|
+
* `modifiers[]` / `modifiersTotal` snapshot — render those after add-to-cart.
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
import type { Modifier, ModifierGroup } from 'brainerce';
|
|
25
|
+
import { useTranslations } from '@/core/lib/translations';
|
|
26
|
+
import { cn } from '@/core/lib/utils';
|
|
27
|
+
|
|
28
|
+
// The pure selection logic (defaults, validation, wire-format adapter) lives
|
|
29
|
+
// in core (zero markup) so that `core/hooks/use-product-page` never imports
|
|
30
|
+
// from `ui/`. Re-exported here for backward compatibility with existing imports.
|
|
31
|
+
export {
|
|
32
|
+
buildInitialSelections,
|
|
33
|
+
toModifierSelections,
|
|
34
|
+
validateSelections,
|
|
35
|
+
} from '@/core/lib/product-options';
|
|
36
|
+
|
|
37
|
+
interface ModifierGroupSelectorProps {
|
|
38
|
+
/**
|
|
39
|
+
* Effective group as returned by `GET /products/:id` (overrides already
|
|
40
|
+
* applied — `min`, `max`, `freeQuantity`, etc. are the values the server
|
|
41
|
+
* will validate against for the active variant).
|
|
42
|
+
*/
|
|
43
|
+
group: ModifierGroup;
|
|
44
|
+
/** Currently-selected modifier IDs in click-order. */
|
|
45
|
+
value: string[];
|
|
46
|
+
onChange: (next: string[]) => void;
|
|
47
|
+
/** Disable all controls (e.g., while add-to-cart is in flight). */
|
|
48
|
+
disabled?: boolean;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function ModifierGroupSelector({
|
|
52
|
+
group,
|
|
53
|
+
value,
|
|
54
|
+
onChange,
|
|
55
|
+
disabled = false,
|
|
56
|
+
}: ModifierGroupSelectorProps) {
|
|
57
|
+
const t = useTranslations('productDetail');
|
|
58
|
+
|
|
59
|
+
// PRD §7.2.2: variant-disable convention — group with effectiveMax=0 is hidden.
|
|
60
|
+
if (group.max === 0) return null;
|
|
61
|
+
|
|
62
|
+
const isSingle = group.selectionType === 'SINGLE';
|
|
63
|
+
// Client-side bound — server is authoritative.
|
|
64
|
+
const effectiveMax = isSingle ? 1 : (group.max ?? Infinity);
|
|
65
|
+
|
|
66
|
+
const handleToggle = (modifierId: string, checked: boolean) => {
|
|
67
|
+
if (disabled) return;
|
|
68
|
+
|
|
69
|
+
if (isSingle) {
|
|
70
|
+
// Radio behavior: replace the selection.
|
|
71
|
+
onChange(checked ? [modifierId] : []);
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if (checked) {
|
|
76
|
+
if (value.length >= effectiveMax) return; // would exceed max — ignore the click
|
|
77
|
+
if (value.includes(modifierId)) return;
|
|
78
|
+
onChange([...value, modifierId]);
|
|
79
|
+
} else {
|
|
80
|
+
onChange(value.filter((id) => id !== modifierId));
|
|
81
|
+
}
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const sortedModifiers = [...group.modifiers].sort((a, b) => a.position - b.position);
|
|
85
|
+
|
|
86
|
+
// Counter: how many of the picked items are within the "free" window.
|
|
87
|
+
const usedFreeSlots = Math.min(value.length, group.freeQuantity);
|
|
88
|
+
const showFreeCounter = group.freeQuantity > 0;
|
|
89
|
+
|
|
90
|
+
return (
|
|
91
|
+
<fieldset className="rounded-xl border p-5">
|
|
92
|
+
<legend className="px-1.5 text-sm font-semibold text-foreground">
|
|
93
|
+
<span>{group.name}</span>
|
|
94
|
+
{group.required && (
|
|
95
|
+
<span aria-hidden="true" className="text-destructive">
|
|
96
|
+
{' '}
|
|
97
|
+
*
|
|
98
|
+
</span>
|
|
99
|
+
)}
|
|
100
|
+
<span className="font-normal text-muted-foreground"> {ruleSummary(group, t)}</span>
|
|
101
|
+
</legend>
|
|
102
|
+
|
|
103
|
+
{group.description && (
|
|
104
|
+
<p className="mb-3 text-sm text-muted-foreground">{group.description}</p>
|
|
105
|
+
)}
|
|
106
|
+
|
|
107
|
+
{showFreeCounter && (
|
|
108
|
+
<p aria-live="polite" className="mb-3 inline-flex rounded-full bg-secondary px-3 py-1 text-xs font-semibold">
|
|
109
|
+
{t('freeCounter')
|
|
110
|
+
.replace('{used}', String(usedFreeSlots))
|
|
111
|
+
.replace('{free}', String(group.freeQuantity))}
|
|
112
|
+
</p>
|
|
113
|
+
)}
|
|
114
|
+
|
|
115
|
+
<ul className="space-y-2">
|
|
116
|
+
{sortedModifiers.map((modifier) => {
|
|
117
|
+
const isChecked = value.includes(modifier.id);
|
|
118
|
+
const isAtCap = !isSingle && !isChecked && value.length >= effectiveMax;
|
|
119
|
+
const isDisabled = disabled || !modifier.available || isAtCap;
|
|
120
|
+
|
|
121
|
+
return (
|
|
122
|
+
<li key={modifier.id}>
|
|
123
|
+
<label
|
|
124
|
+
className={cn(
|
|
125
|
+
'flex cursor-pointer items-center gap-3 rounded-lg border px-3.5 py-2.5 transition-colors',
|
|
126
|
+
isChecked ? 'border-primary bg-secondary/60' : 'border-border',
|
|
127
|
+
isDisabled ? 'cursor-default opacity-50' : 'hover:border-foreground/40'
|
|
128
|
+
)}
|
|
129
|
+
>
|
|
130
|
+
<input
|
|
131
|
+
type={isSingle ? 'radio' : 'checkbox'}
|
|
132
|
+
name={`modifier-group-${group.id}`}
|
|
133
|
+
value={modifier.id}
|
|
134
|
+
checked={isChecked}
|
|
135
|
+
disabled={isDisabled}
|
|
136
|
+
onChange={(e) => handleToggle(modifier.id, e.target.checked)}
|
|
137
|
+
className="h-4 w-4 accent-primary"
|
|
138
|
+
/>
|
|
139
|
+
<span className="flex-1 text-sm font-medium text-foreground">{modifier.name}</span>
|
|
140
|
+
<ModifierPriceLabel modifier={modifier} />
|
|
141
|
+
{!modifier.available && (
|
|
142
|
+
<span aria-label={t('soldOut')} className="badge-destructive">
|
|
143
|
+
{t('soldOut')}
|
|
144
|
+
</span>
|
|
145
|
+
)}
|
|
146
|
+
</label>
|
|
147
|
+
{modifier.description && (
|
|
148
|
+
<p className="mt-1 ps-7 text-xs text-muted-foreground">{modifier.description}</p>
|
|
149
|
+
)}
|
|
150
|
+
</li>
|
|
151
|
+
);
|
|
152
|
+
})}
|
|
153
|
+
</ul>
|
|
154
|
+
</fieldset>
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Renders the modifier's price contribution next to its name.
|
|
160
|
+
*
|
|
161
|
+
* Negative deltas display with a leading minus sign (downsell modifiers per
|
|
162
|
+
* PRD §6.3.4); zero-delta modifiers render nothing — silence is the right
|
|
163
|
+
* affordance for a free option.
|
|
164
|
+
*/
|
|
165
|
+
function ModifierPriceLabel({ modifier }: { modifier: Modifier }) {
|
|
166
|
+
const delta = parseFloat(modifier.priceDelta);
|
|
167
|
+
if (Number.isNaN(delta) || delta === 0) return null;
|
|
168
|
+
const sign = delta > 0 ? '+' : '';
|
|
169
|
+
return (
|
|
170
|
+
<span className="text-sm font-semibold text-muted-foreground">
|
|
171
|
+
{sign}
|
|
172
|
+
{modifier.priceDelta}
|
|
173
|
+
</span>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
function ruleSummary(group: ModifierGroup, t: (key: string) => string): string {
|
|
178
|
+
const parts: string[] = [];
|
|
179
|
+
if (group.selectionType === 'SINGLE') {
|
|
180
|
+
parts.push(t('pickOne'));
|
|
181
|
+
} else if (group.max != null) {
|
|
182
|
+
if (group.min === 0) parts.push(t('upTo').replace('{max}', String(group.max)));
|
|
183
|
+
else if (group.min === group.max)
|
|
184
|
+
parts.push(t('pickExactly').replace('{min}', String(group.min)));
|
|
185
|
+
else
|
|
186
|
+
parts.push(
|
|
187
|
+
t('pickRange').replace('{min}', String(group.min)).replace('{max}', String(group.max))
|
|
188
|
+
);
|
|
189
|
+
} else if (group.min > 0) {
|
|
190
|
+
parts.push(t('atLeast').replace('{min}', String(group.min)));
|
|
191
|
+
}
|
|
192
|
+
return parts.length ? `(${parts.join(', ')})` : '';
|
|
193
|
+
}
|