create-brainerce-store 1.50.5 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist/index.js +146 -100
- package/messages/en.json +36 -1
- package/messages/he.json +36 -1
- package/package.json +1 -1
- package/templates/nextjs/base/.claude/commands/design.md +60 -0
- package/templates/nextjs/base/.env.local.ejs +5 -0
- package/templates/nextjs/base/.eslintrc.json +57 -3
- package/templates/nextjs/base/AGENTS.md +41 -0
- package/templates/nextjs/base/AI-GUIDE.md +143 -0
- package/templates/nextjs/base/CLAUDE.md +52 -0
- package/templates/nextjs/base/TRANSLATIONS.md +1 -1
- package/templates/nextjs/base/next.config.ts +2 -2
- package/templates/nextjs/base/package.json.ejs +52 -39
- package/templates/nextjs/base/src/app/account/page.tsx +5 -5
- package/templates/nextjs/base/src/app/api/auth/logout/route.ts +1 -1
- package/templates/nextjs/base/src/app/api/auth/reset-password/route.ts +2 -2
- package/templates/nextjs/base/src/app/api/store/[...path]/route.ts +1 -1
- package/templates/nextjs/base/src/app/auth/callback/page.tsx +4 -4
- package/templates/nextjs/base/src/app/blog/[slug]/page.tsx.ejs +4 -4
- package/templates/nextjs/base/src/app/blog/page.tsx.ejs +2 -2
- package/templates/nextjs/base/src/app/cart/page.tsx +2 -173
- package/templates/nextjs/base/src/app/checkout/page.tsx +12 -11
- package/templates/nextjs/base/src/app/contact/page.tsx +3 -3
- package/templates/nextjs/base/src/app/faq/page.tsx.ejs +2 -2
- package/templates/nextjs/base/src/app/forgot-password/page.tsx +4 -4
- package/templates/nextjs/base/src/app/globals.css +36 -30
- package/templates/nextjs/base/src/app/layout.tsx.ejs +12 -12
- package/templates/nextjs/base/src/app/login/page.tsx +4 -4
- package/templates/nextjs/base/src/app/order-confirmation/page.tsx +19 -12
- package/templates/nextjs/base/src/app/page.tsx +4 -4
- package/templates/nextjs/base/src/app/pages/[slug]/page.tsx.ejs +3 -3
- package/templates/nextjs/base/src/app/payment-complete/page.tsx +1 -1
- package/templates/nextjs/base/src/app/products/[slug]/page.tsx +6 -6
- package/templates/nextjs/base/src/app/products/page.tsx +4 -623
- package/templates/nextjs/base/src/app/register/page.tsx +4 -4
- package/templates/nextjs/base/src/app/reset-password/page.tsx +5 -5
- package/templates/nextjs/base/src/app/sitemap.ts +1 -1
- package/templates/nextjs/base/src/app/verify-email/page.tsx +5 -5
- package/templates/nextjs/base/src/components/account/address-book.tsx +3 -3
- package/templates/nextjs/base/src/components/account/order-customizations.tsx +3 -3
- package/templates/nextjs/base/src/components/account/order-history.tsx +13 -5
- package/templates/nextjs/base/src/components/account/order-payment-block.tsx +2 -2
- package/templates/nextjs/base/src/components/account/order-shipping-block.tsx +2 -2
- package/templates/nextjs/base/src/components/account/order-status-timeline.tsx +2 -2
- package/templates/nextjs/base/src/components/account/profile-section.tsx +3 -3
- package/templates/nextjs/base/src/components/auth/login-form.tsx +4 -4
- package/templates/nextjs/base/src/components/auth/oauth-buttons.tsx +4 -4
- package/templates/nextjs/base/src/components/auth/register-form.tsx +4 -4
- package/templates/nextjs/base/src/components/brainerce-bot.tsx +2 -2
- package/templates/nextjs/base/src/components/checkout/checkout-form.tsx +24 -3
- package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +2 -2
- package/templates/nextjs/base/src/components/checkout/delivery-method-step.tsx +2 -2
- package/templates/nextjs/base/src/components/checkout/order-bump-card.tsx +4 -4
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +20 -16
- package/templates/nextjs/base/src/components/checkout/pickup-step.tsx +3 -3
- package/templates/nextjs/base/src/components/checkout/shipping-step.tsx +3 -3
- package/templates/nextjs/base/src/components/checkout/tax-display.tsx +3 -3
- package/templates/nextjs/base/src/components/seo/organization-json-ld.tsx +2 -2
- package/templates/nextjs/base/src/components/seo/product-json-ld.tsx +3 -3
- package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -0
- package/templates/nextjs/base/src/components/ui/badge.tsx +32 -0
- package/templates/nextjs/base/src/components/ui/button.tsx +49 -0
- package/templates/nextjs/base/src/components/ui/card.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -0
- package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -0
- package/templates/nextjs/base/src/components/ui/input.tsx +22 -0
- package/templates/nextjs/base/src/components/ui/label.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -0
- package/templates/nextjs/base/src/components/ui/select.tsx +153 -0
- package/templates/nextjs/base/src/components/ui/separator.tsx +26 -0
- package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -0
- package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -0
- package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -0
- package/templates/nextjs/base/src/core/hooks/use-cart-page.ts +58 -0
- package/templates/nextjs/base/src/core/hooks/use-home-data.ts +51 -0
- package/templates/nextjs/base/src/core/hooks/use-product-listing.ts +295 -0
- package/templates/nextjs/base/src/core/hooks/use-product-page.ts +278 -0
- package/templates/nextjs/base/src/{hooks → core/hooks}/use-search.ts +1 -1
- package/templates/nextjs/base/src/{lib → core/lib}/brainerce.ts.ejs +1 -1
- package/templates/nextjs/base/src/core/lib/product-options.ts +121 -0
- package/templates/nextjs/base/src/{lib → core/lib}/resolve-currency.ts +1 -1
- package/templates/nextjs/base/src/{lib → core/lib}/safe-redirect.ts +1 -1
- package/templates/nextjs/base/src/{lib → core/lib}/sanitize.ts.ejs +1 -1
- package/templates/nextjs/base/src/{lib → core/lib}/use-currency.ts +1 -1
- package/templates/nextjs/base/src/{providers → core/providers}/store-provider.tsx.ejs +4 -4
- package/templates/nextjs/base/src/{components → ui}/cart/cart-bundle-offer.tsx +22 -16
- package/templates/nextjs/base/src/{components → ui}/cart/cart-item.tsx +8 -14
- package/templates/nextjs/base/src/{components → ui}/cart/cart-nudges.tsx +28 -39
- package/templates/nextjs/base/src/{components → ui}/cart/cart-summary.tsx +7 -5
- package/templates/nextjs/base/src/{components → ui}/cart/cart-upgrade-banner.tsx +13 -28
- package/templates/nextjs/base/src/ui/cart/cart-view.tsx +140 -0
- package/templates/nextjs/base/src/{components → ui}/cart/coupon-input.tsx +14 -25
- package/templates/nextjs/base/src/{components → ui}/cart/free-shipping-bar.tsx +6 -7
- package/templates/nextjs/base/src/{components → ui}/cart/reservation-countdown.tsx +95 -103
- package/templates/nextjs/base/src/ui/home/discount-banner-strip.tsx +20 -0
- package/templates/nextjs/base/src/ui/home/featured-products-section.tsx +24 -0
- package/templates/nextjs/base/src/ui/home/hero-section.tsx +27 -0
- package/templates/nextjs/base/src/ui/home/home-client.tsx +29 -0
- package/templates/nextjs/base/src/{components/content → ui/layout}/announcement-bar.tsx.ejs +116 -125
- package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -0
- package/templates/nextjs/base/src/{components/content → ui/layout}/header-account.tsx +5 -20
- package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -0
- package/templates/nextjs/base/src/{components/content → ui/layout}/rich-text-block.tsx.ejs +1 -1
- package/templates/nextjs/base/src/{components/content → ui/layout}/site-footer.tsx.ejs +144 -164
- package/templates/nextjs/base/src/{components/content → ui/layout}/site-header.tsx.ejs +152 -182
- package/templates/nextjs/base/src/{components/products → ui/product}/customization-fields.tsx +457 -478
- package/templates/nextjs/base/src/{components/products → ui/product}/discount-badge.tsx +18 -22
- package/templates/nextjs/base/src/{components/products → ui/product}/frequently-bought-together.tsx +21 -33
- package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -0
- package/templates/nextjs/base/src/{components/shared → ui/product}/price-display.tsx +5 -4
- package/templates/nextjs/base/src/{components/products → ui/product}/product-card.tsx +238 -271
- package/templates/nextjs/base/src/{app/products/[slug] → ui/product}/product-client-section.tsx +455 -631
- package/templates/nextjs/base/src/{components/products → ui/product}/product-grid.tsx +3 -3
- package/templates/nextjs/base/src/ui/product/product-listing.tsx +446 -0
- package/templates/nextjs/base/src/{components/products → ui/product}/recommendation-section.tsx +102 -107
- package/templates/nextjs/base/src/{components/reviews → ui/product}/review-form.tsx +46 -45
- package/templates/nextjs/base/src/{components/reviews/reviews-section.tsx → ui/product/reviews-section.tsx.ejs} +38 -15
- package/templates/nextjs/base/src/{components/products → ui/product}/stock-badge.tsx +61 -63
- package/templates/nextjs/base/src/{components/products → ui/product}/variant-selector.tsx +3 -3
- package/templates/nextjs/base/src/{components → ui}/shared/cdn-image.tsx +1 -1
- package/templates/nextjs/base/src/{components → ui}/shared/loading-spinner.tsx +2 -2
- package/templates/nextjs/base/tailwind.config.ts +69 -30
- package/templates/nextjs/designs/atelier/app-overlay/layout.tsx.ejs +251 -0
- package/templates/nextjs/designs/atelier/globals.css +396 -0
- package/templates/nextjs/designs/atelier/messages-patch/en.json +99 -0
- package/templates/nextjs/designs/atelier/messages-patch/he.json +99 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-bundle-offer.tsx +110 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-upgrade-banner.tsx +123 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -0
- package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -0
- package/templates/nextjs/designs/atelier/ui/cart/free-shipping-bar.tsx +77 -0
- package/templates/nextjs/designs/atelier/ui/cart/reservation-countdown.tsx +89 -0
- package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -0
- package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +73 -0
- package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -0
- package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -0
- package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -0
- package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -0
- package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -0
- package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -0
- package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -0
- package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -0
- package/templates/nextjs/designs/atelier/ui/product/discount-badge.tsx +17 -0
- package/templates/nextjs/designs/atelier/ui/product/frequently-bought-together.tsx +196 -0
- package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -0
- package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -0
- package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +471 -0
- package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +47 -0
- package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -0
- package/templates/nextjs/designs/atelier/ui/product/review-form.tsx +267 -0
- package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -0
- package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -0
- package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -0
- package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -0
- package/templates/nextjs/designs/atelier/ui/shared/fly-to-cart.ts +86 -0
- package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +269 -0
- package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +64 -0
- package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -0
- package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -0
- package/templates/nextjs/themes/luxury/globals.css +405 -399
- package/templates/nextjs/themes/minimal/globals.css +36 -30
- package/templates/nextjs/themes/playful/globals.css +406 -400
- package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +89 -0
- package/templates/nextjs/ui-canvas/cart/cart-item.tsx +123 -0
- package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +27 -0
- package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +99 -0
- package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +105 -0
- package/templates/nextjs/ui-canvas/cart/cart-view.tsx +106 -0
- package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +119 -0
- package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +54 -0
- package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +81 -0
- package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +19 -0
- package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +23 -0
- package/templates/nextjs/ui-canvas/home/hero-section.tsx +21 -0
- package/templates/nextjs/ui-canvas/home/home-client.tsx +26 -0
- package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +101 -0
- package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +71 -0
- package/templates/nextjs/ui-canvas/layout/header-account.tsx +31 -0
- package/templates/nextjs/{base/src/components → ui-canvas}/layout/language-switcher.tsx.ejs +76 -70
- package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +36 -0
- package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +82 -0
- package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +119 -0
- package/templates/nextjs/ui-canvas/product/customization-fields.tsx +445 -0
- package/templates/nextjs/ui-canvas/product/discount-badge.tsx +19 -0
- package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +168 -0
- package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +165 -0
- package/templates/nextjs/ui-canvas/product/price-display.tsx +52 -0
- package/templates/nextjs/ui-canvas/product/product-card.tsx +197 -0
- package/templates/nextjs/ui-canvas/product/product-client-section.tsx +352 -0
- package/templates/nextjs/ui-canvas/product/product-grid.tsx +27 -0
- package/templates/nextjs/ui-canvas/product/product-listing.tsx +224 -0
- package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +99 -0
- package/templates/nextjs/ui-canvas/product/review-form.tsx +266 -0
- package/templates/nextjs/ui-canvas/product/reviews-section.tsx.ejs +96 -0
- package/templates/nextjs/ui-canvas/product/stock-badge.tsx +45 -0
- package/templates/nextjs/ui-canvas/product/variant-selector.tsx +212 -0
- package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +31 -0
- package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +27 -0
- package/templates/nextjs/base/src/app/home-client.tsx +0 -98
- package/templates/nextjs/base/src/components/content/faq-section.tsx.ejs +0 -103
- package/templates/nextjs/base/src/components/products/modifier-group-selector.tsx +0 -238
- /package/templates/nextjs/base/src/{lib → core/lib}/auth.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/csrf.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/image-hosts.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/navigation.tsx.ejs +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/nonce.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/sanitize-html.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/seo.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/store-info.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/translations.ts.ejs +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/utils.ts +0 -0
- /package/templates/nextjs/base/src/{lib → core/lib}/validation.ts +0 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
useProductListing,
|
|
5
|
+
sortOptions,
|
|
6
|
+
type CategoryNode,
|
|
7
|
+
} from '@/core/hooks/use-product-listing';
|
|
8
|
+
import { ProductGrid } from '@/ui/product/product-grid';
|
|
9
|
+
import { LoadingSpinner } from '@/ui/shared/loading-spinner';
|
|
10
|
+
import { SelectMenu, type SelectMenuOption } from '@/ui/shared/select-menu';
|
|
11
|
+
import { useTranslations } from '@/core/lib/translations';
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Flatten the category tree into indented options so nested categories stay
|
|
15
|
+
* selectable in the styled dropdown.
|
|
16
|
+
*/
|
|
17
|
+
function flattenCategories(items: CategoryNode[], depth = 0): SelectMenuOption[] {
|
|
18
|
+
return items.flatMap((node) => [
|
|
19
|
+
{ value: node.id, label: `${'— '.repeat(depth)}${node.name}` },
|
|
20
|
+
...flattenCategories(node.children, depth + 1),
|
|
21
|
+
]);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/** Shimmer skeleton card shown while the grid loads — no layout jump. */
|
|
25
|
+
function SkeletonGrid() {
|
|
26
|
+
return (
|
|
27
|
+
<div
|
|
28
|
+
className="grid grid-cols-2 gap-3 sm:gap-5 lg:grid-cols-4 lg:gap-6"
|
|
29
|
+
role="status"
|
|
30
|
+
aria-label="Loading"
|
|
31
|
+
>
|
|
32
|
+
{Array.from({ length: 8 }).map((_, i) => (
|
|
33
|
+
<div key={i} className="card overflow-hidden">
|
|
34
|
+
<div className="aspect-square animate-pulse bg-secondary" />
|
|
35
|
+
<div className="space-y-2.5 p-4">
|
|
36
|
+
<div className="h-4 w-3/4 animate-pulse rounded bg-secondary" />
|
|
37
|
+
<div className="h-4 w-1/3 animate-pulse rounded bg-secondary" />
|
|
38
|
+
<div className="mt-2 h-9 w-full animate-pulse rounded-full bg-secondary" />
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
))}
|
|
42
|
+
</div>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Product listing page: page header band, filter/sort toolbar, grid,
|
|
48
|
+
* load-more. All data and URL-state behavior comes from `useProductListing`;
|
|
49
|
+
* this component is presentation only. Must be rendered inside `<Suspense>`
|
|
50
|
+
* (URL params).
|
|
51
|
+
*/
|
|
52
|
+
export function ProductListing() {
|
|
53
|
+
const t = useTranslations('products');
|
|
54
|
+
const tc = useTranslations('common');
|
|
55
|
+
|
|
56
|
+
const {
|
|
57
|
+
products,
|
|
58
|
+
loading,
|
|
59
|
+
loadingMore,
|
|
60
|
+
page,
|
|
61
|
+
totalPages,
|
|
62
|
+
total,
|
|
63
|
+
categories,
|
|
64
|
+
brands,
|
|
65
|
+
tags,
|
|
66
|
+
metafieldDefs,
|
|
67
|
+
searchQuery,
|
|
68
|
+
categoryId,
|
|
69
|
+
brandId,
|
|
70
|
+
tagId,
|
|
71
|
+
sortIndex,
|
|
72
|
+
handleLoadMore,
|
|
73
|
+
updateParam,
|
|
74
|
+
handleCategorySelect,
|
|
75
|
+
getSelectedMetafieldValues,
|
|
76
|
+
setMetafieldValue,
|
|
77
|
+
} = useProductListing();
|
|
78
|
+
|
|
79
|
+
return (
|
|
80
|
+
<section>
|
|
81
|
+
{/* Page header band */}
|
|
82
|
+
<header className="wash-hero relative overflow-hidden">
|
|
83
|
+
<div className="container-page py-10 text-center lg:py-14">
|
|
84
|
+
<h1 className="text-4xl sm:text-5xl">
|
|
85
|
+
{searchQuery ? `${t('searchPrefix')} "${searchQuery}"` : t('allProducts')}
|
|
86
|
+
</h1>
|
|
87
|
+
<p className="mx-auto mt-3 max-w-xl text-muted-foreground">
|
|
88
|
+
{searchQuery ? (
|
|
89
|
+
!loading && (
|
|
90
|
+
<>
|
|
91
|
+
{total} {total === 1 ? tc('product') : tc('products')} {tc('found')}
|
|
92
|
+
</>
|
|
93
|
+
)
|
|
94
|
+
) : (
|
|
95
|
+
t('listingSubtitle')
|
|
96
|
+
)}
|
|
97
|
+
</p>
|
|
98
|
+
</div>
|
|
99
|
+
</header>
|
|
100
|
+
|
|
101
|
+
<div className="container-page pb-16 pt-8 lg:pb-20">
|
|
102
|
+
{/* Filters + sort toolbar */}
|
|
103
|
+
<div className="mb-8 flex flex-wrap items-center gap-3">
|
|
104
|
+
{/* Category filter — nested tree flattened into a select */}
|
|
105
|
+
{categories.length > 0 && (
|
|
106
|
+
<SelectMenu
|
|
107
|
+
value={categoryId}
|
|
108
|
+
options={[{ value: '', label: tc('all') }, ...flattenCategories(categories)]}
|
|
109
|
+
onChange={(v) => (v ? handleCategorySelect(v) : updateParam('category', ''))}
|
|
110
|
+
ariaLabel={t('filtersLabel')}
|
|
111
|
+
/>
|
|
112
|
+
)}
|
|
113
|
+
|
|
114
|
+
{/* Brand Filter */}
|
|
115
|
+
{brands.length > 0 && (
|
|
116
|
+
<SelectMenu
|
|
117
|
+
value={brandId}
|
|
118
|
+
options={[
|
|
119
|
+
{ value: '', label: t('allBrands') },
|
|
120
|
+
...brands.map((b) => ({ value: b.id, label: b.name })),
|
|
121
|
+
]}
|
|
122
|
+
onChange={(v) => updateParam('brand', v)}
|
|
123
|
+
ariaLabel={t('allBrands')}
|
|
124
|
+
/>
|
|
125
|
+
)}
|
|
126
|
+
|
|
127
|
+
{/* Tag Filter */}
|
|
128
|
+
{tags.length > 0 && (
|
|
129
|
+
<SelectMenu
|
|
130
|
+
value={tagId}
|
|
131
|
+
options={[
|
|
132
|
+
{ value: '', label: t('allTags') },
|
|
133
|
+
...tags.map((tg) => ({ value: tg.id, label: tg.name })),
|
|
134
|
+
]}
|
|
135
|
+
onChange={(v) => updateParam('tag', v)}
|
|
136
|
+
ariaLabel={t('allTags')}
|
|
137
|
+
/>
|
|
138
|
+
)}
|
|
139
|
+
|
|
140
|
+
{/* Custom-field (metafield) facets — rendered per definition type.
|
|
141
|
+
Only definitions flagged `filterable: true` and published to
|
|
142
|
+
this sales channel reach this list. */}
|
|
143
|
+
{metafieldDefs.map((def) => {
|
|
144
|
+
const selected = getSelectedMetafieldValues(def.key);
|
|
145
|
+
|
|
146
|
+
if (def.type === 'BOOLEAN') {
|
|
147
|
+
const isOn = selected.includes('true');
|
|
148
|
+
return (
|
|
149
|
+
<label
|
|
150
|
+
key={def.id}
|
|
151
|
+
className="inline-flex h-10 cursor-pointer items-center gap-2 rounded-full border bg-background px-4 text-sm font-medium"
|
|
152
|
+
>
|
|
153
|
+
<input
|
|
154
|
+
type="checkbox"
|
|
155
|
+
checked={isOn}
|
|
156
|
+
onChange={(e) => setMetafieldValue(def.key, e.target.checked ? ['true'] : [])}
|
|
157
|
+
className="h-4 w-4 accent-primary"
|
|
158
|
+
/>
|
|
159
|
+
{def.name}
|
|
160
|
+
</label>
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
if (def.type === 'SELECT') {
|
|
165
|
+
return (
|
|
166
|
+
<SelectMenu
|
|
167
|
+
key={def.id}
|
|
168
|
+
value={selected[0] || ''}
|
|
169
|
+
options={[
|
|
170
|
+
{ value: '', label: `${tc('all')} ${def.name}` },
|
|
171
|
+
...(def.enumValues || []).map((v) => ({
|
|
172
|
+
value: v.value,
|
|
173
|
+
label: v.label || v.value,
|
|
174
|
+
})),
|
|
175
|
+
]}
|
|
176
|
+
onChange={(v) => setMetafieldValue(def.key, v ? [v] : [])}
|
|
177
|
+
ariaLabel={def.name}
|
|
178
|
+
/>
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// MULTI_SELECT — checkbox toggles. Each click adds/removes one value.
|
|
183
|
+
return (
|
|
184
|
+
<fieldset
|
|
185
|
+
key={def.id}
|
|
186
|
+
className="inline-flex flex-wrap items-center gap-2 rounded-full border bg-background px-4 py-2"
|
|
187
|
+
>
|
|
188
|
+
<legend className="sr-only">{def.name}</legend>
|
|
189
|
+
<span className="text-sm font-medium text-muted-foreground">{def.name}:</span>
|
|
190
|
+
{(def.enumValues || []).map((v) => {
|
|
191
|
+
const active = selected.includes(v.value);
|
|
192
|
+
return (
|
|
193
|
+
<label
|
|
194
|
+
key={v.value}
|
|
195
|
+
className="inline-flex cursor-pointer items-center gap-1.5 text-sm"
|
|
196
|
+
>
|
|
197
|
+
<input
|
|
198
|
+
type="checkbox"
|
|
199
|
+
checked={active}
|
|
200
|
+
onChange={() =>
|
|
201
|
+
setMetafieldValue(
|
|
202
|
+
def.key,
|
|
203
|
+
active ? selected.filter((s) => s !== v.value) : [...selected, v.value]
|
|
204
|
+
)
|
|
205
|
+
}
|
|
206
|
+
className="h-4 w-4 accent-primary"
|
|
207
|
+
/>
|
|
208
|
+
{v.label || v.value}
|
|
209
|
+
</label>
|
|
210
|
+
);
|
|
211
|
+
})}
|
|
212
|
+
</fieldset>
|
|
213
|
+
);
|
|
214
|
+
})}
|
|
215
|
+
|
|
216
|
+
{/* Result count + sort — pushed to the end of the toolbar */}
|
|
217
|
+
<div className="ms-auto flex items-center gap-3">
|
|
218
|
+
{!loading && (
|
|
219
|
+
<p className="hidden text-sm text-muted-foreground sm:block">
|
|
220
|
+
{total} {total === 1 ? tc('product') : tc('products')}
|
|
221
|
+
</p>
|
|
222
|
+
)}
|
|
223
|
+
<SelectMenu
|
|
224
|
+
value={String(sortIndex)}
|
|
225
|
+
options={sortOptions.map((opt, idx) => ({
|
|
226
|
+
value: String(idx),
|
|
227
|
+
label: t(opt.labelKey),
|
|
228
|
+
}))}
|
|
229
|
+
onChange={(v) => updateParam('sort', v)}
|
|
230
|
+
ariaLabel={tc('sortBy')}
|
|
231
|
+
/>
|
|
232
|
+
</div>
|
|
233
|
+
</div>
|
|
234
|
+
|
|
235
|
+
{/* Products Grid */}
|
|
236
|
+
{loading ? (
|
|
237
|
+
<SkeletonGrid />
|
|
238
|
+
) : (
|
|
239
|
+
<>
|
|
240
|
+
<ProductGrid products={products} />
|
|
241
|
+
|
|
242
|
+
{/* Load More */}
|
|
243
|
+
{page < totalPages && (
|
|
244
|
+
<div className="mt-10 flex justify-center">
|
|
245
|
+
<button
|
|
246
|
+
type="button"
|
|
247
|
+
onClick={handleLoadMore}
|
|
248
|
+
disabled={loadingMore}
|
|
249
|
+
className="btn-outline btn-md min-w-44"
|
|
250
|
+
>
|
|
251
|
+
{loadingMore ? <LoadingSpinner size="sm" /> : t('loadMore')}
|
|
252
|
+
</button>
|
|
253
|
+
</div>
|
|
254
|
+
)}
|
|
255
|
+
</>
|
|
256
|
+
)}
|
|
257
|
+
</div>
|
|
258
|
+
</section>
|
|
259
|
+
);
|
|
260
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { Link } from '@/core/lib/navigation';
|
|
4
|
+
import { CdnImage as Image } from '@/ui/shared/cdn-image';
|
|
5
|
+
import type { ProductRecommendation } from 'brainerce';
|
|
6
|
+
import { PriceDisplay } from '@/ui/product/price-display';
|
|
7
|
+
import { cn } from '@/core/lib/utils';
|
|
8
|
+
|
|
9
|
+
interface RecommendationCardProps {
|
|
10
|
+
item: ProductRecommendation;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function RecommendationCard({ item, className }: RecommendationCardProps) {
|
|
15
|
+
const firstImage = item.images?.[0];
|
|
16
|
+
const imageUrl = typeof firstImage === 'string' ? firstImage : firstImage?.url || null;
|
|
17
|
+
const slug = item.slug || item.id;
|
|
18
|
+
const basePrice = parseFloat(item.basePrice);
|
|
19
|
+
const salePrice = item.salePrice ? parseFloat(item.salePrice) : undefined;
|
|
20
|
+
const isOnSale = salePrice != null && salePrice < basePrice;
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<Link
|
|
24
|
+
href={`/products/${slug}`}
|
|
25
|
+
className={cn('group card card-hover block overflow-hidden', className)}
|
|
26
|
+
>
|
|
27
|
+
{/* `relative` + `aspect-square` are layout-critical for next/image fill */}
|
|
28
|
+
<span className="relative block aspect-square overflow-hidden bg-secondary">
|
|
29
|
+
{imageUrl ? (
|
|
30
|
+
<Image
|
|
31
|
+
src={imageUrl}
|
|
32
|
+
alt={item.name}
|
|
33
|
+
fill
|
|
34
|
+
sizes="(max-width: 640px) 50vw, (max-width: 1024px) 33vw, 20vw"
|
|
35
|
+
className="img-zoom object-cover"
|
|
36
|
+
/>
|
|
37
|
+
) : null}
|
|
38
|
+
</span>
|
|
39
|
+
<span className="block space-y-1 p-4">
|
|
40
|
+
<span className="block text-sm font-semibold leading-snug text-foreground group-hover:text-primary">
|
|
41
|
+
{item.name}
|
|
42
|
+
</span>
|
|
43
|
+
<PriceDisplay price={basePrice} salePrice={isOnSale ? salePrice : undefined} size="sm" />
|
|
44
|
+
</span>
|
|
45
|
+
</Link>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
interface RecommendationSectionProps {
|
|
50
|
+
title: string;
|
|
51
|
+
items: ProductRecommendation[];
|
|
52
|
+
className?: string;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/** Recommendation strip on the product page (upsells / related). */
|
|
56
|
+
export function RecommendationSection({ title, items, className }: RecommendationSectionProps) {
|
|
57
|
+
if (items.length === 0) return null;
|
|
58
|
+
|
|
59
|
+
return (
|
|
60
|
+
<section className={cn('border-t pt-10', className)}>
|
|
61
|
+
<h2 className="mb-6 text-2xl">{title}</h2>
|
|
62
|
+
<div className="grid grid-cols-2 gap-3 sm:gap-5 lg:grid-cols-4">
|
|
63
|
+
{items.slice(0, 4).map((item) => (
|
|
64
|
+
<RecommendationCard key={item.id} item={item} />
|
|
65
|
+
))}
|
|
66
|
+
</div>
|
|
67
|
+
</section>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface CartRecommendationSectionProps {
|
|
72
|
+
title: string;
|
|
73
|
+
items: ProductRecommendation[];
|
|
74
|
+
className?: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/** Cross-sell strip on the cart page ("you might also need"). */
|
|
78
|
+
export function CartRecommendationSection({
|
|
79
|
+
title,
|
|
80
|
+
items,
|
|
81
|
+
className,
|
|
82
|
+
}: CartRecommendationSectionProps) {
|
|
83
|
+
if (items.length === 0) return null;
|
|
84
|
+
|
|
85
|
+
return (
|
|
86
|
+
<section className={cn('border-t pt-10', className)}>
|
|
87
|
+
<h2 className="mb-6 text-2xl">{title}</h2>
|
|
88
|
+
<div className="grid grid-cols-2 gap-3 sm:gap-5 lg:grid-cols-4">
|
|
89
|
+
{items.slice(0, 4).map((item) => (
|
|
90
|
+
<RecommendationCard key={item.id} item={item} />
|
|
91
|
+
))}
|
|
92
|
+
</div>
|
|
93
|
+
</section>
|
|
94
|
+
);
|
|
95
|
+
}
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState } from 'react';
|
|
4
|
+
import { getClient } from '@/core/lib/brainerce';
|
|
5
|
+
import { checkAuthStatus } from '@/core/lib/auth';
|
|
6
|
+
import { useTranslations } from '@/core/lib/translations';
|
|
7
|
+
import type { MyProductReview, ProductReview } from 'brainerce';
|
|
8
|
+
import { IconStar } from '@/ui/shared/icons';
|
|
9
|
+
|
|
10
|
+
interface ReviewFormProps {
|
|
11
|
+
productId: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
type Stage =
|
|
15
|
+
| { kind: 'loading' }
|
|
16
|
+
| { kind: 'signed_out' }
|
|
17
|
+
| { kind: 'not_eligible'; reason: MyProductReview['reason'] }
|
|
18
|
+
| { kind: 'submit' }
|
|
19
|
+
| { kind: 'edit'; review: ProductReview };
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Single component that decides which UI to render for a customer on a PDP:
|
|
23
|
+
* - Loading while we check auth state and eligibility
|
|
24
|
+
* - Signed out -> sign-in CTA
|
|
25
|
+
* - Signed in but not eligible -> "purchase this product to review"
|
|
26
|
+
* - Eligible without review -> submit form
|
|
27
|
+
* - Eligible with existing review -> edit/delete form (rating + body prefilled)
|
|
28
|
+
*
|
|
29
|
+
* DESIGN ME — review submit/edit form; auth via checkAuthStatus(), eligibility
|
|
30
|
+
* + existing review via getClient().getMyProductReview(productId).
|
|
31
|
+
*/
|
|
32
|
+
export function ReviewForm({ productId }: ReviewFormProps) {
|
|
33
|
+
const [stage, setStage] = useState<Stage>({ kind: 'loading' });
|
|
34
|
+
const t = useTranslations('reviews');
|
|
35
|
+
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
let cancelled = false;
|
|
38
|
+
async function load() {
|
|
39
|
+
const auth = await checkAuthStatus();
|
|
40
|
+
if (cancelled) return;
|
|
41
|
+
if (!auth.isLoggedIn) {
|
|
42
|
+
setStage({ kind: 'signed_out' });
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
try {
|
|
46
|
+
const me = await getClient().getMyProductReview(productId);
|
|
47
|
+
if (cancelled) return;
|
|
48
|
+
if (!me.eligible) {
|
|
49
|
+
setStage({ kind: 'not_eligible', reason: me.reason });
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
if (me.myReview) {
|
|
53
|
+
setStage({ kind: 'edit', review: me.myReview });
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
setStage({ kind: 'submit' });
|
|
57
|
+
} catch {
|
|
58
|
+
if (!cancelled) setStage({ kind: 'not_eligible', reason: 'product_not_found' });
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
void load();
|
|
62
|
+
return () => {
|
|
63
|
+
cancelled = true;
|
|
64
|
+
};
|
|
65
|
+
}, [productId]);
|
|
66
|
+
|
|
67
|
+
if (stage.kind === 'loading') {
|
|
68
|
+
return <p role="status" className="text-sm text-muted-foreground">{t('loading')}</p>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (stage.kind === 'signed_out') {
|
|
72
|
+
return (
|
|
73
|
+
<p className="text-sm text-muted-foreground">
|
|
74
|
+
<a href="/account/login" className="font-semibold text-primary underline underline-offset-2">{t('signIn')}</a> {t('signInSuffix')}
|
|
75
|
+
</p>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (stage.kind === 'not_eligible') {
|
|
80
|
+
return <NotEligibleMessage reason={stage.reason} />;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (stage.kind === 'edit') {
|
|
84
|
+
return (
|
|
85
|
+
<EditReviewBlock
|
|
86
|
+
productId={productId}
|
|
87
|
+
initial={stage.review}
|
|
88
|
+
onDeleted={() => setStage({ kind: 'submit' })}
|
|
89
|
+
/>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return <SubmitReviewBlock productId={productId} />;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function NotEligibleMessage({ reason }: { reason: MyProductReview['reason'] }) {
|
|
97
|
+
const t = useTranslations('reviews');
|
|
98
|
+
let message: string;
|
|
99
|
+
switch (reason) {
|
|
100
|
+
case 'no_eligible_order':
|
|
101
|
+
message = t('onlyPurchasers');
|
|
102
|
+
break;
|
|
103
|
+
case 'reviews_disabled':
|
|
104
|
+
message = t('reviewsDisabled');
|
|
105
|
+
break;
|
|
106
|
+
default:
|
|
107
|
+
message = t('cannotReview');
|
|
108
|
+
}
|
|
109
|
+
return <p className="text-sm text-muted-foreground">{message}</p>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
function SubmitReviewBlock({ productId }: { productId: string }) {
|
|
113
|
+
return <ReviewEditor productId={productId} mode="create" initialRating={5} initialBody="" />;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function EditReviewBlock({
|
|
117
|
+
productId,
|
|
118
|
+
initial,
|
|
119
|
+
onDeleted,
|
|
120
|
+
}: {
|
|
121
|
+
productId: string;
|
|
122
|
+
initial: ProductReview;
|
|
123
|
+
onDeleted: () => void;
|
|
124
|
+
}) {
|
|
125
|
+
const [deleting, setDeleting] = useState(false);
|
|
126
|
+
const t = useTranslations('reviews');
|
|
127
|
+
const [deleteError, setDeleteError] = useState<string | null>(null);
|
|
128
|
+
|
|
129
|
+
async function handleDelete() {
|
|
130
|
+
if (!window.confirm(t('confirmDelete'))) return;
|
|
131
|
+
setDeleting(true);
|
|
132
|
+
setDeleteError(null);
|
|
133
|
+
try {
|
|
134
|
+
await getClient().deleteMyProductReview(productId);
|
|
135
|
+
onDeleted();
|
|
136
|
+
window.location.reload();
|
|
137
|
+
} catch {
|
|
138
|
+
setDeleteError(t('deleteFailed'));
|
|
139
|
+
} finally {
|
|
140
|
+
setDeleting(false);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return (
|
|
145
|
+
<div>
|
|
146
|
+
<ReviewEditor
|
|
147
|
+
productId={productId}
|
|
148
|
+
mode="edit"
|
|
149
|
+
initialRating={initial.rating}
|
|
150
|
+
initialBody={initial.body ?? ''}
|
|
151
|
+
/>
|
|
152
|
+
<div className="mt-4 flex flex-wrap items-center gap-2 border-t pt-4">
|
|
153
|
+
<p className="text-xs text-muted-foreground">{t('startOver')}</p>
|
|
154
|
+
<button type="button" onClick={handleDelete} disabled={deleting} className="text-xs font-semibold text-destructive underline underline-offset-2 disabled:opacity-50">
|
|
155
|
+
{deleting ? t('deleting') : t('deleteReview')}
|
|
156
|
+
</button>
|
|
157
|
+
</div>
|
|
158
|
+
{deleteError && <p role="alert" className="mt-2 text-sm font-medium text-destructive">{deleteError}</p>}
|
|
159
|
+
</div>
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* The actual form. Same shape for create and edit — only the API method
|
|
165
|
+
* and the heading differ. Optimistic UX: success state + page reload to
|
|
166
|
+
* let the server-rendered reviews list pick up the change.
|
|
167
|
+
*/
|
|
168
|
+
function ReviewEditor({
|
|
169
|
+
productId,
|
|
170
|
+
mode,
|
|
171
|
+
initialRating,
|
|
172
|
+
initialBody,
|
|
173
|
+
}: {
|
|
174
|
+
productId: string;
|
|
175
|
+
mode: 'create' | 'edit';
|
|
176
|
+
initialRating: number;
|
|
177
|
+
initialBody: string;
|
|
178
|
+
}) {
|
|
179
|
+
const [rating, setRating] = useState(initialRating);
|
|
180
|
+
const t = useTranslations('reviews');
|
|
181
|
+
const [body, setBody] = useState(initialBody);
|
|
182
|
+
const [submitting, setSubmitting] = useState(false);
|
|
183
|
+
const [error, setError] = useState<string | null>(null);
|
|
184
|
+
const [success, setSuccess] = useState(false);
|
|
185
|
+
|
|
186
|
+
async function handleSubmit(event: React.FormEvent<HTMLFormElement>) {
|
|
187
|
+
event.preventDefault();
|
|
188
|
+
setError(null);
|
|
189
|
+
setSubmitting(true);
|
|
190
|
+
try {
|
|
191
|
+
const client = getClient();
|
|
192
|
+
const input = { rating, body: body.trim() || undefined };
|
|
193
|
+
if (mode === 'edit') {
|
|
194
|
+
await client.updateMyProductReview(productId, input);
|
|
195
|
+
} else {
|
|
196
|
+
await client.submitProductReview(productId, input);
|
|
197
|
+
}
|
|
198
|
+
setSuccess(true);
|
|
199
|
+
setTimeout(() => window.location.reload(), 1200);
|
|
200
|
+
} catch (err) {
|
|
201
|
+
const status = (err as { status?: number })?.status;
|
|
202
|
+
if (status === 409) {
|
|
203
|
+
setError(t('alreadySubmitted'));
|
|
204
|
+
} else if (status === 403) {
|
|
205
|
+
setError(t('onlyPurchasers'));
|
|
206
|
+
} else if (status === 429) {
|
|
207
|
+
setError(t('tooMany'));
|
|
208
|
+
} else {
|
|
209
|
+
setError(mode === 'edit' ? t('updateFailed') : t('submitFailed'));
|
|
210
|
+
}
|
|
211
|
+
} finally {
|
|
212
|
+
setSubmitting(false);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
if (success) {
|
|
217
|
+
return <p role="status" className="text-sm font-semibold text-primary">{mode === 'edit' ? t('thanksUpdated') : t('thanksSubmitted')}</p>;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
return (
|
|
221
|
+
<form onSubmit={handleSubmit} className="space-y-4">
|
|
222
|
+
<h3 className="font-sans text-base font-semibold">{mode === 'edit' ? t('editYourReview') : t('writeReview')}</h3>
|
|
223
|
+
|
|
224
|
+
<fieldset>
|
|
225
|
+
<legend className="mb-1.5 text-sm font-medium">{t('yourRating')}</legend>
|
|
226
|
+
<div className="inline-flex gap-1" role="radiogroup" aria-label={t('starRating')}>
|
|
227
|
+
{[1, 2, 3, 4, 5].map((n) => (
|
|
228
|
+
<button
|
|
229
|
+
key={n}
|
|
230
|
+
type="button"
|
|
231
|
+
role="radio"
|
|
232
|
+
aria-checked={rating === n}
|
|
233
|
+
onClick={() => setRating(n)}
|
|
234
|
+
className={n <= rating ? 'text-primary' : 'text-border hover:text-primary/50'}
|
|
235
|
+
>
|
|
236
|
+
<IconStar size={24} filled={n <= rating} />
|
|
237
|
+
<span className="sr-only">{n}</span>
|
|
238
|
+
</button>
|
|
239
|
+
))}
|
|
240
|
+
</div>
|
|
241
|
+
</fieldset>
|
|
242
|
+
|
|
243
|
+
<label className="block text-sm font-medium">
|
|
244
|
+
{t('yourReview')} <span className="font-normal text-muted-foreground">({t('optionalField')})</span>
|
|
245
|
+
<textarea
|
|
246
|
+
value={body}
|
|
247
|
+
onChange={(event) => setBody(event.target.value)}
|
|
248
|
+
maxLength={5000}
|
|
249
|
+
rows={4}
|
|
250
|
+
className="input mt-1.5 h-auto min-h-24 py-2.5"
|
|
251
|
+
/>
|
|
252
|
+
</label>
|
|
253
|
+
|
|
254
|
+
{error && <p role="alert" className="text-sm font-medium text-destructive">{error}</p>}
|
|
255
|
+
|
|
256
|
+
<button type="submit" disabled={submitting} className="btn-primary btn-sm">
|
|
257
|
+
{submitting
|
|
258
|
+
? mode === 'edit'
|
|
259
|
+
? t('saving')
|
|
260
|
+
: t('submittingBtn')
|
|
261
|
+
: mode === 'edit'
|
|
262
|
+
? t('saveChanges')
|
|
263
|
+
: t('submitReview')}
|
|
264
|
+
</button>
|
|
265
|
+
</form>
|
|
266
|
+
);
|
|
267
|
+
}
|