@cartbase/storefront 0.19.0 → 0.20.1

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 (105) hide show
  1. package/LICENSE +21 -21
  2. package/package.json +258 -258
  3. package/src/api/auth.ts +108 -108
  4. package/src/api/carts.ts +523 -523
  5. package/src/api/categories.ts +184 -184
  6. package/src/api/checkout.ts +526 -526
  7. package/src/api/collections.ts +130 -130
  8. package/src/api/consent.ts +75 -75
  9. package/src/api/content.ts +125 -125
  10. package/src/api/customers.ts +303 -303
  11. package/src/api/gift-cards.ts +112 -112
  12. package/src/api/http.ts +180 -180
  13. package/src/api/index.ts +30 -30
  14. package/src/api/menus.ts +77 -77
  15. package/src/api/metaobjects.ts +136 -136
  16. package/src/api/orders.ts +290 -290
  17. package/src/api/redirects.ts +37 -37
  18. package/src/api/regions.ts +200 -200
  19. package/src/api/reviews.ts +22 -1
  20. package/src/api/search.ts +163 -163
  21. package/src/api/store.ts +35 -35
  22. package/src/api/types.ts +91 -91
  23. package/src/cart-drawer/context.tsx +778 -778
  24. package/src/cart-drawer/cross-sell-carousel.tsx +211 -211
  25. package/src/cart-drawer/cross-sell-sidebar.tsx +158 -158
  26. package/src/cart-drawer/gift-wrap.tsx +82 -82
  27. package/src/cart-drawer/item/index.tsx +162 -162
  28. package/src/cart-drawer/item/upsell.tsx +110 -110
  29. package/src/cart-drawer/labels.ts +123 -123
  30. package/src/cart-drawer/mutation-queue.ts +78 -78
  31. package/src/cart-drawer/notes.tsx +131 -131
  32. package/src/cart-drawer/sticky-footer.tsx +73 -73
  33. package/src/cart-drawer/summary-breakdown.tsx +197 -197
  34. package/src/checkout/address-error-copy.ts +117 -117
  35. package/src/checkout/boxnow-locker-selector.tsx +410 -410
  36. package/src/checkout/compare-addresses.ts +40 -40
  37. package/src/checkout/discount-section.tsx +218 -218
  38. package/src/checkout/error-copy-codes.ts +63 -63
  39. package/src/checkout/geocode.ts +154 -154
  40. package/src/checkout/gift-card-section.tsx +224 -224
  41. package/src/checkout/index.ts +72 -72
  42. package/src/checkout/labels.ts +495 -495
  43. package/src/checkout/payment-button.tsx +372 -372
  44. package/src/checkout/payment-error-copy.ts +154 -154
  45. package/src/checkout/promotion-error-copy.ts +91 -91
  46. package/src/common/country-flag.tsx +52 -52
  47. package/src/common/country-select.tsx +11 -11
  48. package/src/common/index.ts +20 -20
  49. package/src/common/market-select.tsx +57 -57
  50. package/src/index.ts +12 -12
  51. package/src/lib/country-name.ts +59 -59
  52. package/src/lib/get-product-price.ts +133 -133
  53. package/src/lib/media-image.tsx +39 -39
  54. package/src/lib/payment-constants.ts +53 -53
  55. package/src/lib/platform.ts +13 -13
  56. package/src/lib/price.tsx +39 -39
  57. package/src/lib/store-api-error.ts +36 -36
  58. package/src/lib/variant-caption.ts +32 -32
  59. package/src/locales/bg.ts +3 -2
  60. package/src/locales/context.ts +37 -37
  61. package/src/locales/en.ts +26 -26
  62. package/src/locales/es.ts +3 -2
  63. package/src/locales/index.ts +19 -19
  64. package/src/locales/provider.tsx +59 -59
  65. package/src/locales/types.ts +77 -77
  66. package/src/order/index.ts +62 -62
  67. package/src/order/labels.ts +79 -79
  68. package/src/order/order-totals.tsx +250 -250
  69. package/src/primitives/select-field.tsx +93 -93
  70. package/src/products/image-gallery.tsx +43 -43
  71. package/src/products/option-select.tsx +67 -67
  72. package/src/products/product-info.tsx +5 -5
  73. package/src/products/product-price.tsx +69 -69
  74. package/src/products/product-promises.tsx +61 -61
  75. package/src/products/product-specs.tsx +65 -65
  76. package/src/products/product-tabs.tsx +123 -123
  77. package/src/products/purchase-options.tsx +130 -130
  78. package/src/products/sets.ts +110 -110
  79. package/src/products/variant-matching.ts +71 -71
  80. package/src/products/variant-url.ts +74 -74
  81. package/src/reviews-ui/index.ts +12 -0
  82. package/src/reviews-ui/labels.ts +5 -2
  83. package/src/reviews-ui/lightbox-state.ts +46 -46
  84. package/src/reviews-ui/review-header.tsx +166 -0
  85. package/src/reviews-ui/review-lightbox.tsx +271 -271
  86. package/src/reviews-ui/review-list.tsx +193 -191
  87. package/src/reviews-ui/review-widget.tsx +63 -71
  88. package/src/reviews-ui/star-badge.tsx +6 -4
  89. package/src/reviews-ui/widget-options.ts +55 -0
  90. package/src/store/category-template.tsx +136 -136
  91. package/src/store/index.ts +40 -40
  92. package/src/tracking/chatgpt-pixel.tsx +99 -99
  93. package/src/tracking/consent-init.tsx +62 -62
  94. package/src/tracking/events.ts +348 -348
  95. package/src/tracking/ga4.tsx +93 -93
  96. package/src/tracking/google-ads.ts +84 -84
  97. package/src/tracking/gtm.tsx +60 -60
  98. package/src/tracking/inline-script.ts +49 -49
  99. package/src/tracking/oaiq.ts +206 -206
  100. package/src/tracking/tiktok-pixel.tsx +91 -91
  101. package/src/tracking/track-init.tsx +56 -56
  102. package/src/tracking/track-order-purchase.tsx +122 -122
  103. package/src/tracking/ttq.ts +180 -180
  104. package/src/tracking/use-tracking-config.ts +54 -54
  105. package/theme/index.css +25 -25
