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.
- package/dist/index.js +37 -4
- package/messages/en.json +30 -1
- package/messages/he.json +30 -1
- package/package.json +1 -1
- package/templates/nextjs/base/AGENTS.md.ejs +63 -16
- package/templates/nextjs/base/AI-GUIDE.md +17 -4
- package/templates/nextjs/base/CLAUDE.md.ejs +67 -20
- package/templates/nextjs/base/TRANSLATIONS.md +207 -207
- package/templates/nextjs/base/src/app/account/page.tsx +168 -122
- package/templates/nextjs/base/src/app/category/[slug]/page.tsx +10 -1
- package/templates/nextjs/base/src/app/checkout/page.tsx +1179 -1074
- package/templates/nextjs/base/src/app/layout.tsx.ejs +48 -4
- package/templates/nextjs/base/src/app/order-confirmation/page.tsx +98 -3
- package/templates/nextjs/base/src/app/products/[slug]/page.tsx +14 -2
- package/templates/nextjs/base/src/components/account/loyalty-panel.tsx +226 -0
- package/templates/nextjs/base/src/components/account/order-history.tsx +422 -371
- package/templates/nextjs/base/src/components/account/order-status-timeline.tsx +85 -85
- package/templates/nextjs/base/src/components/account/saved-payment-methods.tsx +104 -0
- package/templates/nextjs/base/src/components/checkout/checkout-form.tsx +618 -612
- package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +354 -306
- package/templates/nextjs/base/src/components/checkout/tax-display.tsx +141 -74
- package/templates/nextjs/base/src/core/hooks/use-cart-page.ts +218 -127
- package/templates/nextjs/base/src/core/hooks/use-home-data.ts +63 -51
- package/templates/nextjs/base/src/core/hooks/use-product-listing.ts +379 -295
- package/templates/nextjs/base/src/core/hooks/use-product-page.ts +33 -1
- package/templates/nextjs/base/src/core/lib/capabilities.ts +65 -0
- package/templates/nextjs/base/src/core/lib/display-price.ts +139 -0
- package/templates/nextjs/base/src/core/lib/region.server.ts +112 -0
- package/templates/nextjs/base/src/core/lib/region.ts +112 -0
- package/templates/nextjs/base/src/core/lib/store-info.ts +19 -0
- package/templates/nextjs/base/src/core/providers/store-provider.tsx.ejs +423 -243
- package/templates/nextjs/base/src/ui/cart/cart-item.tsx +174 -164
- package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +109 -110
- package/templates/nextjs/base/src/ui/cart/cart-view.tsx +219 -176
- package/templates/nextjs/base/src/ui/cart/gift-card-input.tsx +191 -0
- package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +137 -137
- package/templates/nextjs/base/src/ui/cart/tax-estimate-line.tsx +108 -0
- package/templates/nextjs/base/src/ui/home/home-client.tsx +27 -29
- package/templates/nextjs/base/src/ui/layout/header-search.tsx +249 -0
- package/templates/nextjs/base/src/ui/layout/region-switcher.tsx +59 -0
- package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +171 -152
- package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +197 -191
- package/templates/nextjs/base/src/ui/product/product-card.tsx +25 -52
- package/templates/nextjs/base/src/ui/product/product-client-section.tsx +12 -3
- package/templates/nextjs/base/src/ui/product/product-listing.tsx +460 -446
- package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +108 -102
- package/templates/nextjs/base/src/ui/product/review-form.tsx +33 -11
- package/templates/nextjs/base/src/ui/product/stock-badge.tsx +15 -3
- package/templates/nextjs/designs/atelier/app-overlay/layout.tsx.ejs +48 -4
- package/templates/nextjs/designs/atelier/messages-patch/en.json +21 -25
- package/templates/nextjs/designs/atelier/messages-patch/he.json +21 -25
- package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +177 -181
- package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +168 -158
- package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +106 -107
- package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +229 -184
- package/templates/nextjs/designs/atelier/ui/cart/reservation-countdown.tsx +131 -131
- package/templates/nextjs/designs/atelier/ui/cart/tax-estimate-line.tsx +108 -0
- package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +10 -1
- package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +178 -174
- package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +4 -6
- package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +150 -78
- package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +79 -46
- package/templates/nextjs/designs/atelier/ui/layout/header-search.tsx +264 -0
- package/templates/nextjs/designs/atelier/ui/layout/region-switcher.tsx +44 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +5 -0
- package/templates/nextjs/designs/atelier/ui/product/frequently-bought-together.tsx +202 -196
- package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +27 -52
- package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +12 -3
- package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +332 -260
- package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +101 -95
- package/templates/nextjs/designs/atelier/ui/product/review-form.tsx +30 -10
- package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +17 -2
- package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +9 -0
- package/templates/nextjs/ui-canvas/cart/cart-item.tsx +137 -137
- package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +98 -99
- package/templates/nextjs/ui-canvas/cart/cart-view.tsx +140 -140
- package/templates/nextjs/ui-canvas/cart/gift-card-input.tsx +142 -0
- package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +124 -124
- package/templates/nextjs/ui-canvas/cart/tax-estimate-line.tsx +104 -0
- package/templates/nextjs/ui-canvas/home/home-client.tsx +24 -26
- package/templates/nextjs/ui-canvas/layout/region-switcher.tsx +51 -0
- package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +3 -0
- package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +174 -168
- package/templates/nextjs/ui-canvas/product/product-card.tsx +9 -51
- package/templates/nextjs/ui-canvas/product/product-client-section.tsx +5 -3
- package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +105 -99
- package/templates/nextjs/ui-canvas/product/review-form.tsx +9 -1
- 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
|
-
|
|
11
|
-
//
|
|
12
|
-
//
|
|
13
|
-
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
//
|
|
18
|
-
//
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
const [
|
|
67
|
-
const [
|
|
68
|
-
const [
|
|
69
|
-
const
|
|
70
|
-
const
|
|
71
|
-
const
|
|
72
|
-
|
|
73
|
-
//
|
|
74
|
-
//
|
|
75
|
-
|
|
76
|
-
const
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
//
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
//
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
setAddressSuggestions(
|
|
124
|
-
setShowAddressSuggestions(
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
//
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
//
|
|
174
|
-
//
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
if (!formData.
|
|
217
|
-
newErrors.
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
if (!
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
if (!formData.
|
|
230
|
-
newErrors.
|
|
231
|
-
}
|
|
232
|
-
if (!formData.
|
|
233
|
-
newErrors.
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
</
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
{
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
{
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
</
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
<
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
)}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
<
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
<
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
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
|
+
}
|