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.
Files changed (170) hide show
  1. package/README.md +72 -0
  2. package/dist/index.js +9 -68
  3. package/messages/en.json +32 -0
  4. package/messages/he.json +32 -0
  5. package/package.json +1 -1
  6. package/templates/nextjs/base/.claude/commands/design.md +9 -0
  7. package/templates/nextjs/base/AI-GUIDE.md +52 -3
  8. package/templates/nextjs/base/CLAUDE.md +10 -0
  9. package/templates/nextjs/base/package.json.ejs +52 -39
  10. package/templates/nextjs/base/src/app/globals.css +36 -30
  11. package/templates/nextjs/base/src/components/checkout/payment-step.tsx +14 -10
  12. package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -0
  13. package/templates/nextjs/base/src/components/ui/badge.tsx +32 -0
  14. package/templates/nextjs/base/src/components/ui/button.tsx +49 -0
  15. package/templates/nextjs/base/src/components/ui/card.tsx +55 -0
  16. package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -0
  17. package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -0
  18. package/templates/nextjs/base/src/components/ui/input.tsx +22 -0
  19. package/templates/nextjs/base/src/components/ui/label.tsx +21 -0
  20. package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -0
  21. package/templates/nextjs/base/src/components/ui/select.tsx +153 -0
  22. package/templates/nextjs/base/src/components/ui/separator.tsx +26 -0
  23. package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -0
  24. package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -0
  25. package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -0
  26. package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -0
  27. package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -0
  28. package/templates/nextjs/base/src/ui/cart/cart-bundle-offer.tsx +17 -11
  29. package/templates/nextjs/base/src/ui/cart/cart-item.tsx +2 -8
  30. package/templates/nextjs/base/src/ui/cart/cart-nudges.tsx +28 -39
  31. package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +3 -1
  32. package/templates/nextjs/base/src/ui/cart/cart-upgrade-banner.tsx +8 -23
  33. package/templates/nextjs/base/src/ui/cart/cart-view.tsx +18 -27
  34. package/templates/nextjs/base/src/ui/cart/coupon-input.tsx +10 -21
  35. package/templates/nextjs/base/src/ui/cart/free-shipping-bar.tsx +2 -3
  36. package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +95 -103
  37. package/templates/nextjs/base/src/ui/home/hero-section.tsx +4 -6
  38. package/templates/nextjs/base/src/ui/layout/announcement-bar.tsx.ejs +116 -125
  39. package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -103
  40. package/templates/nextjs/base/src/ui/layout/header-account.tsx +2 -17
  41. package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -70
  42. package/templates/nextjs/base/src/ui/layout/site-footer.tsx.ejs +144 -164
  43. package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +152 -182
  44. package/templates/nextjs/base/src/ui/product/customization-fields.tsx +456 -444
  45. package/templates/nextjs/base/src/ui/product/discount-badge.tsx +18 -22
  46. package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +15 -27
  47. package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -175
  48. package/templates/nextjs/base/src/ui/product/price-display.tsx +3 -2
  49. package/templates/nextjs/base/src/ui/product/product-card.tsx +238 -271
  50. package/templates/nextjs/base/src/ui/product/product-client-section.tsx +455 -470
  51. package/templates/nextjs/base/src/ui/product/product-listing.tsx +96 -79
  52. package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +102 -107
  53. package/templates/nextjs/base/src/ui/product/review-form.tsx +44 -43
  54. package/templates/nextjs/{designs/passepartout → base/src}/ui/product/reviews-section.tsx.ejs +108 -96
  55. package/templates/nextjs/base/src/ui/product/stock-badge.tsx +61 -63
  56. package/templates/nextjs/base/tailwind.config.ts +69 -42
  57. package/templates/nextjs/designs/{passepartout → atelier}/app-overlay/layout.tsx.ejs +23 -25
  58. package/templates/nextjs/designs/atelier/globals.css +396 -0
  59. package/templates/nextjs/designs/atelier/messages-patch/en.json +99 -0
  60. package/templates/nextjs/designs/atelier/messages-patch/he.json +99 -0
  61. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-bundle-offer.tsx +110 -111
  62. package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -0
  63. package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -0
  64. package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -0
  65. package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -0
  66. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-upgrade-banner.tsx +123 -141
  67. package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -0
  68. package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -0
  69. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/free-shipping-bar.tsx +77 -62
  70. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/reservation-countdown.tsx +89 -103
  71. package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -0
  72. package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +148 -0
  73. package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -0
  74. package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +73 -0
  75. package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -0
  76. package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +148 -0
  77. package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -0
  78. package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -0
  79. package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -0
  80. package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -0
  81. package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -0
  82. package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -0
  83. package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -0
  84. package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -0
  85. package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -0
  86. package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -0
  87. package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -0
  88. package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -0
  89. package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -0
  90. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/discount-badge.tsx +17 -22
  91. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/frequently-bought-together.tsx +196 -205
  92. package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -0
  93. package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -0
  94. package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +260 -0
  95. package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +471 -0
  96. package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +47 -0
  97. package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -0
  98. package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -0
  99. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/review-form.tsx +267 -294
  100. package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -0
  101. package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -0
  102. package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -0
  103. package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -0
  104. package/templates/nextjs/designs/{passepartout → atelier}/ui/shared/fly-to-cart.ts +86 -85
  105. package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +269 -0
  106. package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +64 -0
  107. package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -0
  108. package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -0
  109. package/templates/nextjs/themes/luxury/globals.css +405 -399
  110. package/templates/nextjs/themes/minimal/globals.css +36 -30
  111. package/templates/nextjs/themes/playful/globals.css +406 -400
  112. package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +2 -0
  113. package/templates/nextjs/ui-canvas/cart/cart-item.tsx +2 -0
  114. package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +2 -0
  115. package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +2 -0
  116. package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +2 -0
  117. package/templates/nextjs/ui-canvas/cart/cart-view.tsx +2 -2
  118. package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +2 -0
  119. package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +2 -0
  120. package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +2 -0
  121. package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +1 -1
  122. package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +1 -1
  123. package/templates/nextjs/ui-canvas/home/hero-section.tsx +1 -1
  124. package/templates/nextjs/ui-canvas/home/home-client.tsx +1 -1
  125. package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +1 -1
  126. package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +2 -2
  127. package/templates/nextjs/ui-canvas/layout/header-account.tsx +1 -1
  128. package/templates/nextjs/ui-canvas/layout/language-switcher.tsx.ejs +2 -0
  129. package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +2 -0
  130. package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +2 -2
  131. package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +2 -2
  132. package/templates/nextjs/ui-canvas/product/customization-fields.tsx +2 -0
  133. package/templates/nextjs/ui-canvas/product/discount-badge.tsx +2 -0
  134. package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +2 -0
  135. package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +2 -0
  136. package/templates/nextjs/ui-canvas/product/price-display.tsx +2 -0
  137. package/templates/nextjs/ui-canvas/product/product-card.tsx +1 -1
  138. package/templates/nextjs/ui-canvas/product/product-client-section.tsx +1 -1
  139. package/templates/nextjs/ui-canvas/product/product-grid.tsx +1 -1
  140. package/templates/nextjs/ui-canvas/product/product-listing.tsx +1 -1
  141. package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +4 -0
  142. package/templates/nextjs/ui-canvas/product/review-form.tsx +29 -32
  143. package/templates/nextjs/ui-canvas/product/{reviews-section.tsx → reviews-section.tsx.ejs} +26 -8
  144. package/templates/nextjs/ui-canvas/product/stock-badge.tsx +2 -0
  145. package/templates/nextjs/ui-canvas/product/variant-selector.tsx +2 -0
  146. package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +2 -0
  147. package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +2 -0
  148. package/templates/nextjs/base/src/ui/product/reviews-section.tsx +0 -85
  149. package/templates/nextjs/designs/passepartout/globals.css +0 -412
  150. package/templates/nextjs/designs/passepartout/messages-patch/en.json +0 -87
  151. package/templates/nextjs/designs/passepartout/messages-patch/he.json +0 -87
  152. package/templates/nextjs/designs/passepartout/ui/cart/cart-nudges.tsx +0 -39
  153. package/templates/nextjs/designs/passepartout/ui/cart/cart-view.tsx +0 -149
  154. package/templates/nextjs/designs/passepartout/ui/home/home-client.tsx +0 -401
  155. package/templates/nextjs/designs/passepartout/ui/layout/announcement-bar.tsx +0 -139
  156. package/templates/nextjs/designs/passepartout/ui/layout/cart-link.tsx +0 -45
  157. package/templates/nextjs/designs/passepartout/ui/layout/faq-section.tsx +0 -103
  158. package/templates/nextjs/designs/passepartout/ui/layout/site-footer.tsx +0 -159
  159. package/templates/nextjs/designs/passepartout/ui/layout/site-header.tsx.ejs +0 -155
  160. package/templates/nextjs/designs/passepartout/ui/layout/trust-icons.tsx +0 -60
  161. package/templates/nextjs/designs/passepartout/ui/layout/whatsapp-button.tsx +0 -34
  162. package/templates/nextjs/designs/passepartout/ui/product/price-display.tsx +0 -111
  163. package/templates/nextjs/designs/passepartout/ui/product/product-card.tsx +0 -265
  164. package/templates/nextjs/designs/passepartout/ui/product/product-client-section.tsx +0 -667
  165. package/templates/nextjs/designs/passepartout/ui/product/product-grid.tsx +0 -35
  166. package/templates/nextjs/designs/passepartout/ui/product/product-listing.tsx +0 -427
  167. package/templates/nextjs/designs/passepartout/ui/product/recommendation-section.tsx +0 -113
  168. package/templates/nextjs/designs/passepartout/ui/product/stock-badge.tsx +0 -52
  169. package/templates/nextjs/designs/passepartout/ui/product/variant-selector.tsx +0 -307
  170. package/templates/nextjs/designs/passepartout/ui/shared/loading-spinner.tsx +0 -33
