create-brainerce-store 1.72.0 → 1.74.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 (88) hide show
  1. package/dist/index.js +37 -4
  2. package/messages/en.json +30 -1
  3. package/messages/he.json +30 -1
  4. package/package.json +1 -1
  5. package/templates/nextjs/base/AGENTS.md.ejs +63 -16
  6. package/templates/nextjs/base/AI-GUIDE.md +17 -4
  7. package/templates/nextjs/base/CLAUDE.md.ejs +67 -20
  8. package/templates/nextjs/base/TRANSLATIONS.md +207 -207
  9. package/templates/nextjs/base/src/app/account/page.tsx +168 -122
  10. package/templates/nextjs/base/src/app/category/[slug]/page.tsx +10 -1
  11. package/templates/nextjs/base/src/app/checkout/page.tsx +1179 -1074
  12. package/templates/nextjs/base/src/app/layout.tsx.ejs +48 -4
  13. package/templates/nextjs/base/src/app/order-confirmation/page.tsx +98 -3
  14. package/templates/nextjs/base/src/app/products/[slug]/page.tsx +14 -2
  15. package/templates/nextjs/base/src/components/account/loyalty-panel.tsx +226 -0
  16. package/templates/nextjs/base/src/components/account/order-history.tsx +422 -371
  17. package/templates/nextjs/base/src/components/account/order-status-timeline.tsx +85 -85
  18. package/templates/nextjs/base/src/components/account/saved-payment-methods.tsx +104 -0
  19. package/templates/nextjs/base/src/components/checkout/checkout-form.tsx +618 -612
  20. package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +354 -306
  21. package/templates/nextjs/base/src/components/checkout/tax-display.tsx +141 -74
  22. package/templates/nextjs/base/src/core/hooks/use-cart-page.ts +218 -127
  23. package/templates/nextjs/base/src/core/hooks/use-home-data.ts +63 -51
  24. package/templates/nextjs/base/src/core/hooks/use-product-listing.ts +379 -295
  25. package/templates/nextjs/base/src/core/hooks/use-product-page.ts +33 -1
  26. package/templates/nextjs/base/src/core/lib/capabilities.ts +65 -0
  27. package/templates/nextjs/base/src/core/lib/display-price.ts +139 -0
  28. package/templates/nextjs/base/src/core/lib/region.server.ts +112 -0
  29. package/templates/nextjs/base/src/core/lib/region.ts +112 -0
  30. package/templates/nextjs/base/src/core/lib/store-info.ts +19 -0
  31. package/templates/nextjs/base/src/core/providers/store-provider.tsx.ejs +423 -243
  32. package/templates/nextjs/base/src/ui/cart/cart-item.tsx +174 -164
  33. package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +109 -110
  34. package/templates/nextjs/base/src/ui/cart/cart-view.tsx +219 -176
  35. package/templates/nextjs/base/src/ui/cart/gift-card-input.tsx +191 -0
  36. package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +137 -137
  37. package/templates/nextjs/base/src/ui/cart/tax-estimate-line.tsx +108 -0
  38. package/templates/nextjs/base/src/ui/home/home-client.tsx +27 -29
  39. package/templates/nextjs/base/src/ui/layout/header-search.tsx +249 -0
  40. package/templates/nextjs/base/src/ui/layout/region-switcher.tsx +59 -0
  41. package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +171 -152
  42. package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +197 -191
  43. package/templates/nextjs/base/src/ui/product/product-card.tsx +25 -52
  44. package/templates/nextjs/base/src/ui/product/product-client-section.tsx +12 -3
  45. package/templates/nextjs/base/src/ui/product/product-listing.tsx +460 -446
  46. package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +108 -102
  47. package/templates/nextjs/base/src/ui/product/review-form.tsx +33 -11
  48. package/templates/nextjs/base/src/ui/product/stock-badge.tsx +15 -3
  49. package/templates/nextjs/designs/atelier/app-overlay/layout.tsx.ejs +48 -4
  50. package/templates/nextjs/designs/atelier/messages-patch/en.json +21 -25
  51. package/templates/nextjs/designs/atelier/messages-patch/he.json +21 -25
  52. package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +177 -181
  53. package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +168 -158
  54. package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +106 -107
  55. package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +229 -184
  56. package/templates/nextjs/designs/atelier/ui/cart/reservation-countdown.tsx +131 -131
  57. package/templates/nextjs/designs/atelier/ui/cart/tax-estimate-line.tsx +108 -0
  58. package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +10 -1
  59. package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +178 -174
  60. package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +4 -6
  61. package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +150 -78
  62. package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +79 -46
  63. package/templates/nextjs/designs/atelier/ui/layout/header-search.tsx +264 -0
  64. package/templates/nextjs/designs/atelier/ui/layout/region-switcher.tsx +44 -0
  65. package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +5 -0
  66. package/templates/nextjs/designs/atelier/ui/product/frequently-bought-together.tsx +202 -196
  67. package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +27 -52
  68. package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +12 -3
  69. package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +332 -260
  70. package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +101 -95
  71. package/templates/nextjs/designs/atelier/ui/product/review-form.tsx +30 -10
  72. package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +17 -2
  73. package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +9 -0
  74. package/templates/nextjs/ui-canvas/cart/cart-item.tsx +137 -137
  75. package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +98 -99
  76. package/templates/nextjs/ui-canvas/cart/cart-view.tsx +140 -140
  77. package/templates/nextjs/ui-canvas/cart/gift-card-input.tsx +142 -0
  78. package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +124 -124
  79. package/templates/nextjs/ui-canvas/cart/tax-estimate-line.tsx +104 -0
  80. package/templates/nextjs/ui-canvas/home/home-client.tsx +24 -26
  81. package/templates/nextjs/ui-canvas/layout/region-switcher.tsx +51 -0
  82. package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +3 -0
  83. package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +174 -168
  84. package/templates/nextjs/ui-canvas/product/product-card.tsx +9 -51
  85. package/templates/nextjs/ui-canvas/product/product-client-section.tsx +5 -3
  86. package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +105 -99
  87. package/templates/nextjs/ui-canvas/product/review-form.tsx +9 -1
  88. package/templates/nextjs/ui-canvas/product/stock-badge.tsx +17 -2
