@base44/app-plugin-commerce 0.1.19 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -22
- package/base44/functions/commerce/admin-reports/entry.ts +1 -1
- package/base44/functions/commerce/seed-store/entry.ts +34 -0
- package/base44/functions/commerce/seed-store/seed-catalog.ts +39 -5
- package/base44/shared/commerce/card-payment.stripe.ts +178 -0
- package/base44/shared/commerce/scan.ts +1 -1
- package/base44/shared/commerce/sequence.ts +1 -1
- package/package.json +1 -1
- package/scripts/install.js +24 -14
- package/skills/commerce/SKILL.md +107 -51
- package/skills/commerce/docs/api-admin.md +89 -28
- package/skills/commerce/docs/api-storefront.md +113 -126
- package/skills/commerce/docs/entities.md +137 -0
- package/skills/commerce/install/01-install.md +101 -0
- package/skills/commerce/install/02-storefront.md +188 -0
- package/skills/commerce/install/03-data.md +162 -0
- package/skills/commerce/references/admin-product-form.md +10 -0
- package/skills/commerce/references/catalog-rendering.md +110 -0
- package/skills/commerce/references/emails.md +49 -12
- package/skills/commerce/references/guest-access-security.md +18 -5
- package/skills/commerce/references/online-payments.md +50 -149
- package/skills/commerce/references/operations.md +52 -0
- package/skills/commerce/references/reviews.md +31 -16
- package/skills/commerce/references/shipping-and-tax.md +110 -0
- package/skills/commerce/references/store-admin-agent.md +21 -0
- package/skills/commerce/references/store-settings.md +49 -0
- package/src/commerce/admin/README.md +2 -2
- package/src/commerce/admin/layout/AuthGuard.jsx +1 -1
- package/src/commerce/admin/pages/settings/InventorySettings.jsx +1 -1
- package/src/commerce/storefront/StorefrontProvider.jsx +106 -20
- package/src/commerce/storefront/blocks/AddToCartBlock.jsx +86 -0
- package/src/commerce/storefront/blocks/AddressFieldsBlock.jsx +96 -0
- package/src/commerce/storefront/blocks/BreadcrumbsBlock.jsx +52 -0
- package/src/commerce/storefront/blocks/CartLinesBlock.jsx +98 -0
- package/src/commerce/storefront/blocks/CheckoutBlock.jsx +247 -0
- package/src/commerce/storefront/blocks/CouponFieldBlock.jsx +84 -0
- package/src/commerce/storefront/blocks/OrderReceivedBlock.jsx +129 -0
- package/src/commerce/storefront/blocks/ProductGalleryBlock.jsx +66 -0
- package/src/commerce/storefront/blocks/ProductSpecsBlock.jsx +33 -0
- package/src/commerce/storefront/blocks/ProductStripBlock.jsx +55 -0
- package/src/commerce/storefront/blocks/QuantityStepper.jsx +62 -0
- package/src/commerce/storefront/blocks/ReviewsBlock.jsx +191 -0
- package/src/commerce/storefront/blocks/TotalsBlock.jsx +42 -0
- package/src/commerce/storefront/blocks/VariantSelectorBlock.jsx +81 -0
- package/src/commerce/storefront/blocks/index.js +44 -0
- package/src/commerce/storefront/index.js +59 -21
- package/src/commerce/storefront/internal/useAsyncData.js +86 -0
- package/src/commerce/storefront/pickers.jsx +20 -5
- package/src/commerce/storefront/useAddressForm.js +96 -0
- package/src/commerce/storefront/useCartLine.js +184 -0
- package/src/commerce/storefront/useCheckout.jsx +38 -11
- package/src/commerce/storefront/useProduct.js +227 -0
- package/src/commerce/storefront/useProductGallery.js +74 -0
- package/src/commerce/storefront/useProductList.js +153 -0
- package/src/commerce/storefront/useProductPrice.js +58 -0
- package/src/commerce/storefront/useProductReviews.js +242 -0
- package/src/commerce/storefront/useStorefrontSeo.js +204 -0
- package/src/commerce/storefront/useTotalsLines.js +109 -0
- package/src/commerce/utils/address-spec.js +89 -0
- package/src/commerce/utils/images.js +45 -0
- package/src/commerce/utils/index.js +18 -6
- package/src/commerce/utils/price.js +95 -0
- package/src/commerce/utils/storefront.js +47 -3
- package/src/commerce/utils/totals.js +110 -0
- package/src/commerce/utils/variants.js +10 -2
- package/skills/commerce/installation-guidelines.md +0 -93
- package/skills/commerce/post-installation.md +0 -495
- package/skills/commerce/references/limits-and-performance.md +0 -16
- package/skills/commerce/references/media-and-downloads.md +0 -4
- package/skills/commerce/references/product-render.md +0 -89
- package/skills/commerce/references/scheduled-work.md +0 -19
- package/skills/commerce/references/storefront-product-page.md +0 -83
- package/skills/commerce/references/webhooks.md +0 -10
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useAddressForm } from "../useAddressForm";
|
|
3
|
+
import { useCheckoutContext } from "../useCheckout";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* The checkout address form, rendered from the field spec — so `state` is
|
|
7
|
+
* collected (rates and taxes match on country + state), the country select
|
|
8
|
+
* never maps a null list, and browser autofill works.
|
|
9
|
+
*
|
|
10
|
+
* <AddressFieldsBlock /> // billing
|
|
11
|
+
* <AddressFieldsBlock which="shipping" /> // a separate delivery address
|
|
12
|
+
*
|
|
13
|
+
* Needs a `<CheckoutProvider>` above it (`<CheckoutBlock/>` supplies one).
|
|
14
|
+
*
|
|
15
|
+
* @param {{which?: "billing"|"shipping", className?: string, legend?: string,
|
|
16
|
+
* includeCompany?: boolean, includePhone?: boolean}} props
|
|
17
|
+
*/
|
|
18
|
+
export function AddressFieldsBlock({
|
|
19
|
+
which = "billing",
|
|
20
|
+
className = "",
|
|
21
|
+
legend,
|
|
22
|
+
includeCompany = false,
|
|
23
|
+
includePhone = true,
|
|
24
|
+
}) {
|
|
25
|
+
const { fields, set, countriesLoading } = useAddressForm(which, { includeCompany, includePhone });
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
<fieldset data-commerce={`address-${which}`} className={className}>
|
|
29
|
+
{legend && <legend className="mb-3 text-xs uppercase tracking-wide text-muted-foreground">{legend}</legend>}
|
|
30
|
+
<div className="grid grid-cols-2 gap-3">
|
|
31
|
+
{fields.map((f) => (
|
|
32
|
+
<label
|
|
33
|
+
key={f.key}
|
|
34
|
+
className={f.colSpan === 2 ? "col-span-2" : "col-span-2 sm:col-span-1"}
|
|
35
|
+
>
|
|
36
|
+
<span className="block text-xs text-muted-foreground">
|
|
37
|
+
{f.label}
|
|
38
|
+
{f.required && <span aria-hidden> *</span>}
|
|
39
|
+
</span>
|
|
40
|
+
{f.type === "select" ? (
|
|
41
|
+
<select
|
|
42
|
+
data-commerce={`address-field-${f.key}`}
|
|
43
|
+
value={f.value}
|
|
44
|
+
required={f.required}
|
|
45
|
+
onChange={(e) => set(f.key, e.target.value)}
|
|
46
|
+
autoComplete={f.autoComplete}
|
|
47
|
+
disabled={f.key === "country" && countriesLoading}
|
|
48
|
+
className="mt-1 w-full border border-border bg-transparent px-3 py-2 text-sm"
|
|
49
|
+
>
|
|
50
|
+
<option value="">
|
|
51
|
+
{f.key === "country" && countriesLoading ? "Loading…" : `Select ${f.label.toLowerCase()}`}
|
|
52
|
+
</option>
|
|
53
|
+
{f.options.map((o) => (
|
|
54
|
+
<option key={o.value} value={o.value}>
|
|
55
|
+
{o.label}
|
|
56
|
+
</option>
|
|
57
|
+
))}
|
|
58
|
+
</select>
|
|
59
|
+
) : (
|
|
60
|
+
<input
|
|
61
|
+
data-commerce={`address-field-${f.key}`}
|
|
62
|
+
type={f.type}
|
|
63
|
+
value={f.value}
|
|
64
|
+
required={f.required}
|
|
65
|
+
onChange={(e) => set(f.key, e.target.value)}
|
|
66
|
+
autoComplete={f.autoComplete}
|
|
67
|
+
className="mt-1 w-full border border-border bg-transparent px-3 py-2 text-sm"
|
|
68
|
+
/>
|
|
69
|
+
)}
|
|
70
|
+
{f.error && (
|
|
71
|
+
<span role="alert" className="mt-1 block text-xs text-destructive">
|
|
72
|
+
{f.error}
|
|
73
|
+
</span>
|
|
74
|
+
)}
|
|
75
|
+
</label>
|
|
76
|
+
))}
|
|
77
|
+
</div>
|
|
78
|
+
{which === "billing" && <ShipToDifferentToggle />}
|
|
79
|
+
</fieldset>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function ShipToDifferentToggle() {
|
|
84
|
+
const { shipToDifferent, setShipToDifferent } = useCheckoutContext();
|
|
85
|
+
return (
|
|
86
|
+
<label className="mt-3 flex items-center gap-2 text-sm">
|
|
87
|
+
<input
|
|
88
|
+
type="checkbox"
|
|
89
|
+
data-commerce="ship-to-different"
|
|
90
|
+
checked={shipToDifferent}
|
|
91
|
+
onChange={(e) => setShipToDifferent(e.target.checked)}
|
|
92
|
+
/>
|
|
93
|
+
Deliver to a different address
|
|
94
|
+
</label>
|
|
95
|
+
);
|
|
96
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Category breadcrumbs for a product page.
|
|
5
|
+
*
|
|
6
|
+
* <BreadcrumbsBlock categories={categories} current={product.name} />
|
|
7
|
+
*
|
|
8
|
+
* Ribbons are deliberately NOT breadcrumbs — they are labels ("Best Seller"),
|
|
9
|
+
* not places in the catalog. Pass `renderLink` to use your router's `<Link>`
|
|
10
|
+
* instead of a plain anchor.
|
|
11
|
+
*
|
|
12
|
+
* @param {{categories?: Array<object>, current?: string, className?: string,
|
|
13
|
+
* homeLabel?: string, homeHref?: string, categoryHref?: (c: object) => string,
|
|
14
|
+
* renderLink?: (o: {href: string, label: string}) => React.ReactNode}} props
|
|
15
|
+
*/
|
|
16
|
+
export function BreadcrumbsBlock({
|
|
17
|
+
categories = [],
|
|
18
|
+
current,
|
|
19
|
+
className = "",
|
|
20
|
+
homeLabel = "Home",
|
|
21
|
+
homeHref = "/",
|
|
22
|
+
categoryHref = (c) => `/collection?category_id=${c.id}`,
|
|
23
|
+
renderLink,
|
|
24
|
+
}) {
|
|
25
|
+
const crumbs = [
|
|
26
|
+
{ href: homeHref, label: homeLabel },
|
|
27
|
+
...categories.map((c) => ({ href: categoryHref(c), label: c.name })),
|
|
28
|
+
];
|
|
29
|
+
|
|
30
|
+
const link = ({ href, label }) =>
|
|
31
|
+
renderLink ? (
|
|
32
|
+
renderLink({ href, label })
|
|
33
|
+
) : (
|
|
34
|
+
<a href={href} className="underline-offset-2 hover:underline">
|
|
35
|
+
{label}
|
|
36
|
+
</a>
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<nav data-commerce="breadcrumbs" aria-label="Breadcrumb" className={`text-xs text-muted-foreground ${className}`}>
|
|
41
|
+
<ol className="flex flex-wrap items-center gap-1.5">
|
|
42
|
+
{crumbs.map((c) => (
|
|
43
|
+
<li key={`${c.href}-${c.label}`} className="flex items-center gap-1.5">
|
|
44
|
+
{link(c)}
|
|
45
|
+
<span aria-hidden>/</span>
|
|
46
|
+
</li>
|
|
47
|
+
))}
|
|
48
|
+
{current && <li aria-current="page">{current}</li>}
|
|
49
|
+
</ol>
|
|
50
|
+
</nav>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useCart } from "../StorefrontProvider";
|
|
3
|
+
import { useFormatMoney } from "../StorefrontProvider";
|
|
4
|
+
import { QuantityStepper } from "./QuantityStepper";
|
|
5
|
+
import { CouponFieldBlock } from "./CouponFieldBlock";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The bag's line items: image, name, variant label, quantity stepper, line
|
|
9
|
+
* total — plus the notices that say what auto-dropped and why, and the coupon
|
|
10
|
+
* field.
|
|
11
|
+
*
|
|
12
|
+
* <CartLinesBlock />
|
|
13
|
+
*
|
|
14
|
+
* Branches on the cart's `status`, so it never flashes an empty state while the
|
|
15
|
+
* cart is still loading. Pass `slots.empty` / `slots.loading` to brand those
|
|
16
|
+
* two states, or `renderLine` to take over a row entirely.
|
|
17
|
+
*
|
|
18
|
+
* **The coupon field is on by default** (`showCoupon`). A store whose codes have
|
|
19
|
+
* nowhere to be typed cannot honour its own discounts, and that has been the
|
|
20
|
+
* most-repeated omission in hand-built storefronts — so the default is the safe
|
|
21
|
+
* one. Turn it off for a store that has no coupons and doesn't want the field,
|
|
22
|
+
* or when your checkout carries the only one.
|
|
23
|
+
*
|
|
24
|
+
* @param {{className?: string, showNotices?: boolean, showCoupon?: boolean,
|
|
25
|
+
* slots?: {empty?: React.ReactNode, loading?: React.ReactNode},
|
|
26
|
+
* renderLine?: (line: object) => React.ReactNode}} props
|
|
27
|
+
*/
|
|
28
|
+
export function CartLinesBlock({
|
|
29
|
+
className = "",
|
|
30
|
+
showNotices = true,
|
|
31
|
+
showCoupon = true,
|
|
32
|
+
slots = {},
|
|
33
|
+
renderLine,
|
|
34
|
+
}) {
|
|
35
|
+
const { status, lines, notices } = useCart();
|
|
36
|
+
const formatMoney = useFormatMoney();
|
|
37
|
+
|
|
38
|
+
if (status === "loading") {
|
|
39
|
+
return slots.loading ?? <p data-commerce="cart-loading" className="text-sm text-muted-foreground">Loading your bag…</p>;
|
|
40
|
+
}
|
|
41
|
+
if (status === "empty") {
|
|
42
|
+
return slots.empty ?? <p data-commerce="cart-empty" className="text-sm text-muted-foreground">Your bag is empty.</p>;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<div data-commerce="cart-lines" className={className}>
|
|
47
|
+
{showNotices && notices.length > 0 && (
|
|
48
|
+
<ul data-commerce="cart-notices" className="mb-4 space-y-1">
|
|
49
|
+
{notices.map((n, i) => (
|
|
50
|
+
<li key={`${n.code}-${i}`} role="status" className="text-xs text-muted-foreground">
|
|
51
|
+
{n.message}
|
|
52
|
+
</li>
|
|
53
|
+
))}
|
|
54
|
+
</ul>
|
|
55
|
+
)}
|
|
56
|
+
|
|
57
|
+
<ul className="divide-y divide-border">
|
|
58
|
+
{lines.map((line) =>
|
|
59
|
+
renderLine ? (
|
|
60
|
+
<React.Fragment key={line.item_key}>{renderLine(line)}</React.Fragment>
|
|
61
|
+
) : (
|
|
62
|
+
<li
|
|
63
|
+
key={line.item_key}
|
|
64
|
+
data-commerce="line-item"
|
|
65
|
+
className="grid grid-cols-[64px_1fr_auto] items-start gap-4 py-4"
|
|
66
|
+
>
|
|
67
|
+
{line.image ? (
|
|
68
|
+
<img
|
|
69
|
+
src={line.image.src}
|
|
70
|
+
alt={line.image.alt}
|
|
71
|
+
className="aspect-square w-16 object-cover"
|
|
72
|
+
loading="lazy"
|
|
73
|
+
/>
|
|
74
|
+
) : (
|
|
75
|
+
<div aria-hidden className="aspect-square w-16 bg-muted" />
|
|
76
|
+
)}
|
|
77
|
+
<div className="min-w-0">
|
|
78
|
+
<p data-commerce="line-name" className="truncate text-sm">{line.name}</p>
|
|
79
|
+
{line.attributesLabel && (
|
|
80
|
+
<p data-commerce="line-attributes" className="mt-0.5 text-xs text-muted-foreground">
|
|
81
|
+
{line.attributesLabel}
|
|
82
|
+
</p>
|
|
83
|
+
)}
|
|
84
|
+
{!line.purchasable && line.unavailableReason && (
|
|
85
|
+
<p role="alert" className="mt-1 text-xs text-destructive">{line.unavailableReason}</p>
|
|
86
|
+
)}
|
|
87
|
+
<QuantityStepper line={line} className="mt-2" />
|
|
88
|
+
</div>
|
|
89
|
+
<p data-commerce="line-total" className="text-sm">{formatMoney(line.total)}</p>
|
|
90
|
+
</li>
|
|
91
|
+
),
|
|
92
|
+
)}
|
|
93
|
+
</ul>
|
|
94
|
+
|
|
95
|
+
{showCoupon && <CouponFieldBlock className="mt-6" />}
|
|
96
|
+
</div>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CheckoutProvider, useCheckoutContext } from "../useCheckout";
|
|
3
|
+
import { PaymentMethodPicker, ShippingMethodPicker } from "../pickers";
|
|
4
|
+
import { useCart, useFormatMoney } from "../StorefrontProvider";
|
|
5
|
+
import { useCheckoutBlockers } from "../useTotalsLines";
|
|
6
|
+
import { AddressFieldsBlock } from "./AddressFieldsBlock";
|
|
7
|
+
import { CouponFieldBlock } from "./CouponFieldBlock";
|
|
8
|
+
import { TotalsBlock } from "./TotalsBlock";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* The whole checkout: address → delivery → payment → summary → place order.
|
|
12
|
+
* It supplies its own `<CheckoutProvider>`, so this is a complete page body:
|
|
13
|
+
*
|
|
14
|
+
* export default function Checkout() {
|
|
15
|
+
* return <main className="mx-auto max-w-3xl px-6 py-16">
|
|
16
|
+
* <h1 className="font-heading text-5xl">Checkout</h1>
|
|
17
|
+
* <CheckoutBlock />
|
|
18
|
+
* </main>;
|
|
19
|
+
* }
|
|
20
|
+
*
|
|
21
|
+
* Correct with zero props in a default-seeded store (one manual gateway, one
|
|
22
|
+
* shipping rate), and every branch a checkout must handle is already wired:
|
|
23
|
+
* shipping recalculates from the address, a single shipping/payment option
|
|
24
|
+
* reads as selected, a store with no enabled gateway says so instead of
|
|
25
|
+
* rendering a dead button, the place-order gate explains itself, and an offline
|
|
26
|
+
* order's payment instructions are shown on the confirmation.
|
|
27
|
+
*
|
|
28
|
+
* Restyle it with `className`, replace one region with `slots`, or drop to the
|
|
29
|
+
* hooks (`useCheckout`, `useAddressForm`, the pickers, `useTotalsLines`) when
|
|
30
|
+
* the design needs different structure — this component is nothing but a
|
|
31
|
+
* composition of them.
|
|
32
|
+
*
|
|
33
|
+
* @param {{className?: string, showCoupon?: boolean, options?: object,
|
|
34
|
+
* onPlaced?: (result: object) => void, orderReceivedPath?: string,
|
|
35
|
+
* slots?: {address?, shipping?, payment?, summary?, submit?, empty?}}} props
|
|
36
|
+
* `onPlaced` overrides the default post-order behaviour (navigating to
|
|
37
|
+
* `orderReceivedPath` with the order's id + key, where `<OrderReceivedBlock/>`
|
|
38
|
+
* renders the confirmation and any payment instructions).
|
|
39
|
+
*/
|
|
40
|
+
export function CheckoutBlock({
|
|
41
|
+
className = "",
|
|
42
|
+
showCoupon = true,
|
|
43
|
+
options,
|
|
44
|
+
onPlaced,
|
|
45
|
+
orderReceivedPath = "/order-received",
|
|
46
|
+
slots = {},
|
|
47
|
+
}) {
|
|
48
|
+
return (
|
|
49
|
+
<CheckoutProvider options={options}>
|
|
50
|
+
<CheckoutBody
|
|
51
|
+
className={className}
|
|
52
|
+
showCoupon={showCoupon}
|
|
53
|
+
onPlaced={onPlaced}
|
|
54
|
+
orderReceivedPath={orderReceivedPath}
|
|
55
|
+
slots={slots}
|
|
56
|
+
/>
|
|
57
|
+
</CheckoutProvider>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function CheckoutBody({ className, showCoupon, onPlaced, orderReceivedPath, slots }) {
|
|
62
|
+
const { status } = useCart();
|
|
63
|
+
const checkout = useCheckoutContext();
|
|
64
|
+
|
|
65
|
+
if (status === "loading") {
|
|
66
|
+
return <p data-commerce="checkout-loading" className="text-sm text-muted-foreground">Loading…</p>;
|
|
67
|
+
}
|
|
68
|
+
if (status === "empty") {
|
|
69
|
+
return (
|
|
70
|
+
slots.empty ?? (
|
|
71
|
+
<p data-commerce="checkout-empty" className="text-sm text-muted-foreground">
|
|
72
|
+
Your bag is empty — add something before checking out.
|
|
73
|
+
</p>
|
|
74
|
+
)
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return (
|
|
79
|
+
<div data-commerce="checkout" className={`grid gap-10 md:grid-cols-[1fr_360px] ${className}`}>
|
|
80
|
+
<div className="space-y-8">
|
|
81
|
+
{slots.address ?? <AddressFieldsBlock legend="Your details" />}
|
|
82
|
+
{checkout.shipToDifferent && <AddressFieldsBlock which="shipping" legend="Delivery address" />}
|
|
83
|
+
{slots.shipping ?? <ShippingStep />}
|
|
84
|
+
{slots.payment ?? <PaymentStep />}
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<aside className="space-y-6">
|
|
88
|
+
{slots.summary ?? (
|
|
89
|
+
<>
|
|
90
|
+
{showCoupon && <CouponFieldBlock />}
|
|
91
|
+
<TotalsBlock />
|
|
92
|
+
</>
|
|
93
|
+
)}
|
|
94
|
+
{slots.submit ?? <PlaceOrder onPlaced={onPlaced} orderReceivedPath={orderReceivedPath} />}
|
|
95
|
+
</aside>
|
|
96
|
+
</div>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function ShippingStep() {
|
|
101
|
+
const formatMoney = useFormatMoney();
|
|
102
|
+
return (
|
|
103
|
+
<ShippingMethodPicker>
|
|
104
|
+
{({ status, methods, chosen, choose, mustChoose, single, syncing }) => (
|
|
105
|
+
<fieldset data-commerce="shipping-step" className={syncing ? "opacity-60" : ""}>
|
|
106
|
+
<legend className="mb-3 text-xs uppercase tracking-wide text-muted-foreground">Delivery</legend>
|
|
107
|
+
|
|
108
|
+
{status === "missing_address" && (
|
|
109
|
+
<p className="text-sm text-muted-foreground">
|
|
110
|
+
Delivery options appear once your address is entered.
|
|
111
|
+
</p>
|
|
112
|
+
)}
|
|
113
|
+
|
|
114
|
+
{status === "none_available" && (
|
|
115
|
+
<p role="alert" className="text-sm text-destructive">
|
|
116
|
+
We don't deliver to that address yet.
|
|
117
|
+
</p>
|
|
118
|
+
)}
|
|
119
|
+
|
|
120
|
+
{mustChoose &&
|
|
121
|
+
methods.map((m) => (
|
|
122
|
+
<label key={m.id} data-commerce="shipping-method" data-commerce-cost={m.cost} className="flex items-center justify-between gap-4 py-1.5 text-sm">
|
|
123
|
+
<span className="flex items-center gap-2">
|
|
124
|
+
<input
|
|
125
|
+
type="radio"
|
|
126
|
+
name="shipping_method"
|
|
127
|
+
value={m.id}
|
|
128
|
+
checked={chosen?.id === m.id}
|
|
129
|
+
onChange={() => choose(m.id)}
|
|
130
|
+
/>
|
|
131
|
+
{m.title}
|
|
132
|
+
</span>
|
|
133
|
+
<span>{formatMoney(m.cost)}</span>
|
|
134
|
+
</label>
|
|
135
|
+
))}
|
|
136
|
+
|
|
137
|
+
{!mustChoose && chosen && (
|
|
138
|
+
<p data-commerce="shipping-method" data-commerce-cost={chosen.cost} className="flex justify-between gap-4 text-sm">
|
|
139
|
+
<span>{chosen.title}</span>
|
|
140
|
+
<span>{formatMoney(chosen.cost)}</span>
|
|
141
|
+
</p>
|
|
142
|
+
)}
|
|
143
|
+
{single && chosen && (
|
|
144
|
+
<p className="mt-1 text-xs text-muted-foreground">The only option for this address.</p>
|
|
145
|
+
)}
|
|
146
|
+
</fieldset>
|
|
147
|
+
)}
|
|
148
|
+
</ShippingMethodPicker>
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
function PaymentStep() {
|
|
153
|
+
return (
|
|
154
|
+
<PaymentMethodPicker>
|
|
155
|
+
{({ gateways, value, select, selected, single }) => (
|
|
156
|
+
<fieldset data-commerce="payment-step">
|
|
157
|
+
<legend className="mb-3 text-xs uppercase tracking-wide text-muted-foreground">Payment</legend>
|
|
158
|
+
|
|
159
|
+
{gateways.length === 0 && (
|
|
160
|
+
<p role="alert" className="text-sm text-destructive">
|
|
161
|
+
No payment method is available right now — please contact us to complete your order.
|
|
162
|
+
</p>
|
|
163
|
+
)}
|
|
164
|
+
|
|
165
|
+
{!single &&
|
|
166
|
+
gateways.map((g) => (
|
|
167
|
+
<label key={g.slug} data-commerce="payment-method" className="block py-1.5 text-sm">
|
|
168
|
+
<span className="flex items-center gap-2">
|
|
169
|
+
<input
|
|
170
|
+
type="radio"
|
|
171
|
+
name="payment_method"
|
|
172
|
+
value={g.slug}
|
|
173
|
+
checked={value === g.slug}
|
|
174
|
+
onChange={() => select(g.slug)}
|
|
175
|
+
/>
|
|
176
|
+
{g.title}
|
|
177
|
+
</span>
|
|
178
|
+
{g.description && (
|
|
179
|
+
<span className="ml-6 block text-xs text-muted-foreground">{g.description}</span>
|
|
180
|
+
)}
|
|
181
|
+
</label>
|
|
182
|
+
))}
|
|
183
|
+
|
|
184
|
+
{single && selected && (
|
|
185
|
+
<div data-commerce="payment-method" className="text-sm">
|
|
186
|
+
<p>{selected.title}</p>
|
|
187
|
+
{selected.description && (
|
|
188
|
+
<p className="mt-0.5 text-xs text-muted-foreground">{selected.description}</p>
|
|
189
|
+
)}
|
|
190
|
+
</div>
|
|
191
|
+
)}
|
|
192
|
+
</fieldset>
|
|
193
|
+
)}
|
|
194
|
+
</PaymentMethodPicker>
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
function PlaceOrder({ onPlaced, orderReceivedPath }) {
|
|
199
|
+
const { canPlaceOrder, placing, placeOrder, orderError } = useCheckoutContext();
|
|
200
|
+
const blockers = useCheckoutBlockers();
|
|
201
|
+
|
|
202
|
+
const submit = async () => {
|
|
203
|
+
const res = await placeOrder();
|
|
204
|
+
if (!res.ok) return;
|
|
205
|
+
if (onPlaced) return onPlaced(res.result);
|
|
206
|
+
// An online gateway has already redirected. Everything else lands on the
|
|
207
|
+
// return page, which is also where a manual order's payment instructions
|
|
208
|
+
// are rendered — so the offline default confirms properly too.
|
|
209
|
+
if (!res.result.payment && typeof window !== "undefined") {
|
|
210
|
+
const q = new URLSearchParams({
|
|
211
|
+
order_id: res.result.order_id,
|
|
212
|
+
order_key: res.result.order_key,
|
|
213
|
+
});
|
|
214
|
+
window.location.assign(`${orderReceivedPath}?${q}`);
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
return (
|
|
219
|
+
<div>
|
|
220
|
+
<button
|
|
221
|
+
type="button"
|
|
222
|
+
data-commerce="place-order"
|
|
223
|
+
onClick={submit}
|
|
224
|
+
disabled={!canPlaceOrder || placing}
|
|
225
|
+
className="w-full bg-primary px-6 py-3 text-sm text-primary-foreground disabled:opacity-50"
|
|
226
|
+
>
|
|
227
|
+
{placing ? "Placing your order…" : "Place order"}
|
|
228
|
+
</button>
|
|
229
|
+
|
|
230
|
+
{orderError && (
|
|
231
|
+
<p data-commerce="order-error" role="alert" className="mt-2 text-sm text-destructive">
|
|
232
|
+
{orderError.message}
|
|
233
|
+
</p>
|
|
234
|
+
)}
|
|
235
|
+
|
|
236
|
+
{!canPlaceOrder && blockers.length > 0 && (
|
|
237
|
+
<ul data-commerce="checkout-blockers" className="mt-2 space-y-1">
|
|
238
|
+
{blockers.map((b) => (
|
|
239
|
+
<li key={b.code} className="text-xs text-muted-foreground">
|
|
240
|
+
{b.message}
|
|
241
|
+
</li>
|
|
242
|
+
))}
|
|
243
|
+
</ul>
|
|
244
|
+
)}
|
|
245
|
+
</div>
|
|
246
|
+
);
|
|
247
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useCoupon } from "../useCartLine";
|
|
3
|
+
import { useFormatMoney } from "../StorefrontProvider";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* The coupon field. **If the store has any coupons, this has to exist
|
|
7
|
+
* somewhere** — in the cart or the checkout — because codes are admin-only
|
|
8
|
+
* data a customer can only redeem by typing them. A store that seeds coupons
|
|
9
|
+
* and ships no field advertises discounts it cannot honour.
|
|
10
|
+
*
|
|
11
|
+
* <CouponFieldBlock />
|
|
12
|
+
*
|
|
13
|
+
* @param {{className?: string, label?: string, placeholder?: string,
|
|
14
|
+
* applyLabel?: string}} props
|
|
15
|
+
*/
|
|
16
|
+
export function CouponFieldBlock({
|
|
17
|
+
className = "",
|
|
18
|
+
label = "Discount code",
|
|
19
|
+
placeholder = "Enter code",
|
|
20
|
+
applyLabel = "Apply",
|
|
21
|
+
}) {
|
|
22
|
+
const c = useCoupon();
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<div data-commerce="coupon" className={className}>
|
|
26
|
+
<form
|
|
27
|
+
onSubmit={(e) => {
|
|
28
|
+
e.preventDefault();
|
|
29
|
+
c.apply();
|
|
30
|
+
}}
|
|
31
|
+
className="flex items-end gap-2"
|
|
32
|
+
>
|
|
33
|
+
<label className="flex-1">
|
|
34
|
+
<span className="block text-xs uppercase tracking-wide text-muted-foreground">{label}</span>
|
|
35
|
+
<input
|
|
36
|
+
data-commerce="coupon-input"
|
|
37
|
+
value={c.code}
|
|
38
|
+
onChange={(e) => c.setCode(e.target.value)}
|
|
39
|
+
placeholder={placeholder}
|
|
40
|
+
autoComplete="off"
|
|
41
|
+
className="mt-1 w-full border border-border bg-transparent px-3 py-2 text-sm"
|
|
42
|
+
/>
|
|
43
|
+
</label>
|
|
44
|
+
<button
|
|
45
|
+
type="submit"
|
|
46
|
+
data-commerce="coupon-apply"
|
|
47
|
+
disabled={c.applying}
|
|
48
|
+
className="border border-border px-4 py-2 text-sm disabled:opacity-50"
|
|
49
|
+
>
|
|
50
|
+
{c.applying ? "Applying…" : applyLabel}
|
|
51
|
+
</button>
|
|
52
|
+
</form>
|
|
53
|
+
|
|
54
|
+
{c.error && (
|
|
55
|
+
<p data-commerce="coupon-error" role="alert" className="mt-1 text-xs text-destructive">
|
|
56
|
+
{c.error.message}
|
|
57
|
+
</p>
|
|
58
|
+
)}
|
|
59
|
+
|
|
60
|
+
{c.applied.length > 0 && (
|
|
61
|
+
<ul data-commerce="coupon-applied" className="mt-2 space-y-1">
|
|
62
|
+
{c.applied.map((a) => (
|
|
63
|
+
<AppliedCoupon key={a.code} coupon={a} onRemove={() => c.remove(a.code)} />
|
|
64
|
+
))}
|
|
65
|
+
</ul>
|
|
66
|
+
)}
|
|
67
|
+
</div>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function AppliedCoupon({ coupon, onRemove }) {
|
|
72
|
+
const formatMoney = useFormatMoney();
|
|
73
|
+
return (
|
|
74
|
+
<li className="flex items-center justify-between gap-3 text-sm">
|
|
75
|
+
<span>
|
|
76
|
+
{coupon.code}
|
|
77
|
+
{coupon.freeShipping ? " · free shipping" : coupon.discount ? ` · −${formatMoney(coupon.discount)}` : ""}
|
|
78
|
+
</span>
|
|
79
|
+
<button type="button" onClick={onRemove} className="text-xs text-muted-foreground underline">
|
|
80
|
+
Remove
|
|
81
|
+
</button>
|
|
82
|
+
</li>
|
|
83
|
+
);
|
|
84
|
+
}
|