@@ -1,40 +1,40 @@
1
- /**
2
- * Compare two address objects for shallow equality across the canonical
3
- * shipping-address fields. Returns true if every field matches.
4
- *
5
- * Ported from `@1click/ui/src/data/util/compare-addresses.ts` (v2.3.1)
6
- * unchanged. Lives in the checkout family because the Cartbase SDK has no
7
- * data/util layer (the @1click data layer became `@cartbase/storefront/api`).
8
- * Extra file beyond the pre-declared export list → exported from the
9
- * family barrel only.
10
- */
11
-
12
- const FIELDS = [
13
- "first_name",
14
- "last_name",
15
- "address_1",
16
- "company",
17
- "postal_code",
18
- "city",
19
- "country_code",
20
- "province",
21
- "phone",
22
- ] as const
23
-
24
- type AddressLike = Record<string, unknown> | null | undefined
25
-
26
- export default function compareAddresses(
27
- address1: AddressLike,
28
- address2: AddressLike
29
- ): boolean {
30
- if (address1 === address2) return true
31
- if (!address1 || !address2) return false
32
-
33
- for (const key of FIELDS) {
34
- const a = (address1 as Record<string, unknown>)[key] ?? null
35
- const b = (address2 as Record<string, unknown>)[key] ?? null
36
- if (a !== b) return false
37
- }
38
-
39
- return true
40
- }
1
+ /**
2
+ * Compare two address objects for shallow equality across the canonical
3
+ * shipping-address fields. Returns true if every field matches.
4
+ *
5
+ * Ported from `@1click/ui/src/data/util/compare-addresses.ts` (v2.3.1)
6
+ * unchanged. Lives in the checkout family because the Cartbase SDK has no
7
+ * data/util layer (the @1click data layer became `@cartbase/storefront/api`).
8
+ * Extra file beyond the pre-declared export list → exported from the
9
+ * family barrel only.
10
+ */
11
+
12
+ const FIELDS = [
13
+ "first_name",
14
+ "last_name",
15
+ "address_1",
16
+ "company",
17
+ "postal_code",
18
+ "city",
19
+ "country_code",
20
+ "province",
21
+ "phone",
22
+ ] as const
23
+
24
+ type AddressLike = Record<string, unknown> | null | undefined
25
+
26
+ export default function compareAddresses(
27
+ address1: AddressLike,
28
+ address2: AddressLike
29
+ ): boolean {
30
+ if (address1 === address2) return true
31
+ if (!address1 || !address2) return false
32
+
33
+ for (const key of FIELDS) {
34
+ const a = (address1 as Record<string, unknown>)[key] ?? null
35
+ const b = (address2 as Record<string, unknown>)[key] ?? null
36
+ if (a !== b) return false
37
+ }
38
+
39
+ return true
40
+ }
@@ -1,218 +1,218 @@
1
- "use client"
2
-
3
- import { useState } from "react"
4
-
5
- import type { StorefrontClient } from "../api/http"
6
- import { applyPromotions, type Cart } from "../api/carts"
7
- import { convertToLocale } from "../lib/money"
8
- import { cn } from "../lib/utils"
9
- import { useCheckoutLabels } from "./context"
10
- import { translatePromotionError } from "./promotion-error-copy"
11
-
12
- /**
13
- * DiscountSection — collapsible promo-code input shown inside the order
14
- * summary card. Lists currently applied promotions with their discount
15
- * amount.
16
- *
17
- * Ported from `@1click/ui/src/checkout/discount-section.tsx` (v2.3.1) with
18
- * the Cartbase data seam:
19
- *
20
- * - `applyPromotions(codes)` (Medusa js-sdk server action, full-list
21
- * replace) → `POST /api/store/carts/:id/promotions {promo_codes}` — the
22
- * Cartbase route is ADDITIVE (upserts each code's link, then re-applies),
23
- * so only the NEW code is sent; already-applied codes stay put. The SDK
24
- * carts module ships no wrapper for this route yet, so the component
25
- * calls it through the client transport with the documented DTO
26
- * (verified against src/app/api/store/carts/[id]/promotions/route.ts).
27
- * - `cart.promotions` on the Cartbase wire is the raw pivot embed
28
- * (`[{promotion: {..., application_method}}]`) — unwrapped here, with a
29
- * flat-row fallback should the decoration ever flatten it.
30
- * - Errors are code-first (`promotion_not_found` / `promotion_inactive` /
31
- * `promotion_misconfigured` / `promotion_unsupported_type` + cart-level
32
- * codes) via `translatePromotionError`.
33
- *
34
- * The route returns the freshly decorated cart; `onCartChange` hands it to
35
- * the host (or the host calls `router.refresh()` in an RSC app).
36
- */
37
-
38
- /** Structural shape of one applied promotion (promotions row). */
39
- type AppliedPromotion = {
40
- id: string
41
- code: string | null
42
- application_method?: {
43
- type?: string | null
44
- value?: number | string | null
45
- currency_code?: string | null
46
- } | null
47
- }
48
-
49
- /** Unwrap the Cartbase pivot embed; tolerate an already-flat row. */
50
- function extractPromotions(cart: Cart): AppliedPromotion[] {
51
- const raw = (cart.promotions ?? []) as Array<Record<string, unknown>>
52
- return raw
53
- .map((row) =>
54
- row && typeof row === "object" && "promotion" in row
55
- ? (row.promotion as AppliedPromotion | null)
56
- : (row as unknown as AppliedPromotion)
57
- )
58
- .filter((p): p is AppliedPromotion => !!p && typeof p.id === "string")
59
- }
60
-
61
- type DiscountSectionProps = {
62
- /** The SDK transport — the promotions route is called through it. */
63
- client: StorefrontClient
64
- cart: Cart
65
- /** Receives the decorated cart returned by a successful apply. */
66
- onCartChange?: (cart: Cart) => void
67
- }
68
-
69
- export function DiscountSection({
70
- client,
71
- cart,
72
- onCartChange,
73
- }: DiscountSectionProps) {
74
- const labels = useCheckoutLabels()
75
- const [code, setCode] = useState("")
76
- const [loading, setLoading] = useState(false)
77
- const [error, setError] = useState("")
78
- const [open, setOpen] = useState(false)
79
-
80
- const promotions = extractPromotions(cart)
81
-
82
- const handleApply = async () => {
83
- if (!code.trim()) return
84
- setLoading(true)
85
- setError("")
86
- try {
87
- // Additive apply — the Cartbase route upserts the new code's link and
88
- // re-applies every cart promotion; already-applied codes stay.
89
- const { cart: updated } = await applyPromotions(client, cart.id, [code.trim()])
90
- onCartChange?.(updated)
91
- setCode("")
92
- } catch (e: unknown) {
93
- // Never surface the raw API error string to the shopper — map to a
94
- // proper localized message (code-first, pattern fallback).
95
- setError(translatePromotionError(e, labels.promotionErrors, { hasEmail: !!cart.email }))
96
- } finally {
97
- setLoading(false)
98
- }
99
- }
100
-
101
- return (
102
- <div>
103
- <button
104
- type="button"
105
- onClick={() => setOpen(!open)}
106
- className="flex items-center gap-3 w-full p-4 rounded-xl border border-border bg-muted/50 hover:bg-muted transition-colors"
107
- >
108
- <div className="w-10 h-10 rounded-full bg-gradient-to-br from-warning to-warning/70 flex items-center justify-center flex-shrink-0">
109
- <svg
110
- className="w-5 h-5 text-card"
111
- fill="none"
112
- viewBox="0 0 24 24"
113
- stroke="currentColor"
114
- strokeWidth={2}
115
- >
116
- <path
117
- strokeLinecap="round"
118
- strokeLinejoin="round"
119
- d="M9.568 3H5.25A2.25 2.25 0 003 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 005.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 009.568 3z"
120
- />
121
- <path
122
- strokeLinecap="round"
123
- strokeLinejoin="round"
124
- d="M6 6h.008v.008H6V6z"
125
- />
126
- </svg>
127
- </div>
128
- <div className="flex-1 text-left">
129
- <p className="text-sm font-semibold text-foreground">
130
- {labels.discountCode}
131
- </p>
132
- <p className="text-xs text-muted-foreground">{labels.discountSub}</p>
133
- </div>
134
- <span className="text-sm font-medium text-foreground flex items-center gap-1.5">
135
- {labels.addCode}
136
- <svg
137
- className={cn(
138
- "w-4 h-4 text-muted-foreground transition-transform duration-200",
139
- open && "rotate-180"
140
- )}
141
- fill="none"
142
- viewBox="0 0 24 24"
143
- stroke="currentColor"
144
- strokeWidth={2}
145
- >
146
- <path
147
- strokeLinecap="round"
148
- strokeLinejoin="round"
149
- d="M19.5 8.25l-7.5 7.5-7.5-7.5"
150
- />
151
- </svg>
152
- </span>
153
- </button>
154
-
155
- {open && (
156
- <div className="mt-3 flex gap-2">
157
- <input
158
- type="text"
159
- value={code}
160
- onChange={(e) => setCode(e.target.value.toUpperCase())}
161
- placeholder="PROMO2024"
162
- className="flex-1 h-11 px-4 text-sm bg-card border border-border rounded-xl focus:outline-none focus:border-primary focus:ring-2 focus:ring-primary/20 transition-all"
163
- />
164
- <button
165
- type="button"
166
- onClick={handleApply}
167
- disabled={loading || !code.trim()}
168
- className="px-5 h-11 text-sm font-semibold bg-foreground text-card rounded-xl hover:bg-foreground/90 transition-all disabled:opacity-40"
169
- >
170
- {labels.addCode}
171
- </button>
172
- </div>
173
- )}
174
-
175
- {error && <p className="text-xs text-destructive mt-2">{error}</p>}
176
-
177
- {promotions.length > 0 && (
178
- <div className="mt-3 space-y-1.5">
179
- {promotions.map((p) => (
180
- <div
181
- key={p.id}
182
- className="flex items-center justify-between px-4 py-2.5 bg-success/10 border border-success/20 rounded-lg"
183
- >
184
- <div className="flex items-center gap-2">
185
- <svg
186
- className="w-4 h-4 text-success"
187
- fill="none"
188
- viewBox="0 0 24 24"
189
- stroke="currentColor"
190
- strokeWidth={2}
191
- >
192
- <path
193
- strokeLinecap="round"
194
- strokeLinejoin="round"
195
- d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
196
- />
197
- </svg>
198
- <span className="text-sm font-semibold text-success">
199
- {p.code}
200
- </span>
201
- </div>
202
- <span className="text-sm font-medium text-success">
203
- {p.application_method?.type === "percentage"
204
- ? `-${p.application_method.value}%`
205
- : p.application_method?.value && p.application_method?.currency_code
206
- ? `-${convertToLocale({
207
- amount: +p.application_method.value,
208
- currency_code: p.application_method.currency_code,
209
- })}`
210
- : ""}
211
- </span>
212
- </div>
213
- ))}
214
- </div>
215
- )}
216
- </div>
217
- )
218
- }
1
+ "use client"
2
+
3
+ import { useState } from "react"
4
+
5
+ import type { StorefrontClient } from "../api/http"
6
+ import { applyPromotions, type Cart } from "../api/carts"
7
+ import { convertToLocale } from "../lib/money"
8
+ import { cn } from "../lib/utils"
9
+ import { useCheckoutLabels } from "./context"
10
+ import { translatePromotionError } from "./promotion-error-copy"
11
+
12
+ /**
13
+ * DiscountSection — collapsible promo-code input shown inside the order
14
+ * summary card. Lists currently applied promotions with their discount
15
+ * amount.
16
+ *
17
+ * Ported from `@1click/ui/src/checkout/discount-section.tsx` (v2.3.1) with
18
+ * the Cartbase data seam:
19
+ *
20
+ * - `applyPromotions(codes)` (Medusa js-sdk server action, full-list
21
+ * replace) → `POST /api/store/carts/:id/promotions {promo_codes}` — the
22
+ * Cartbase route is ADDITIVE (upserts each code's link, then re-applies),
23
+ * so only the NEW code is sent; already-applied codes stay put. The SDK
24
+ * carts module ships no wrapper for this route yet, so the component
25
+ * calls it through the client transport with the documented DTO
26
+ * (verified against src/app/api/store/carts/[id]/promotions/route.ts).
27
+ * - `cart.promotions` on the Cartbase wire is the raw pivot embed
28
+ * (`[{promotion: {..., application_method}}]`) — unwrapped here, with a
29
+ * flat-row fallback should the decoration ever flatten it.
30
+ * - Errors are code-first (`promotion_not_found` / `promotion_inactive` /
31
+ * `promotion_misconfigured` / `promotion_unsupported_type` + cart-level
32
+ * codes) via `translatePromotionError`.
33
+ *
34
+ * The route returns the freshly decorated cart; `onCartChange` hands it to
35
+ * the host (or the host calls `router.refresh()` in an RSC app).
36
+ */
37
+
38
+ /** Structural shape of one applied promotion (promotions row). */
39
+ type AppliedPromotion = {
40
+ id: string
41
+ code: string | null
42
+ application_method?: {
43
+ type?: string | null
44
+ value?: number | string | null
45
+ currency_code?: string | null
46
+ } | null
47
+ }
48
+
49
+ /** Unwrap the Cartbase pivot embed; tolerate an already-flat row. */
50
+ function extractPromotions(cart: Cart): AppliedPromotion[] {
51
+ const raw = (cart.promotions ?? []) as Array<Record<string, unknown>>
52
+ return raw
53
+ .map((row) =>
54
+ row && typeof row === "object" && "promotion" in row
55
+ ? (row.promotion as AppliedPromotion | null)
56
+ : (row as unknown as AppliedPromotion)
57
+ )
58
+ .filter((p): p is AppliedPromotion => !!p && typeof p.id === "string")
59
+ }
60
+
61
+ type DiscountSectionProps = {
62
+ /** The SDK transport — the promotions route is called through it. */
63
+ client: StorefrontClient
64
+ cart: Cart
65
+ /** Receives the decorated cart returned by a successful apply. */
66
+ onCartChange?: (cart: Cart) => void
67
+ }
68
+
69
+ export function DiscountSection({
70
+ client,
71
+ cart,
72
+ onCartChange,
73
+ }: DiscountSectionProps) {
74
+ const labels = useCheckoutLabels()
75
+ const [code, setCode] = useState("")
76
+ const [loading, setLoading] = useState(false)
77
+ const [error, setError] = useState("")
78
+ const [open, setOpen] = useState(false)
79
+
80
+ const promotions = extractPromotions(cart)
81
+
82
+ const handleApply = async () => {
83
+ if (!code.trim()) return
84
+ setLoading(true)
85
+ setError("")
86
+ try {
87
+ // Additive apply — the Cartbase route upserts the new code's link and
88
+ // re-applies every cart promotion; already-applied codes stay.
89
+ const { cart: updated } = await applyPromotions(client, cart.id, [code.trim()])
90
+ onCartChange?.(updated)
91
+ setCode("")
92
+ } catch (e: unknown) {
93
+ // Never surface the raw API error string to the shopper — map to a
94
+ // proper localized message (code-first, pattern fallback).
95
+ setError(translatePromotionError(e, labels.promotionErrors, { hasEmail: !!cart.email }))
96
+ } finally {
97
+ setLoading(false)
98
+ }
99
+ }
100
+
101
+ return (
102
+ <div>
103
+ <button
104
+ type="button"
105
+ onClick={() => setOpen(!open)}
106
+ className="flex items-center gap-3 w-full p-4 rounded-xl border border-border bg-muted/50 hover:bg-muted transition-colors"
107
+ >
108
+ <div className="w-10 h-10 rounded-full bg-gradient-to-br from-warning to-warning/70 flex items-center justify-center flex-shrink-0">
109
+ <svg
110
+ className="w-5 h-5 text-card"
111
+ fill="none"
112
+ viewBox="0 0 24 24"
113
+ stroke="currentColor"
114
+ strokeWidth={2}
115
+ >
116
+ <path
117
+ strokeLinecap="round"
118
+ strokeLinejoin="round"
119
+ d="M9.568 3H5.25A2.25 2.25 0 003 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 005.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 009.568 3z"
120
+ />
121
+ <path
122
+ strokeLinecap="round"
123
+ strokeLinejoin="round"
124
+ d="M6 6h.008v.008H6V6z"
125
+ />
126
+ </svg>
127
+ </div>
128
+ <div className="flex-1 text-left">
129
+ <p className="text-sm font-semibold text-foreground">
130
+ {labels.discountCode}
131
+ </p>
132
+ <p className="text-xs text-muted-foreground">{labels.discountSub}</p>
133
+ </div>
134
+ <span className="text-sm font-medium text-foreground flex items-center gap-1.5">
135
+ {labels.addCode}
136
+ <svg
137
+ className={cn(
138
+ "w-4 h-4 text-muted-foreground transition-transform duration-200",
139
+ open && "rotate-180"
140
+ )}
141
+ fill="none"
142
+ viewBox="0 0 24 24"
143
+ stroke="currentColor"
144
+ strokeWidth={2}
145
+ >
146
+ <path
147
+ strokeLinecap="round"
148
+ strokeLinejoin="round"
149
+ d="M19.5 8.25l-7.5 7.5-7.5-7.5"
150
+ />
151
+ </svg>
152
+ </span>
153
+ </button>
154
+
155
+ {open && (
156
+ <div className="mt-3 flex gap-2">
157
+ <input
158
+ type="text"
159
+ value={code}
160
+ onChange={(e) => setCode(e.target.value.toUpperCase())}
161
+ placeholder="PROMO2024"
162
+ className="flex-1 h-11 px-4 text-sm bg-card border border-border rounded-xl focus:outline-none focus:border-primary focus:ring-2 focus:ring-primary/20 transition-all"
163
+ />
164
+ <button
165
+ type="button"
166
+ onClick={handleApply}
167
+ disabled={loading || !code.trim()}
168
+ className="px-5 h-11 text-sm font-semibold bg-foreground text-card rounded-xl hover:bg-foreground/90 transition-all disabled:opacity-40"
169
+ >
170
+ {labels.addCode}
171
+ </button>
172
+ </div>
173
+ )}
174
+
175
+ {error && <p className="text-xs text-destructive mt-2">{error}</p>}
176
+
177
+ {promotions.length > 0 && (
178
+ <div className="mt-3 space-y-1.5">
179
+ {promotions.map((p) => (
180
+ <div
181
+ key={p.id}
182
+ className="flex items-center justify-between px-4 py-2.5 bg-success/10 border border-success/20 rounded-lg"
183
+ >
184
+ <div className="flex items-center gap-2">
185
+ <svg
186
+ className="w-4 h-4 text-success"
187
+ fill="none"
188
+ viewBox="0 0 24 24"
189
+ stroke="currentColor"
190
+ strokeWidth={2}
191
+ >
192
+ <path
193
+ strokeLinecap="round"
194
+ strokeLinejoin="round"
195
+ d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
196
+ />
197
+ </svg>
198
+ <span className="text-sm font-semibold text-success">
199
+ {p.code}
200
+ </span>
201
+ </div>
202
+ <span className="text-sm font-medium text-success">
203
+ {p.application_method?.type === "percentage"
204
+ ? `-${p.application_method.value}%`
205
+ : p.application_method?.value && p.application_method?.currency_code
206
+ ? `-${convertToLocale({
207
+ amount: +p.application_method.value,
208
+ currency_code: p.application_method.currency_code,
209
+ })}`
210
+ : ""}
211
+ </span>
212
+ </div>
213
+ ))}
214
+ </div>
215
+ )}
216
+ </div>
217
+ )
218
+ }
@@ -1,63 +1,63 @@
1
- import type {
2
- GiftCardErrorCopy,
3
- PaymentErrorCopy,
4
- PromotionErrorCopy,
5
- } from "./labels"
6
-
7
- /**
8
- * WHICH COPY AN API ERROR CODE ASKS FOR — the recognition half of the
9
- * checkout's failure copy, kept apart from the words themselves.
10
- *
11
- * The codes are the store API's own (docs/storefront/checkout.md lists
12
- * every code per endpoint). They are wire format, never shown to a
13
- * shopper, so they are never translated. The sentence each one maps to
14
- * lives in the checkout label pack, which means it is English by default
15
- * and translated by whichever locale the store mounts.
16
- *
17
- * Generated 2026-09-13 from the modules' own Bulgarian maps when the copy
18
- * was lifted; a new code is one line here plus one key in the packs, and
19
- * the type makes a missing key a compile error.
20
- */
21
- export const PAYMENT_CODE_KEYS: Record<string, keyof PaymentErrorCopy> = {
22
- cart_email_required: "cartEmailRequired",
23
- cart_empty: "cartEmpty",
24
- shipping_address_required: "shippingAddressRequired",
25
- shipping_method_required: "shippingMethodRequired",
26
- payment_collection_required: "paymentCollectionRequired",
27
- payment_session_required: "paymentSessionRequired",
28
- insufficient_inventory: "insufficientInventory",
29
- checkout_method_hidden: "checkoutMethodHidden",
30
- requires_action: "requiresAction",
31
- payment_not_authorized: "paymentNotAuthorized",
32
- payment_not_initiated: "paymentNotInitiated",
33
- payment_incomplete: "paymentIncomplete",
34
- gift_card_insufficient_balance: "giftCardInsufficientBalance",
35
- gift_card_not_redeemable: "giftCardNotRedeemable",
36
- account_required: "accountRequired",
37
- cart_locked: "cartLocked",
38
- cart_completed: "cartCompleted",
39
- cart_not_found: "cartNotFound",
40
- shipping_option_not_found: "shippingOptionNotFound",
41
- invalid_provider: "invalidProvider",
42
- shipping_price_missing: "shippingPriceMissing",
43
- stripe_not_configured: "stripeNotConfigured",
44
- validation_failed: "validationFailed",
45
- }
46
-
47
- export const GIFT_CARD_CODE_KEYS: Record<string, keyof GiftCardErrorCopy> = {
48
- invalid_gift_card: "invalidGiftCard",
49
- rate_limited: "rateLimited",
50
- cart_completed: "cartCompleted",
51
- cart_not_found: "cartNotFound",
52
- validation_failed: "validationFailed",
53
- }
54
-
55
- export const PROMOTION_CODE_KEYS: Record<string, keyof PromotionErrorCopy> = {
56
- promotion_not_found: "promotionNotFound",
57
- promotion_inactive: "promotionInactive",
58
- promotion_misconfigured: "promotionMisconfigured",
59
- promotion_unsupported_type: "promotionUnsupportedType",
60
- cart_completed: "cartCompleted",
61
- cart_not_found: "cartNotFound",
62
- validation_failed: "validationFailed",
63
- }
1
+ import type {
2
+ GiftCardErrorCopy,
3
+ PaymentErrorCopy,
4
+ PromotionErrorCopy,
5
+ } from "./labels"
6
+
7
+ /**
8
+ * WHICH COPY AN API ERROR CODE ASKS FOR — the recognition half of the
9
+ * checkout's failure copy, kept apart from the words themselves.
10
+ *
11
+ * The codes are the store API's own (docs/storefront/checkout.md lists
12
+ * every code per endpoint). They are wire format, never shown to a
13
+ * shopper, so they are never translated. The sentence each one maps to
14
+ * lives in the checkout label pack, which means it is English by default
15
+ * and translated by whichever locale the store mounts.
16
+ *
17
+ * Generated 2026-09-13 from the modules' own Bulgarian maps when the copy
18
+ * was lifted; a new code is one line here plus one key in the packs, and
19
+ * the type makes a missing key a compile error.
20
+ */
21
+ export const PAYMENT_CODE_KEYS: Record<string, keyof PaymentErrorCopy> = {
22
+ cart_email_required: "cartEmailRequired",
23
+ cart_empty: "cartEmpty",
24
+ shipping_address_required: "shippingAddressRequired",
25
+ shipping_method_required: "shippingMethodRequired",
26
+ payment_collection_required: "paymentCollectionRequired",
27
+ payment_session_required: "paymentSessionRequired",
28
+ insufficient_inventory: "insufficientInventory",
29
+ checkout_method_hidden: "checkoutMethodHidden",
30
+ requires_action: "requiresAction",
31
+ payment_not_authorized: "paymentNotAuthorized",
32
+ payment_not_initiated: "paymentNotInitiated",
33
+ payment_incomplete: "paymentIncomplete",
34
+ gift_card_insufficient_balance: "giftCardInsufficientBalance",
35
+ gift_card_not_redeemable: "giftCardNotRedeemable",
36
+ account_required: "accountRequired",
37
+ cart_locked: "cartLocked",
38
+ cart_completed: "cartCompleted",
39
+ cart_not_found: "cartNotFound",
40
+ shipping_option_not_found: "shippingOptionNotFound",
41
+ invalid_provider: "invalidProvider",
42
+ shipping_price_missing: "shippingPriceMissing",
43
+ stripe_not_configured: "stripeNotConfigured",
44
+ validation_failed: "validationFailed",
45
+ }
46
+
47
+ export const GIFT_CARD_CODE_KEYS: Record<string, keyof GiftCardErrorCopy> = {
48
+ invalid_gift_card: "invalidGiftCard",
49
+ rate_limited: "rateLimited",
50
+ cart_completed: "cartCompleted",
51
+ cart_not_found: "cartNotFound",
52
+ validation_failed: "validationFailed",
53
+ }
54
+
55
+ export const PROMOTION_CODE_KEYS: Record<string, keyof PromotionErrorCopy> = {
56
+ promotion_not_found: "promotionNotFound",
57
+ promotion_inactive: "promotionInactive",
58
+ promotion_misconfigured: "promotionMisconfigured",
59
+ promotion_unsupported_type: "promotionUnsupportedType",
60
+ cart_completed: "cartCompleted",
61
+ cart_not_found: "cartNotFound",
62
+ validation_failed: "validationFailed",
63
+ }