@@ -1,612 +1,618 @@
1
- 'use client';
2
-
3
- import { useState, useEffect, useRef } from 'react';
4
- import type { SetShippingAddressDto, ShippingDestinations, AddressSuggestion } from 'brainerce';
5
- import { useTranslations } from '@/core/lib/translations';
6
- import { cn } from '@/core/lib/utils';
7
- import { isValidEmail } from '@/core/lib/validation';
8
- import { getClient } from '@/core/lib/brainerce';
9
-
10
- // Debounce address-suggestion calls rather than firing on every keystroke —
11
- // both to avoid a jumpy dropdown and to keep autocomplete-session call volume
12
- // reasonable (see `getAddressSuggestions` doc in the SDK).
13
- const ADDRESS_SEARCH_DEBOUNCE_MS = 300;
14
- const ADDRESS_SEARCH_MIN_CHARS = 3;
15
-
16
- // Editing any of these invalidates a previously picked suggestion: its
17
- // coordinates describe the address the shopper selected, not what is in the
18
- // inputs now. See `pickedPlace` below.
19
- const PLACE_INVALIDATING_FIELDS = new Set<string>([
20
- 'line1',
21
- 'line2',
22
- 'city',
23
- 'region',
24
- 'postalCode',
25
- 'country',
26
- ]);
27
-
28
- interface CheckoutConsent {
29
- acceptsMarketing: boolean;
30
- saveDetails: boolean;
31
- }
32
-
33
- interface CheckoutFormProps {
34
- onSubmit: (address: SetShippingAddressDto, consent: CheckoutConsent) => void;
35
- loading?: boolean;
36
- initialValues?: Partial<SetShippingAddressDto>;
37
- destinations?: ShippingDestinations | null;
38
- className?: string;
39
- showSaveDetails?: boolean;
40
- emailOnly?: boolean;
41
- }
42
-
43
- export function CheckoutForm({
44
- onSubmit,
45
- loading = false,
46
- initialValues,
47
- destinations,
48
- className,
49
- showSaveDetails = false,
50
- emailOnly = false,
51
- }: CheckoutFormProps) {
52
- const [formData, setFormData] = useState<SetShippingAddressDto>({
53
- email: initialValues?.email || '',
54
- firstName: initialValues?.firstName || '',
55
- lastName: initialValues?.lastName || '',
56
- line1: initialValues?.line1 || '',
57
- line2: initialValues?.line2 || '',
58
- city: initialValues?.city || '',
59
- region: initialValues?.region || '',
60
- postalCode: initialValues?.postalCode || '',
61
- country: initialValues?.country || '',
62
- phone: initialValues?.phone || '',
63
- notes: initialValues?.notes || '',
64
- });
65
- const [errors, setErrors] = useState<Record<string, string>>({});
66
- const [privacyAccepted, setPrivacyAccepted] = useState(false);
67
- const [acceptsMarketing, setAcceptsMarketing] = useState(false);
68
- const [saveDetails, setSaveDetails] = useState(true);
69
- const t = useTranslations('checkoutForm');
70
- const tc = useTranslations('common');
71
- const hasAppliedPrefill = useRef(!!initialValues);
72
-
73
- // Address-autocomplete state groups one address-entry attempt for
74
- // session-token billing (see `getAddressSuggestions` in the SDK). A fresh
75
- // token is minted whenever a suggestion is picked, ending that session.
76
- const [addressSuggestions, setAddressSuggestions] = useState<AddressSuggestion[]>([]);
77
- const [showAddressSuggestions, setShowAddressSuggestions] = useState(false);
78
- const [isSearchingAddress, setIsSearchingAddress] = useState(false);
79
- const [outsideDeliveryZone, setOutsideDeliveryZone] = useState(false);
80
- // The suggestion the shopper actually picked, kept so it can ride along to
81
- // `setShippingAddress`. That is what lets the server match map-drawn
82
- // ("polygon") delivery zones against this address's exact coordinates
83
- // instead of geocoding the typed text — skipping it is the most common
84
- // cause of "the store says it doesn't deliver here, but it does". Null
85
- // whenever the address was typed by hand or edited after picking.
86
- const [pickedPlace, setPickedPlace] = useState<{
87
- placeId: string;
88
- sessionToken: string;
89
- } | null>(null);
90
- const addressSessionToken = useRef(
91
- typeof crypto !== 'undefined' ? crypto.randomUUID() : `${Date.now()}-${Math.random()}`
92
- );
93
- const addressSearchTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
94
-
95
- useEffect(() => {
96
- return () => {
97
- if (addressSearchTimer.current) clearTimeout(addressSearchTimer.current);
98
- };
99
- }, []);
100
-
101
- function handleLine1Change(value: string) {
102
- updateField('line1', value);
103
- setOutsideDeliveryZone(false);
104
-
105
- if (addressSearchTimer.current) clearTimeout(addressSearchTimer.current);
106
-
107
- const query = value.trim();
108
- if (query.length < ADDRESS_SEARCH_MIN_CHARS) {
109
- setAddressSuggestions([]);
110
- setShowAddressSuggestions(false);
111
- return;
112
- }
113
-
114
- addressSearchTimer.current = setTimeout(async () => {
115
- setIsSearchingAddress(true);
116
- try {
117
- const results = await getClient().getAddressSuggestions(query, addressSessionToken.current);
118
- setAddressSuggestions(results);
119
- setShowAddressSuggestions(results.length > 0);
120
- } catch {
121
- // Autocomplete is a soft enhancement — a failed lookup just means no
122
- // suggestions this keystroke; the shopper can keep typing manually.
123
- setAddressSuggestions([]);
124
- setShowAddressSuggestions(false);
125
- } finally {
126
- setIsSearchingAddress(false);
127
- }
128
- }, ADDRESS_SEARCH_DEBOUNCE_MS);
129
- }
130
-
131
- async function handleSelectAddressSuggestion(suggestion: AddressSuggestion) {
132
- setShowAddressSuggestions(false);
133
- // The token this resolution is billed under — hand the SAME one to
134
- // `setShippingAddress` so a server-side cache miss re-resolves within this
135
- // autocomplete session instead of opening a new (billed) one.
136
- const resolvingSessionToken = addressSessionToken.current;
137
- try {
138
- const { address, inZone } = await getClient().getAddressDetails(
139
- suggestion.placeId,
140
- resolvingSessionToken
141
- );
142
- setFormData((prev) => {
143
- const country = address.country || prev.country;
144
- // Only accept address.region if it's one of THIS store's known
145
- // region codes for the resolved country (destinations.regions —
146
- // the same list the dropdown below renders, backed by our own
147
- // geo-data, not Google's). Google's region code usually lines up
148
- // (both ultimately trace back to ISO 3166-2), but never assign a
149
- // value the dropdown wouldn't recognize — better an unselected
150
- // dropdown the shopper fills in than a silently-wrong one.
151
- const validRegions = destinations?.regions[country] ?? [];
152
- const resolvedRegionValid = validRegions.some((r) => r.code === address.region);
153
- return {
154
- ...prev,
155
- line1: address.line1 || prev.line1,
156
- city: address.city || prev.city,
157
- region: resolvedRegionValid
158
- ? address.region
159
- : country !== prev.country
160
- ? ''
161
- : prev.region,
162
- postalCode: address.postalCode || prev.postalCode,
163
- country,
164
- };
165
- });
166
- setOutsideDeliveryZone(!inZone);
167
- // Note we deliberately do NOT copy address.lat/lng into the form: no
168
- // address endpoint accepts coordinates (zone matching decides which rate
169
- // is charged, so the server resolves them from the placeId itself).
170
- // They're yours to use for a map pin and nothing else.
171
- setPickedPlace({ placeId: suggestion.placeId, sessionToken: resolvingSessionToken });
172
- } catch {
173
- // Resolution failed keep whatever the shopper had typed/selected as
174
- // the visible text; they can still fill in the rest manually.
175
- setPickedPlace(null);
176
- } finally {
177
- // New session for the next address-entry attempt.
178
- addressSessionToken.current =
179
- typeof crypto !== 'undefined' ? crypto.randomUUID() : `${Date.now()}-${Math.random()}`;
180
- setAddressSuggestions([]);
181
- }
182
- }
183
-
184
- // Sync prefill data when it arrives async (e.g. from getCheckoutPrefillData)
185
- useEffect(() => {
186
- if (!initialValues || hasAppliedPrefill.current) return;
187
- hasAppliedPrefill.current = true;
188
- setFormData((prev) => ({
189
- email: initialValues.email || prev.email,
190
- firstName: initialValues.firstName || prev.firstName,
191
- lastName: initialValues.lastName || prev.lastName,
192
- line1: initialValues.line1 || prev.line1,
193
- line2: initialValues.line2 || prev.line2 || '',
194
- city: initialValues.city || prev.city,
195
- region: initialValues.region || prev.region || '',
196
- postalCode: initialValues.postalCode || prev.postalCode,
197
- country: initialValues.country || prev.country,
198
- phone: initialValues.phone || prev.phone || '',
199
- notes: prev.notes || '',
200
- }));
201
- }, [initialValues]);
202
-
203
- const hasCountryOptions = destinations && destinations.countries.length > 0;
204
- const countryRegions = destinations?.regions[formData.country];
205
- const hasRegionOptions = countryRegions && countryRegions.length > 0;
206
-
207
- function validate(): boolean {
208
- const newErrors: Record<string, string> = {};
209
-
210
- if (!formData.email.trim()) {
211
- newErrors.email = t('emailRequired');
212
- } else if (!isValidEmail(formData.email.trim())) {
213
- newErrors.email = t('emailInvalid');
214
- }
215
-
216
- if (!formData.firstName.trim()) {
217
- newErrors.firstName = t('firstNameRequired');
218
- }
219
- if (!formData.lastName.trim()) {
220
- newErrors.lastName = t('lastNameRequired');
221
- }
222
- if (!emailOnly) {
223
- if (!formData.line1.trim()) {
224
- newErrors.line1 = t('addressRequired');
225
- }
226
- if (!formData.city.trim()) {
227
- newErrors.city = t('cityRequired');
228
- }
229
- if (!formData.postalCode.trim()) {
230
- newErrors.postalCode = t('postalCodeRequired');
231
- }
232
- if (!formData.country.trim()) {
233
- newErrors.country = t('countryRequired');
234
- }
235
- }
236
- if (!privacyAccepted) {
237
- newErrors.privacy = t('privacyRequired');
238
- }
239
-
240
- setErrors(newErrors);
241
- return Object.keys(newErrors).length === 0;
242
- }
243
-
244
- function handleSubmit(e: React.FormEvent) {
245
- e.preventDefault();
246
- if (validate()) {
247
- onSubmit(
248
- {
249
- ...formData,
250
- // Both undefined when the shopper typed the address by hand or
251
- // edited it after picking a suggestion — the server then geocodes
252
- // the text, which is the right behaviour once the two disagree.
253
- placeId: pickedPlace?.placeId,
254
- placeSessionToken: pickedPlace?.sessionToken,
255
- },
256
- { acceptsMarketing, saveDetails: showSaveDetails && saveDetails }
257
- );
258
- }
259
- }
260
-
261
- function updateField(field: keyof SetShippingAddressDto, value: string) {
262
- setFormData((prev) => {
263
- const next = { ...prev, [field]: value };
264
- // Reset region when country changes
265
- if (field === 'country' && value !== prev.country) {
266
- next.region = '';
267
- }
268
- return next;
269
- });
270
- // Once any address field is edited, the picked suggestion no longer
271
- // describes what is in the form keeping its placeId would match delivery
272
- // zones against the address the shopper originally selected.
273
- if (PLACE_INVALIDATING_FIELDS.has(field)) {
274
- setPickedPlace(null);
275
- }
276
- if (errors[field]) {
277
- setErrors((prev) => {
278
- const next = { ...prev };
279
- delete next[field];
280
- return next;
281
- });
282
- }
283
- }
284
-
285
- const inputClass =
286
- 'bg-background text-foreground placeholder:text-muted-foreground focus:ring-primary/20 focus:border-primary h-10 w-full rounded border px-3 text-sm focus:outline-none focus:ring-2';
287
- const selectClass =
288
- 'bg-background text-foreground focus:ring-primary/20 focus:border-primary h-10 w-full appearance-none rounded border px-3 text-sm focus:outline-none focus:ring-2';
289
-
290
- return (
291
- <form onSubmit={handleSubmit} className={cn('space-y-4', className)}>
292
- {/* Email */}
293
- <div>
294
- <label htmlFor="email" className="text-foreground mb-1 block text-sm font-medium">
295
- {t('email')} <span className="text-destructive">*</span>
296
- </label>
297
- <input
298
- id="email"
299
- type="email"
300
- value={formData.email}
301
- onChange={(e) => updateField('email', e.target.value)}
302
- className={cn(inputClass, errors.email ? 'border-destructive' : 'border-border')}
303
- placeholder="your@email.com"
304
- />
305
- {errors.email && <p className="text-destructive mt-1 text-xs">{errors.email}</p>}
306
- </div>
307
-
308
- {/* Name row */}
309
- <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
310
- <div>
311
- <label htmlFor="firstName" className="text-foreground mb-1 block text-sm font-medium">
312
- {t('firstName')} <span className="text-destructive">*</span>
313
- </label>
314
- <input
315
- id="firstName"
316
- type="text"
317
- value={formData.firstName}
318
- onChange={(e) => updateField('firstName', e.target.value)}
319
- className={cn(inputClass, errors.firstName ? 'border-destructive' : 'border-border')}
320
- />
321
- {errors.firstName && <p className="text-destructive mt-1 text-xs">{errors.firstName}</p>}
322
- </div>
323
-
324
- <div>
325
- <label htmlFor="lastName" className="text-foreground mb-1 block text-sm font-medium">
326
- {t('lastName')} <span className="text-destructive">*</span>
327
- </label>
328
- <input
329
- id="lastName"
330
- type="text"
331
- value={formData.lastName}
332
- onChange={(e) => updateField('lastName', e.target.value)}
333
- className={cn(inputClass, errors.lastName ? 'border-destructive' : 'border-border')}
334
- />
335
- {errors.lastName && <p className="text-destructive mt-1 text-xs">{errors.lastName}</p>}
336
- </div>
337
- </div>
338
-
339
- {!emailOnly && (
340
- <>
341
- {/* Country + Region row */}
342
- <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
343
- <div>
344
- <label htmlFor="country" className="text-foreground mb-1 block text-sm font-medium">
345
- {t('country')} <span className="text-destructive">*</span>
346
- </label>
347
- {hasCountryOptions ? (
348
- <select
349
- id="country"
350
- value={formData.country}
351
- onChange={(e) => updateField('country', e.target.value)}
352
- className={cn(
353
- selectClass,
354
- errors.country ? 'border-destructive' : 'border-border'
355
- )}
356
- >
357
- <option value="">{t('selectCountry')}</option>
358
- {destinations.countries.map((c) => (
359
- <option key={c.code} value={c.code}>
360
- {c.name}
361
- </option>
362
- ))}
363
- </select>
364
- ) : (
365
- <input
366
- id="country"
367
- type="text"
368
- value={formData.country}
369
- onChange={(e) => updateField('country', e.target.value)}
370
- className={cn(
371
- inputClass,
372
- errors.country ? 'border-destructive' : 'border-border'
373
- )}
374
- placeholder={t('countryPlaceholder')}
375
- />
376
- )}
377
- {errors.country && <p className="text-destructive mt-1 text-xs">{errors.country}</p>}
378
- </div>
379
-
380
- <div>
381
- <label htmlFor="region" className="text-foreground mb-1 block text-sm font-medium">
382
- {t('stateRegion')}
383
- </label>
384
- {hasRegionOptions ? (
385
- <select
386
- id="region"
387
- value={formData.region || ''}
388
- onChange={(e) => updateField('region', e.target.value)}
389
- className={cn(selectClass, 'border-border')}
390
- >
391
- <option value="">{t('selectRegion')}</option>
392
- {countryRegions.map((r) => (
393
- <option key={r.code} value={r.code}>
394
- {r.name}
395
- </option>
396
- ))}
397
- </select>
398
- ) : (
399
- <input
400
- id="region"
401
- type="text"
402
- value={formData.region || ''}
403
- onChange={(e) => updateField('region', e.target.value)}
404
- className={cn(inputClass, 'border-border')}
405
- />
406
- )}
407
- </div>
408
- </div>
409
-
410
- {/* Address line 1 — autocomplete typeahead */}
411
- <div className="relative">
412
- <label htmlFor="line1" className="text-foreground mb-1 block text-sm font-medium">
413
- {t('address')} <span className="text-destructive">*</span>
414
- </label>
415
- <input
416
- id="line1"
417
- type="text"
418
- autoComplete="off"
419
- value={formData.line1}
420
- onChange={(e) => handleLine1Change(e.target.value)}
421
- onFocus={() => setShowAddressSuggestions(addressSuggestions.length > 0)}
422
- onBlur={() => setTimeout(() => setShowAddressSuggestions(false), 150)}
423
- className={cn(inputClass, errors.line1 ? 'border-destructive' : 'border-border')}
424
- placeholder={t('streetAddress')}
425
- />
426
- {errors.line1 && <p className="text-destructive mt-1 text-xs">{errors.line1}</p>}
427
-
428
- {showAddressSuggestions && addressSuggestions.length > 0 && (
429
- <ul className="bg-background border-border absolute z-10 mt-1 max-h-60 w-full overflow-y-auto rounded border shadow-lg">
430
- {addressSuggestions.map((suggestion) => (
431
- <li key={suggestion.placeId}>
432
- <button
433
- type="button"
434
- // onMouseDown fires before the input's onBlur, so the
435
- // click registers before the dropdown closes.
436
- onMouseDown={() => handleSelectAddressSuggestion(suggestion)}
437
- className="hover:bg-muted w-full px-3 py-2 text-start text-sm"
438
- >
439
- {suggestion.description}
440
- </button>
441
- </li>
442
- ))}
443
- </ul>
444
- )}
445
- {isSearchingAddress && (
446
- <p className="text-muted-foreground mt-1 text-xs">{t('searchingAddress')}</p>
447
- )}
448
- {outsideDeliveryZone && (
449
- <p className="mt-2 rounded border border-amber-300 bg-amber-50 px-3 py-2 text-xs text-amber-800 dark:border-amber-800 dark:bg-amber-950 dark:text-amber-200">
450
- {t('outsideDeliveryZone')}
451
- </p>
452
- )}
453
- </div>
454
-
455
- {/* Address line 2 */}
456
- <div>
457
- <label htmlFor="line2" className="text-foreground mb-1 block text-sm font-medium">
458
- {t('apartmentSuite')}
459
- </label>
460
- <input
461
- id="line2"
462
- type="text"
463
- value={formData.line2 || ''}
464
- onChange={(e) => updateField('line2', e.target.value)}
465
- className={cn(inputClass, 'border-border')}
466
- placeholder={t('aptPlaceholder')}
467
- />
468
- </div>
469
-
470
- {/* City + Postal code row */}
471
- <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
472
- <div>
473
- <label htmlFor="city" className="text-foreground mb-1 block text-sm font-medium">
474
- {t('city')} <span className="text-destructive">*</span>
475
- </label>
476
- <input
477
- id="city"
478
- type="text"
479
- value={formData.city}
480
- onChange={(e) => updateField('city', e.target.value)}
481
- className={cn(inputClass, errors.city ? 'border-destructive' : 'border-border')}
482
- />
483
- {errors.city && <p className="text-destructive mt-1 text-xs">{errors.city}</p>}
484
- </div>
485
-
486
- <div>
487
- <label
488
- htmlFor="postalCode"
489
- className="text-foreground mb-1 block text-sm font-medium"
490
- >
491
- {t('postalCode')} <span className="text-destructive">*</span>
492
- </label>
493
- <input
494
- id="postalCode"
495
- type="text"
496
- value={formData.postalCode}
497
- onChange={(e) => updateField('postalCode', e.target.value)}
498
- className={cn(
499
- inputClass,
500
- errors.postalCode ? 'border-destructive' : 'border-border'
501
- )}
502
- />
503
- {errors.postalCode && (
504
- <p className="text-destructive mt-1 text-xs">{errors.postalCode}</p>
505
- )}
506
- </div>
507
- </div>
508
-
509
- {/* Phone */}
510
- <div>
511
- <label htmlFor="phone" className="text-foreground mb-1 block text-sm font-medium">
512
- {t('phone')}
513
- </label>
514
- <input
515
- id="phone"
516
- type="tel"
517
- value={formData.phone || ''}
518
- onChange={(e) => updateField('phone', e.target.value)}
519
- className={cn(inputClass, 'border-border')}
520
- placeholder={t('phonePlaceholder')}
521
- />
522
- </div>
523
- </>
524
- )}
525
-
526
- {/* Order notes (optional) */}
527
- <div>
528
- <label htmlFor="orderNotes" className="text-foreground mb-1 block text-sm font-medium">
529
- {t('orderNotes')}
530
- </label>
531
- <textarea
532
- id="orderNotes"
533
- value={formData.notes || ''}
534
- onChange={(e) => updateField('notes', e.target.value)}
535
- maxLength={2000}
536
- rows={3}
537
- className={cn(
538
- inputClass,
539
- 'border-border h-auto min-h-[80px] resize-y py-2 leading-relaxed'
540
- )}
541
- placeholder={t('orderNotesPlaceholder')}
542
- />
543
- </div>
544
-
545
- {/* Privacy Policy (required) */}
546
- <div>
547
- <label className="flex cursor-pointer items-start gap-2">
548
- <input
549
- type="checkbox"
550
- checked={privacyAccepted}
551
- onChange={(e) => {
552
- setPrivacyAccepted(e.target.checked);
553
- if (e.target.checked && errors.privacy) {
554
- setErrors((prev) => {
555
- const next = { ...prev };
556
- delete next.privacy;
557
- return next;
558
- });
559
- }
560
- }}
561
- className="accent-primary mt-0.5"
562
- />
563
- <span className="text-muted-foreground text-sm">
564
- {t('privacyAcceptPrefix')}{' '}
565
- <a
566
- href="/privacy"
567
- target="_blank"
568
- rel="noopener noreferrer"
569
- className="text-primary underline underline-offset-2"
570
- >
571
- {t('privacyPolicyLink')}
572
- </a>{' '}
573
- <span className="text-destructive">*</span>
574
- </span>
575
- </label>
576
- {errors.privacy && <p className="text-destructive mt-1 text-xs">{errors.privacy}</p>}
577
- </div>
578
-
579
- {/* Marketing consent (optional) */}
580
- <label className="flex cursor-pointer items-start gap-2">
581
- <input
582
- type="checkbox"
583
- checked={acceptsMarketing}
584
- onChange={(e) => setAcceptsMarketing(e.target.checked)}
585
- className="accent-primary mt-0.5"
586
- />
587
- <span className="text-muted-foreground text-sm">{t('acceptsMarketing')}</span>
588
- </label>
589
-
590
- {/* Save details for next time (logged-in users only) */}
591
- {showSaveDetails && (
592
- <label className="flex cursor-pointer items-start gap-2">
593
- <input
594
- type="checkbox"
595
- checked={saveDetails}
596
- onChange={(e) => setSaveDetails(e.target.checked)}
597
- className="accent-primary mt-0.5"
598
- />
599
- <span className="text-muted-foreground text-sm">{t('saveDetailsForNextTime')}</span>
600
- </label>
601
- )}
602
-
603
- <button
604
- type="submit"
605
- disabled={loading}
606
- className="bg-primary text-primary-foreground w-full rounded px-6 py-3 text-sm font-medium transition-opacity hover:opacity-90 disabled:cursor-not-allowed disabled:opacity-60"
607
- >
608
- {loading ? tc('saving') : emailOnly ? t('continueToPayment') : t('continueToShipping')}
609
- </button>
610
- </form>
611
- );
612
- }
1
+ 'use client';
2
+
3
+ import { useState, useEffect, useRef } from 'react';
4
+ import type { SetShippingAddressDto, ShippingDestinations, AddressSuggestion } from 'brainerce';
5
+ import { useTranslations } from '@/core/lib/translations';
6
+ import { cn } from '@/core/lib/utils';
7
+ import { isValidEmail } from '@/core/lib/validation';
8
+ import { getClient } from '@/core/lib/brainerce';
9
+ import { useRegion } from '@/core/providers/store-provider';
10
+
11
+ // Debounce address-suggestion calls rather than firing on every keystroke
12
+ // both to avoid a jumpy dropdown and to keep autocomplete-session call volume
13
+ // reasonable (see `getAddressSuggestions` doc in the SDK).
14
+ const ADDRESS_SEARCH_DEBOUNCE_MS = 300;
15
+ const ADDRESS_SEARCH_MIN_CHARS = 3;
16
+
17
+ // Editing any of these invalidates a previously picked suggestion: its
18
+ // coordinates describe the address the shopper selected, not what is in the
19
+ // inputs now. See `pickedPlace` below.
20
+ const PLACE_INVALIDATING_FIELDS = new Set<string>([
21
+ 'line1',
22
+ 'line2',
23
+ 'city',
24
+ 'region',
25
+ 'postalCode',
26
+ 'country',
27
+ ]);
28
+
29
+ interface CheckoutConsent {
30
+ acceptsMarketing: boolean;
31
+ saveDetails: boolean;
32
+ }
33
+
34
+ interface CheckoutFormProps {
35
+ onSubmit: (address: SetShippingAddressDto, consent: CheckoutConsent) => void;
36
+ loading?: boolean;
37
+ initialValues?: Partial<SetShippingAddressDto>;
38
+ destinations?: ShippingDestinations | null;
39
+ className?: string;
40
+ showSaveDetails?: boolean;
41
+ emailOnly?: boolean;
42
+ }
43
+
44
+ export function CheckoutForm({
45
+ onSubmit,
46
+ loading = false,
47
+ initialValues,
48
+ destinations,
49
+ className,
50
+ showSaveDetails = false,
51
+ emailOnly = false,
52
+ }: CheckoutFormProps) {
53
+ const [formData, setFormData] = useState<SetShippingAddressDto>({
54
+ email: initialValues?.email || '',
55
+ firstName: initialValues?.firstName || '',
56
+ lastName: initialValues?.lastName || '',
57
+ line1: initialValues?.line1 || '',
58
+ line2: initialValues?.line2 || '',
59
+ city: initialValues?.city || '',
60
+ region: initialValues?.region || '',
61
+ postalCode: initialValues?.postalCode || '',
62
+ country: initialValues?.country || '',
63
+ phone: initialValues?.phone || '',
64
+ notes: initialValues?.notes || '',
65
+ });
66
+ const [errors, setErrors] = useState<Record<string, string>>({});
67
+ const [privacyAccepted, setPrivacyAccepted] = useState(false);
68
+ const [acceptsMarketing, setAcceptsMarketing] = useState(false);
69
+ const [saveDetails, setSaveDetails] = useState(true);
70
+ const t = useTranslations('checkoutForm');
71
+ const tc = useTranslations('common');
72
+ // Address resolution is region-scoped too: the same lookup can price and
73
+ // zone differently per region. `undefined` on a store with no regions, and
74
+ // the SDK omits the query param.
75
+ const { regionId } = useRegion();
76
+ const hasAppliedPrefill = useRef(!!initialValues);
77
+
78
+ // Address-autocomplete state groups one address-entry attempt for
79
+ // session-token billing (see `getAddressSuggestions` in the SDK). A fresh
80
+ // token is minted whenever a suggestion is picked, ending that session.
81
+ const [addressSuggestions, setAddressSuggestions] = useState<AddressSuggestion[]>([]);
82
+ const [showAddressSuggestions, setShowAddressSuggestions] = useState(false);
83
+ const [isSearchingAddress, setIsSearchingAddress] = useState(false);
84
+ const [outsideDeliveryZone, setOutsideDeliveryZone] = useState(false);
85
+ // The suggestion the shopper actually picked, kept so it can ride along to
86
+ // `setShippingAddress`. That is what lets the server match map-drawn
87
+ // ("polygon") delivery zones against this address's exact coordinates
88
+ // instead of geocoding the typed text — skipping it is the most common
89
+ // cause of "the store says it doesn't deliver here, but it does". Null
90
+ // whenever the address was typed by hand or edited after picking.
91
+ const [pickedPlace, setPickedPlace] = useState<{
92
+ placeId: string;
93
+ sessionToken: string;
94
+ } | null>(null);
95
+ const addressSessionToken = useRef(
96
+ typeof crypto !== 'undefined' ? crypto.randomUUID() : `${Date.now()}-${Math.random()}`
97
+ );
98
+ const addressSearchTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
99
+
100
+ useEffect(() => {
101
+ return () => {
102
+ if (addressSearchTimer.current) clearTimeout(addressSearchTimer.current);
103
+ };
104
+ }, []);
105
+
106
+ function handleLine1Change(value: string) {
107
+ updateField('line1', value);
108
+ setOutsideDeliveryZone(false);
109
+
110
+ if (addressSearchTimer.current) clearTimeout(addressSearchTimer.current);
111
+
112
+ const query = value.trim();
113
+ if (query.length < ADDRESS_SEARCH_MIN_CHARS) {
114
+ setAddressSuggestions([]);
115
+ setShowAddressSuggestions(false);
116
+ return;
117
+ }
118
+
119
+ addressSearchTimer.current = setTimeout(async () => {
120
+ setIsSearchingAddress(true);
121
+ try {
122
+ const results = await getClient().getAddressSuggestions(query, addressSessionToken.current);
123
+ setAddressSuggestions(results);
124
+ setShowAddressSuggestions(results.length > 0);
125
+ } catch {
126
+ // Autocomplete is a soft enhancement — a failed lookup just means no
127
+ // suggestions this keystroke; the shopper can keep typing manually.
128
+ setAddressSuggestions([]);
129
+ setShowAddressSuggestions(false);
130
+ } finally {
131
+ setIsSearchingAddress(false);
132
+ }
133
+ }, ADDRESS_SEARCH_DEBOUNCE_MS);
134
+ }
135
+
136
+ async function handleSelectAddressSuggestion(suggestion: AddressSuggestion) {
137
+ setShowAddressSuggestions(false);
138
+ // The token this resolution is billed under — hand the SAME one to
139
+ // `setShippingAddress` so a server-side cache miss re-resolves within this
140
+ // autocomplete session instead of opening a new (billed) one.
141
+ const resolvingSessionToken = addressSessionToken.current;
142
+ try {
143
+ const { address, inZone } = await getClient().getAddressDetails(
144
+ suggestion.placeId,
145
+ resolvingSessionToken,
146
+ { regionId }
147
+ );
148
+ setFormData((prev) => {
149
+ const country = address.country || prev.country;
150
+ // Only accept address.region if it's one of THIS store's known
151
+ // region codes for the resolved country (destinations.regions
152
+ // the same list the dropdown below renders, backed by our own
153
+ // geo-data, not Google's). Google's region code usually lines up
154
+ // (both ultimately trace back to ISO 3166-2), but never assign a
155
+ // value the dropdown wouldn't recognize — better an unselected
156
+ // dropdown the shopper fills in than a silently-wrong one.
157
+ const validRegions = destinations?.regions[country] ?? [];
158
+ const resolvedRegionValid = validRegions.some((r) => r.code === address.region);
159
+ return {
160
+ ...prev,
161
+ line1: address.line1 || prev.line1,
162
+ city: address.city || prev.city,
163
+ region: resolvedRegionValid
164
+ ? address.region
165
+ : country !== prev.country
166
+ ? ''
167
+ : prev.region,
168
+ postalCode: address.postalCode || prev.postalCode,
169
+ country,
170
+ };
171
+ });
172
+ setOutsideDeliveryZone(!inZone);
173
+ // Note we deliberately do NOT copy address.lat/lng into the form: no
174
+ // address endpoint accepts coordinates (zone matching decides which rate
175
+ // is charged, so the server resolves them from the placeId itself).
176
+ // They're yours to use for a map pin and nothing else.
177
+ setPickedPlace({ placeId: suggestion.placeId, sessionToken: resolvingSessionToken });
178
+ } catch {
179
+ // Resolution failed keep whatever the shopper had typed/selected as
180
+ // the visible text; they can still fill in the rest manually.
181
+ setPickedPlace(null);
182
+ } finally {
183
+ // New session for the next address-entry attempt.
184
+ addressSessionToken.current =
185
+ typeof crypto !== 'undefined' ? crypto.randomUUID() : `${Date.now()}-${Math.random()}`;
186
+ setAddressSuggestions([]);
187
+ }
188
+ }
189
+
190
+ // Sync prefill data when it arrives async (e.g. from getCheckoutPrefillData)
191
+ useEffect(() => {
192
+ if (!initialValues || hasAppliedPrefill.current) return;
193
+ hasAppliedPrefill.current = true;
194
+ setFormData((prev) => ({
195
+ email: initialValues.email || prev.email,
196
+ firstName: initialValues.firstName || prev.firstName,
197
+ lastName: initialValues.lastName || prev.lastName,
198
+ line1: initialValues.line1 || prev.line1,
199
+ line2: initialValues.line2 || prev.line2 || '',
200
+ city: initialValues.city || prev.city,
201
+ region: initialValues.region || prev.region || '',
202
+ postalCode: initialValues.postalCode || prev.postalCode,
203
+ country: initialValues.country || prev.country,
204
+ phone: initialValues.phone || prev.phone || '',
205
+ notes: prev.notes || '',
206
+ }));
207
+ }, [initialValues]);
208
+
209
+ const hasCountryOptions = destinations && destinations.countries.length > 0;
210
+ const countryRegions = destinations?.regions[formData.country];
211
+ const hasRegionOptions = countryRegions && countryRegions.length > 0;
212
+
213
+ function validate(): boolean {
214
+ const newErrors: Record<string, string> = {};
215
+
216
+ if (!formData.email.trim()) {
217
+ newErrors.email = t('emailRequired');
218
+ } else if (!isValidEmail(formData.email.trim())) {
219
+ newErrors.email = t('emailInvalid');
220
+ }
221
+
222
+ if (!formData.firstName.trim()) {
223
+ newErrors.firstName = t('firstNameRequired');
224
+ }
225
+ if (!formData.lastName.trim()) {
226
+ newErrors.lastName = t('lastNameRequired');
227
+ }
228
+ if (!emailOnly) {
229
+ if (!formData.line1.trim()) {
230
+ newErrors.line1 = t('addressRequired');
231
+ }
232
+ if (!formData.city.trim()) {
233
+ newErrors.city = t('cityRequired');
234
+ }
235
+ if (!formData.postalCode.trim()) {
236
+ newErrors.postalCode = t('postalCodeRequired');
237
+ }
238
+ if (!formData.country.trim()) {
239
+ newErrors.country = t('countryRequired');
240
+ }
241
+ }
242
+ if (!privacyAccepted) {
243
+ newErrors.privacy = t('privacyRequired');
244
+ }
245
+
246
+ setErrors(newErrors);
247
+ return Object.keys(newErrors).length === 0;
248
+ }
249
+
250
+ function handleSubmit(e: React.FormEvent) {
251
+ e.preventDefault();
252
+ if (validate()) {
253
+ onSubmit(
254
+ {
255
+ ...formData,
256
+ // Both undefined when the shopper typed the address by hand or
257
+ // edited it after picking a suggestion — the server then geocodes
258
+ // the text, which is the right behaviour once the two disagree.
259
+ placeId: pickedPlace?.placeId,
260
+ placeSessionToken: pickedPlace?.sessionToken,
261
+ },
262
+ { acceptsMarketing, saveDetails: showSaveDetails && saveDetails }
263
+ );
264
+ }
265
+ }
266
+
267
+ function updateField(field: keyof SetShippingAddressDto, value: string) {
268
+ setFormData((prev) => {
269
+ const next = { ...prev, [field]: value };
270
+ // Reset region when country changes
271
+ if (field === 'country' && value !== prev.country) {
272
+ next.region = '';
273
+ }
274
+ return next;
275
+ });
276
+ // Once any address field is edited, the picked suggestion no longer
277
+ // describes what is in the form — keeping its placeId would match delivery
278
+ // zones against the address the shopper originally selected.
279
+ if (PLACE_INVALIDATING_FIELDS.has(field)) {
280
+ setPickedPlace(null);
281
+ }
282
+ if (errors[field]) {
283
+ setErrors((prev) => {
284
+ const next = { ...prev };
285
+ delete next[field];
286
+ return next;
287
+ });
288
+ }
289
+ }
290
+
291
+ const inputClass =
292
+ 'bg-background text-foreground placeholder:text-muted-foreground focus:ring-primary/20 focus:border-primary h-10 w-full rounded border px-3 text-sm focus:outline-none focus:ring-2';
293
+ const selectClass =
294
+ 'bg-background text-foreground focus:ring-primary/20 focus:border-primary h-10 w-full appearance-none rounded border px-3 text-sm focus:outline-none focus:ring-2';
295
+
296
+ return (
297
+ <form onSubmit={handleSubmit} className={cn('space-y-4', className)}>
298
+ {/* Email */}
299
+ <div>
300
+ <label htmlFor="email" className="text-foreground mb-1 block text-sm font-medium">
301
+ {t('email')} <span className="text-destructive">*</span>
302
+ </label>
303
+ <input
304
+ id="email"
305
+ type="email"
306
+ value={formData.email}
307
+ onChange={(e) => updateField('email', e.target.value)}
308
+ className={cn(inputClass, errors.email ? 'border-destructive' : 'border-border')}
309
+ placeholder="your@email.com"
310
+ />
311
+ {errors.email && <p className="text-destructive mt-1 text-xs">{errors.email}</p>}
312
+ </div>
313
+
314
+ {/* Name row */}
315
+ <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
316
+ <div>
317
+ <label htmlFor="firstName" className="text-foreground mb-1 block text-sm font-medium">
318
+ {t('firstName')} <span className="text-destructive">*</span>
319
+ </label>
320
+ <input
321
+ id="firstName"
322
+ type="text"
323
+ value={formData.firstName}
324
+ onChange={(e) => updateField('firstName', e.target.value)}
325
+ className={cn(inputClass, errors.firstName ? 'border-destructive' : 'border-border')}
326
+ />
327
+ {errors.firstName && <p className="text-destructive mt-1 text-xs">{errors.firstName}</p>}
328
+ </div>
329
+
330
+ <div>
331
+ <label htmlFor="lastName" className="text-foreground mb-1 block text-sm font-medium">
332
+ {t('lastName')} <span className="text-destructive">*</span>
333
+ </label>
334
+ <input
335
+ id="lastName"
336
+ type="text"
337
+ value={formData.lastName}
338
+ onChange={(e) => updateField('lastName', e.target.value)}
339
+ className={cn(inputClass, errors.lastName ? 'border-destructive' : 'border-border')}
340
+ />
341
+ {errors.lastName && <p className="text-destructive mt-1 text-xs">{errors.lastName}</p>}
342
+ </div>
343
+ </div>
344
+
345
+ {!emailOnly && (
346
+ <>
347
+ {/* Country + Region row */}
348
+ <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
349
+ <div>
350
+ <label htmlFor="country" className="text-foreground mb-1 block text-sm font-medium">
351
+ {t('country')} <span className="text-destructive">*</span>
352
+ </label>
353
+ {hasCountryOptions ? (
354
+ <select
355
+ id="country"
356
+ value={formData.country}
357
+ onChange={(e) => updateField('country', e.target.value)}
358
+ className={cn(
359
+ selectClass,
360
+ errors.country ? 'border-destructive' : 'border-border'
361
+ )}
362
+ >
363
+ <option value="">{t('selectCountry')}</option>
364
+ {destinations.countries.map((c) => (
365
+ <option key={c.code} value={c.code}>
366
+ {c.name}
367
+ </option>
368
+ ))}
369
+ </select>
370
+ ) : (
371
+ <input
372
+ id="country"
373
+ type="text"
374
+ value={formData.country}
375
+ onChange={(e) => updateField('country', e.target.value)}
376
+ className={cn(
377
+ inputClass,
378
+ errors.country ? 'border-destructive' : 'border-border'
379
+ )}
380
+ placeholder={t('countryPlaceholder')}
381
+ />
382
+ )}
383
+ {errors.country && <p className="text-destructive mt-1 text-xs">{errors.country}</p>}
384
+ </div>
385
+
386
+ <div>
387
+ <label htmlFor="region" className="text-foreground mb-1 block text-sm font-medium">
388
+ {t('stateRegion')}
389
+ </label>
390
+ {hasRegionOptions ? (
391
+ <select
392
+ id="region"
393
+ value={formData.region || ''}
394
+ onChange={(e) => updateField('region', e.target.value)}
395
+ className={cn(selectClass, 'border-border')}
396
+ >
397
+ <option value="">{t('selectRegion')}</option>
398
+ {countryRegions.map((r) => (
399
+ <option key={r.code} value={r.code}>
400
+ {r.name}
401
+ </option>
402
+ ))}
403
+ </select>
404
+ ) : (
405
+ <input
406
+ id="region"
407
+ type="text"
408
+ value={formData.region || ''}
409
+ onChange={(e) => updateField('region', e.target.value)}
410
+ className={cn(inputClass, 'border-border')}
411
+ />
412
+ )}
413
+ </div>
414
+ </div>
415
+
416
+ {/* Address line 1 — autocomplete typeahead */}
417
+ <div className="relative">
418
+ <label htmlFor="line1" className="text-foreground mb-1 block text-sm font-medium">
419
+ {t('address')} <span className="text-destructive">*</span>
420
+ </label>
421
+ <input
422
+ id="line1"
423
+ type="text"
424
+ autoComplete="off"
425
+ value={formData.line1}
426
+ onChange={(e) => handleLine1Change(e.target.value)}
427
+ onFocus={() => setShowAddressSuggestions(addressSuggestions.length > 0)}
428
+ onBlur={() => setTimeout(() => setShowAddressSuggestions(false), 150)}
429
+ className={cn(inputClass, errors.line1 ? 'border-destructive' : 'border-border')}
430
+ placeholder={t('streetAddress')}
431
+ />
432
+ {errors.line1 && <p className="text-destructive mt-1 text-xs">{errors.line1}</p>}
433
+
434
+ {showAddressSuggestions && addressSuggestions.length > 0 && (
435
+ <ul className="bg-background border-border absolute z-10 mt-1 max-h-60 w-full overflow-y-auto rounded border shadow-lg">
436
+ {addressSuggestions.map((suggestion) => (
437
+ <li key={suggestion.placeId}>
438
+ <button
439
+ type="button"
440
+ // onMouseDown fires before the input's onBlur, so the
441
+ // click registers before the dropdown closes.
442
+ onMouseDown={() => handleSelectAddressSuggestion(suggestion)}
443
+ className="hover:bg-muted w-full px-3 py-2 text-start text-sm"
444
+ >
445
+ {suggestion.description}
446
+ </button>
447
+ </li>
448
+ ))}
449
+ </ul>
450
+ )}
451
+ {isSearchingAddress && (
452
+ <p className="text-muted-foreground mt-1 text-xs">{t('searchingAddress')}</p>
453
+ )}
454
+ {outsideDeliveryZone && (
455
+ <p className="mt-2 rounded border border-amber-300 bg-amber-50 px-3 py-2 text-xs text-amber-800 dark:border-amber-800 dark:bg-amber-950 dark:text-amber-200">
456
+ {t('outsideDeliveryZone')}
457
+ </p>
458
+ )}
459
+ </div>
460
+
461
+ {/* Address line 2 */}
462
+ <div>
463
+ <label htmlFor="line2" className="text-foreground mb-1 block text-sm font-medium">
464
+ {t('apartmentSuite')}
465
+ </label>
466
+ <input
467
+ id="line2"
468
+ type="text"
469
+ value={formData.line2 || ''}
470
+ onChange={(e) => updateField('line2', e.target.value)}
471
+ className={cn(inputClass, 'border-border')}
472
+ placeholder={t('aptPlaceholder')}
473
+ />
474
+ </div>
475
+
476
+ {/* City + Postal code row */}
477
+ <div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
478
+ <div>
479
+ <label htmlFor="city" className="text-foreground mb-1 block text-sm font-medium">
480
+ {t('city')} <span className="text-destructive">*</span>
481
+ </label>
482
+ <input
483
+ id="city"
484
+ type="text"
485
+ value={formData.city}
486
+ onChange={(e) => updateField('city', e.target.value)}
487
+ className={cn(inputClass, errors.city ? 'border-destructive' : 'border-border')}
488
+ />
489
+ {errors.city && <p className="text-destructive mt-1 text-xs">{errors.city}</p>}
490
+ </div>
491
+
492
+ <div>
493
+ <label
494
+ htmlFor="postalCode"
495
+ className="text-foreground mb-1 block text-sm font-medium"
496
+ >
497
+ {t('postalCode')} <span className="text-destructive">*</span>
498
+ </label>
499
+ <input
500
+ id="postalCode"
501
+ type="text"
502
+ value={formData.postalCode}
503
+ onChange={(e) => updateField('postalCode', e.target.value)}
504
+ className={cn(
505
+ inputClass,
506
+ errors.postalCode ? 'border-destructive' : 'border-border'
507
+ )}
508
+ />
509
+ {errors.postalCode && (
510
+ <p className="text-destructive mt-1 text-xs">{errors.postalCode}</p>
511
+ )}
512
+ </div>
513
+ </div>
514
+
515
+ {/* Phone */}
516
+ <div>
517
+ <label htmlFor="phone" className="text-foreground mb-1 block text-sm font-medium">
518
+ {t('phone')}
519
+ </label>
520
+ <input
521
+ id="phone"
522
+ type="tel"
523
+ value={formData.phone || ''}
524
+ onChange={(e) => updateField('phone', e.target.value)}
525
+ className={cn(inputClass, 'border-border')}
526
+ placeholder={t('phonePlaceholder')}
527
+ />
528
+ </div>
529
+ </>
530
+ )}
531
+
532
+ {/* Order notes (optional) */}
533
+ <div>
534
+ <label htmlFor="orderNotes" className="text-foreground mb-1 block text-sm font-medium">
535
+ {t('orderNotes')}
536
+ </label>
537
+ <textarea
538
+ id="orderNotes"
539
+ value={formData.notes || ''}
540
+ onChange={(e) => updateField('notes', e.target.value)}
541
+ maxLength={2000}
542
+ rows={3}
543
+ className={cn(
544
+ inputClass,
545
+ 'border-border h-auto min-h-[80px] resize-y py-2 leading-relaxed'
546
+ )}
547
+ placeholder={t('orderNotesPlaceholder')}
548
+ />
549
+ </div>
550
+
551
+ {/* Privacy Policy (required) */}
552
+ <div>
553
+ <label className="flex cursor-pointer items-start gap-2">
554
+ <input
555
+ type="checkbox"
556
+ checked={privacyAccepted}
557
+ onChange={(e) => {
558
+ setPrivacyAccepted(e.target.checked);
559
+ if (e.target.checked && errors.privacy) {
560
+ setErrors((prev) => {
561
+ const next = { ...prev };
562
+ delete next.privacy;
563
+ return next;
564
+ });
565
+ }
566
+ }}
567
+ className="accent-primary mt-0.5"
568
+ />
569
+ <span className="text-muted-foreground text-sm">
570
+ {t('privacyAcceptPrefix')}{' '}
571
+ <a
572
+ href="/privacy"
573
+ target="_blank"
574
+ rel="noopener noreferrer"
575
+ className="text-primary underline underline-offset-2"
576
+ >
577
+ {t('privacyPolicyLink')}
578
+ </a>{' '}
579
+ <span className="text-destructive">*</span>
580
+ </span>
581
+ </label>
582
+ {errors.privacy && <p className="text-destructive mt-1 text-xs">{errors.privacy}</p>}
583
+ </div>
584
+
585
+ {/* Marketing consent (optional) */}
586
+ <label className="flex cursor-pointer items-start gap-2">
587
+ <input
588
+ type="checkbox"
589
+ checked={acceptsMarketing}
590
+ onChange={(e) => setAcceptsMarketing(e.target.checked)}
591
+ className="accent-primary mt-0.5"
592
+ />
593
+ <span className="text-muted-foreground text-sm">{t('acceptsMarketing')}</span>
594
+ </label>
595
+
596
+ {/* Save details for next time (logged-in users only) */}
597
+ {showSaveDetails && (
598
+ <label className="flex cursor-pointer items-start gap-2">
599
+ <input
600
+ type="checkbox"
601
+ checked={saveDetails}
602
+ onChange={(e) => setSaveDetails(e.target.checked)}
603
+ className="accent-primary mt-0.5"
604
+ />
605
+ <span className="text-muted-foreground text-sm">{t('saveDetailsForNextTime')}</span>
606
+ </label>
607
+ )}
608
+
609
+ <button
610
+ type="submit"
611
+ disabled={loading}
612
+ className="bg-primary text-primary-foreground w-full rounded px-6 py-3 text-sm font-medium transition-opacity hover:opacity-90 disabled:cursor-not-allowed disabled:opacity-60"
613
+ >
614
+ {loading ? tc('saving') : emailOnly ? t('continueToPayment') : t('continueToShipping')}
615
+ </button>
616
+ </form>
617
+ );
618
+ }