@@ -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
- interface FrequentlyBoughtTogetherProps {
13
- items: ProductRecommendation[];
14
- currentProduct: Product;
15
- className?: string;
16
- }
17
-
18
- function getEffectivePrice(item: { basePrice: string; salePrice?: string | null }): number {
19
- const sale = item.salePrice ? parseFloat(item.salePrice) : null;
20
- const base = parseFloat(item.basePrice);
21
- return sale != null && sale < base ? sale : base;
22
- }
23
-
24
- function ProductThumb({
25
- name,
26
- imageUrl,
27
- price,
28
- currency,
29
- checked,
30
- onToggle,
31
- disabled,
32
- }: {
33
- name: string;
34
- imageUrl: string | null;
35
- price: number;
36
- currency: string;
37
- checked: boolean;
38
- onToggle?: () => void;
39
- disabled?: boolean;
40
- }) {
41
- return (
42
- <label
43
- className={cn(
44
- 'border-border bg-background relative flex cursor-pointer flex-col items-center rounded-none border p-3 transition-all',
45
- checked ? 'ring-primary ring-2' : 'opacity-60',
46
- disabled && 'pointer-events-none'
47
- )}
48
- >
49
- {onToggle && (
50
- <input
51
- type="checkbox"
52
- checked={checked}
53
- onChange={onToggle}
54
- className="absolute start-2 top-2 h-4 w-4 rounded"
55
- />
56
- )}
57
- <div className="bg-muted relative mb-2 h-20 w-20 overflow-hidden rounded">
58
- {imageUrl ? (
59
- <Image src={imageUrl} alt={name} fill sizes="80px" className="object-cover" />
60
- ) : (
61
- <div className="flex h-full w-full items-center justify-center">
62
- <svg
63
- className="text-muted-foreground h-8 w-8"
64
- fill="none"
65
- viewBox="0 0 24 24"
66
- stroke="currentColor"
67
- >
68
- <path
69
- strokeLinecap="round"
70
- strokeLinejoin="round"
71
- strokeWidth={1.5}
72
- 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"
73
- />
74
- </svg>
75
- </div>
76
- )}
77
- </div>
78
- <span className="text-foreground line-clamp-2 text-center text-xs font-medium">{name}</span>
79
- <span className="text-muted-foreground mt-1 text-xs">
80
- {formatPrice(price, { currency }) as string}
81
- </span>
82
- </label>
83
- );
84
- }
85
-
86
- export function FrequentlyBoughtTogether({
87
- items,
88
- currentProduct,
89
- className,
90
- }: FrequentlyBoughtTogetherProps) {
91
- // Hooks must be called unconditionally and in the same order on every
92
- // render keep all of them above any early `return null` branch.
93
- const { storeInfo } = useStoreInfo();
94
- const { refreshCart } = useCart();
95
- const t = useTranslations('productDetail');
96
- const currency = useCurrency();
97
-
98
- // Only show up to 3 cross-sells
99
- const crossSells = items.slice(0, 3);
100
-
101
- const [selected, setSelected] = useState<Set<string>>(() => new Set(crossSells.map((i) => i.id)));
102
- const [adding, setAdding] = useState(false);
103
-
104
- if (!storeInfo?.upsell?.frequentlyBoughtTogetherEnabled) return null;
105
- if (crossSells.length === 0) return null;
106
-
107
- const currentPrice = getEffectivePrice(currentProduct);
108
- const currentImage = currentProduct.images?.[0];
109
- const currentImageUrl = currentImage
110
- ? typeof currentImage === 'string'
111
- ? currentImage
112
- : currentImage.url
113
- : null;
114
-
115
- const totalPrice = crossSells
116
- .filter((item) => selected.has(item.id))
117
- .reduce((sum, item) => sum + getEffectivePrice(item), currentPrice);
118
-
119
- const toggleItem = (id: string) => {
120
- setSelected((prev) => {
121
- const next = new Set(prev);
122
- if (next.has(id)) {
123
- next.delete(id);
124
- } else {
125
- next.add(id);
126
- }
127
- return next;
128
- });
129
- };
130
-
131
- async function handleAddAll() {
132
- if (adding || selected.size === 0) return;
133
- try {
134
- setAdding(true);
135
- const { getClient } = await import('@/core/lib/brainerce');
136
- const client = getClient();
137
- const selectedItems = crossSells.filter((item) => selected.has(item.id));
138
- for (const item of selectedItems) {
139
- await client.smartAddToCart({ productId: item.id, quantity: 1 });
140
- }
141
- await refreshCart();
142
- } catch (err) {
143
- console.error('Failed to add items to cart:', err);
144
- } finally {
145
- setAdding(false);
146
- }
147
- }
148
-
149
- return (
150
- <div className={cn('border-border border p-6', className)}>
151
- <p className="placard tabular">{t('fbtKicker')}</p>
152
- <h2 className="text-foreground mt-1 font-serif text-xl font-normal">
153
- {t('frequentlyBoughtTogether')}
154
- </h2>
155
- <div className="border-border mb-6 mt-5 border-b" />
156
-
157
- <div className="flex flex-wrap items-center gap-3">
158
- {/* Current product (always included, no checkbox) */}
159
- <ProductThumb
160
- name={currentProduct.name}
161
- imageUrl={currentImageUrl}
162
- price={currentPrice}
163
- currency={currency}
164
- checked={true}
165
- disabled
166
- />
167
-
168
- {crossSells.map((item) => {
169
- const img = item.images?.[0];
170
- const imgUrl = img ? (typeof img === 'string' ? img : img.url) : null;
171
- return (
172
- <div key={item.id} className="flex items-center gap-3">
173
- <span className="text-accent text-lg font-light">+</span>
174
- <ProductThumb
175
- name={item.name}
176
- imageUrl={imgUrl}
177
- price={getEffectivePrice(item)}
178
- currency={currency}
179
- checked={selected.has(item.id)}
180
- onToggle={() => toggleItem(item.id)}
181
- />
182
- </div>
183
- );
184
- })}
185
- </div>
186
-
187
- {/* Total + Add button */}
188
- <div className="mt-6 flex flex-wrap items-center gap-4">
189
- <span className="text-foreground tabular text-lg">
190
- {t('totalPrice', { price: formatPrice(totalPrice, { currency }) as string })}
191
- </span>
192
- <button
193
- onClick={handleAddAll}
194
- disabled={adding || selected.size === 0}
195
- className={cn(
196
- 'bg-primary text-primary-foreground px-5 py-2.5 text-[0.8125rem] font-semibold transition-colors',
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
+ }