@medusajs/draft-order 2.11.3-preview-20251031150158 → 2.11.3-preview-20251031180155
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/.medusa/server/src/admin/index.js +484 -483
- package/.medusa/server/src/admin/index.mjs +482 -482
- package/package.json +54 -23
|
@@ -14,14 +14,15 @@ const reactHookForm = require("react-hook-form");
|
|
|
14
14
|
const radixUi = require("radix-ui");
|
|
15
15
|
const react = require("@ariakit/react");
|
|
16
16
|
const matchSorter = require("match-sorter");
|
|
17
|
-
const debounce = require("lodash
|
|
17
|
+
const debounce = require("lodash.debounce");
|
|
18
18
|
const Primitive = require("@uiw/react-json-view");
|
|
19
|
-
const
|
|
19
|
+
const isEqual = require("lodash.isequal");
|
|
20
20
|
const _interopDefault = (e) => e && e.__esModule ? e : { default: e };
|
|
21
21
|
const React__default = /* @__PURE__ */ _interopDefault(React);
|
|
22
22
|
const Medusa__default = /* @__PURE__ */ _interopDefault(Medusa);
|
|
23
23
|
const debounce__default = /* @__PURE__ */ _interopDefault(debounce);
|
|
24
24
|
const Primitive__default = /* @__PURE__ */ _interopDefault(Primitive);
|
|
25
|
+
const isEqual__default = /* @__PURE__ */ _interopDefault(isEqual);
|
|
25
26
|
function useQueryParams(keys, prefix) {
|
|
26
27
|
const [params] = reactRouterDom.useSearchParams();
|
|
27
28
|
const result = {};
|
|
@@ -9571,6 +9572,196 @@ const ID = () => {
|
|
|
9571
9572
|
/* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Outlet, {})
|
|
9572
9573
|
] });
|
|
9573
9574
|
};
|
|
9575
|
+
const BillingAddress = () => {
|
|
9576
|
+
const { id } = reactRouterDom.useParams();
|
|
9577
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9578
|
+
fields: "+billing_address"
|
|
9579
|
+
});
|
|
9580
|
+
if (isError) {
|
|
9581
|
+
throw error;
|
|
9582
|
+
}
|
|
9583
|
+
const isReady = !isPending && !!order;
|
|
9584
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
9585
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
9586
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Billing Address" }) }),
|
|
9587
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
9588
|
+
] }),
|
|
9589
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(BillingAddressForm, { order })
|
|
9590
|
+
] });
|
|
9591
|
+
};
|
|
9592
|
+
const BillingAddressForm = ({ order }) => {
|
|
9593
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
9594
|
+
const form = reactHookForm.useForm({
|
|
9595
|
+
defaultValues: {
|
|
9596
|
+
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
9597
|
+
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
9598
|
+
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
9599
|
+
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
9600
|
+
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
9601
|
+
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
9602
|
+
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
9603
|
+
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
9604
|
+
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
9605
|
+
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
9606
|
+
},
|
|
9607
|
+
resolver: zod.zodResolver(schema$5)
|
|
9608
|
+
});
|
|
9609
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9610
|
+
const { handleSuccess } = useRouteModal();
|
|
9611
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9612
|
+
await mutateAsync(
|
|
9613
|
+
{ billing_address: data },
|
|
9614
|
+
{
|
|
9615
|
+
onSuccess: () => {
|
|
9616
|
+
handleSuccess();
|
|
9617
|
+
},
|
|
9618
|
+
onError: (error) => {
|
|
9619
|
+
ui.toast.error(error.message);
|
|
9620
|
+
}
|
|
9621
|
+
}
|
|
9622
|
+
);
|
|
9623
|
+
});
|
|
9624
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9625
|
+
KeyboundForm,
|
|
9626
|
+
{
|
|
9627
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9628
|
+
onSubmit,
|
|
9629
|
+
children: [
|
|
9630
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
9631
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9632
|
+
Form$2.Field,
|
|
9633
|
+
{
|
|
9634
|
+
control: form.control,
|
|
9635
|
+
name: "country_code",
|
|
9636
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9637
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
9638
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
9639
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9640
|
+
] })
|
|
9641
|
+
}
|
|
9642
|
+
),
|
|
9643
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9644
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9645
|
+
Form$2.Field,
|
|
9646
|
+
{
|
|
9647
|
+
control: form.control,
|
|
9648
|
+
name: "first_name",
|
|
9649
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9650
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
9651
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9652
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9653
|
+
] })
|
|
9654
|
+
}
|
|
9655
|
+
),
|
|
9656
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9657
|
+
Form$2.Field,
|
|
9658
|
+
{
|
|
9659
|
+
control: form.control,
|
|
9660
|
+
name: "last_name",
|
|
9661
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9662
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
9663
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9664
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9665
|
+
] })
|
|
9666
|
+
}
|
|
9667
|
+
)
|
|
9668
|
+
] }),
|
|
9669
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9670
|
+
Form$2.Field,
|
|
9671
|
+
{
|
|
9672
|
+
control: form.control,
|
|
9673
|
+
name: "company",
|
|
9674
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9675
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
9676
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9677
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9678
|
+
] })
|
|
9679
|
+
}
|
|
9680
|
+
),
|
|
9681
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9682
|
+
Form$2.Field,
|
|
9683
|
+
{
|
|
9684
|
+
control: form.control,
|
|
9685
|
+
name: "address_1",
|
|
9686
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9687
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
9688
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9689
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9690
|
+
] })
|
|
9691
|
+
}
|
|
9692
|
+
),
|
|
9693
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9694
|
+
Form$2.Field,
|
|
9695
|
+
{
|
|
9696
|
+
control: form.control,
|
|
9697
|
+
name: "address_2",
|
|
9698
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9699
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
9700
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9701
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9702
|
+
] })
|
|
9703
|
+
}
|
|
9704
|
+
),
|
|
9705
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9706
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9707
|
+
Form$2.Field,
|
|
9708
|
+
{
|
|
9709
|
+
control: form.control,
|
|
9710
|
+
name: "postal_code",
|
|
9711
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9712
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
9713
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9714
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9715
|
+
] })
|
|
9716
|
+
}
|
|
9717
|
+
),
|
|
9718
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9719
|
+
Form$2.Field,
|
|
9720
|
+
{
|
|
9721
|
+
control: form.control,
|
|
9722
|
+
name: "city",
|
|
9723
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9724
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
9725
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9726
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9727
|
+
] })
|
|
9728
|
+
}
|
|
9729
|
+
)
|
|
9730
|
+
] }),
|
|
9731
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9732
|
+
Form$2.Field,
|
|
9733
|
+
{
|
|
9734
|
+
control: form.control,
|
|
9735
|
+
name: "province",
|
|
9736
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9737
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
9738
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9739
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9740
|
+
] })
|
|
9741
|
+
}
|
|
9742
|
+
),
|
|
9743
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9744
|
+
Form$2.Field,
|
|
9745
|
+
{
|
|
9746
|
+
control: form.control,
|
|
9747
|
+
name: "phone",
|
|
9748
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9749
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
9750
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9751
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9752
|
+
] })
|
|
9753
|
+
}
|
|
9754
|
+
)
|
|
9755
|
+
] }) }),
|
|
9756
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9757
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9758
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9759
|
+
] }) })
|
|
9760
|
+
]
|
|
9761
|
+
}
|
|
9762
|
+
) });
|
|
9763
|
+
};
|
|
9764
|
+
const schema$5 = addressSchema;
|
|
9574
9765
|
const CustomItems = () => {
|
|
9575
9766
|
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
9576
9767
|
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
|
|
@@ -9579,7 +9770,7 @@ const CustomItems = () => {
|
|
|
9579
9770
|
};
|
|
9580
9771
|
const CustomItemsForm = () => {
|
|
9581
9772
|
const form = reactHookForm.useForm({
|
|
9582
|
-
resolver: zod.zodResolver(schema$
|
|
9773
|
+
resolver: zod.zodResolver(schema$4)
|
|
9583
9774
|
});
|
|
9584
9775
|
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9585
9776
|
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
|
|
@@ -9589,7 +9780,7 @@ const CustomItemsForm = () => {
|
|
|
9589
9780
|
] }) })
|
|
9590
9781
|
] }) });
|
|
9591
9782
|
};
|
|
9592
|
-
const schema$
|
|
9783
|
+
const schema$4 = objectType({
|
|
9593
9784
|
email: stringType().email()
|
|
9594
9785
|
});
|
|
9595
9786
|
const Email = () => {
|
|
@@ -9614,7 +9805,7 @@ const EmailForm = ({ order }) => {
|
|
|
9614
9805
|
defaultValues: {
|
|
9615
9806
|
email: order.email ?? ""
|
|
9616
9807
|
},
|
|
9617
|
-
resolver: zod.zodResolver(schema$
|
|
9808
|
+
resolver: zod.zodResolver(schema$3)
|
|
9618
9809
|
});
|
|
9619
9810
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9620
9811
|
const { handleSuccess } = useRouteModal();
|
|
@@ -9657,7 +9848,7 @@ const EmailForm = ({ order }) => {
|
|
|
9657
9848
|
}
|
|
9658
9849
|
) });
|
|
9659
9850
|
};
|
|
9660
|
-
const schema$
|
|
9851
|
+
const schema$3 = objectType({
|
|
9661
9852
|
email: stringType().email()
|
|
9662
9853
|
});
|
|
9663
9854
|
const NumberInput = React.forwardRef(
|
|
@@ -11289,7 +11480,7 @@ const SalesChannelForm = ({ order }) => {
|
|
|
11289
11480
|
defaultValues: {
|
|
11290
11481
|
sales_channel_id: order.sales_channel_id || ""
|
|
11291
11482
|
},
|
|
11292
|
-
resolver: zod.zodResolver(schema$
|
|
11483
|
+
resolver: zod.zodResolver(schema$2)
|
|
11293
11484
|
});
|
|
11294
11485
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11295
11486
|
const { handleSuccess } = useRouteModal();
|
|
@@ -11364,246 +11555,43 @@ const SalesChannelField = ({ control, order }) => {
|
|
|
11364
11555
|
}
|
|
11365
11556
|
);
|
|
11366
11557
|
};
|
|
11367
|
-
const schema$
|
|
11558
|
+
const schema$2 = objectType({
|
|
11368
11559
|
sales_channel_id: stringType().min(1)
|
|
11369
11560
|
});
|
|
11370
|
-
const
|
|
11561
|
+
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11562
|
+
const Shipping = () => {
|
|
11563
|
+
var _a;
|
|
11371
11564
|
const { id } = reactRouterDom.useParams();
|
|
11372
11565
|
const { order, isPending, isError, error } = useOrder(id, {
|
|
11373
|
-
fields: "+
|
|
11566
|
+
fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
|
|
11374
11567
|
});
|
|
11568
|
+
const {
|
|
11569
|
+
order: preview,
|
|
11570
|
+
isPending: isPreviewPending,
|
|
11571
|
+
isError: isPreviewError,
|
|
11572
|
+
error: previewError
|
|
11573
|
+
} = useOrderPreview(id);
|
|
11574
|
+
useInitiateOrderEdit({ preview });
|
|
11575
|
+
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11375
11576
|
if (isError) {
|
|
11376
11577
|
throw error;
|
|
11377
11578
|
}
|
|
11378
|
-
|
|
11379
|
-
|
|
11380
|
-
|
|
11381
|
-
|
|
11382
|
-
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
11386
|
-
}
|
|
11387
|
-
|
|
11388
|
-
|
|
11389
|
-
|
|
11390
|
-
|
|
11391
|
-
|
|
11392
|
-
|
|
11393
|
-
|
|
11394
|
-
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
11395
|
-
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
11396
|
-
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
11397
|
-
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
11398
|
-
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
11399
|
-
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
11400
|
-
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
11401
|
-
},
|
|
11402
|
-
resolver: zod.zodResolver(schema$2)
|
|
11403
|
-
});
|
|
11404
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11405
|
-
const { handleSuccess } = useRouteModal();
|
|
11406
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
11407
|
-
await mutateAsync(
|
|
11408
|
-
{
|
|
11409
|
-
shipping_address: {
|
|
11410
|
-
first_name: data.first_name,
|
|
11411
|
-
last_name: data.last_name,
|
|
11412
|
-
company: data.company,
|
|
11413
|
-
address_1: data.address_1,
|
|
11414
|
-
address_2: data.address_2,
|
|
11415
|
-
city: data.city,
|
|
11416
|
-
province: data.province,
|
|
11417
|
-
country_code: data.country_code,
|
|
11418
|
-
postal_code: data.postal_code,
|
|
11419
|
-
phone: data.phone
|
|
11420
|
-
}
|
|
11421
|
-
},
|
|
11422
|
-
{
|
|
11423
|
-
onSuccess: () => {
|
|
11424
|
-
handleSuccess();
|
|
11425
|
-
},
|
|
11426
|
-
onError: (error) => {
|
|
11427
|
-
ui.toast.error(error.message);
|
|
11428
|
-
}
|
|
11429
|
-
}
|
|
11430
|
-
);
|
|
11431
|
-
});
|
|
11432
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11433
|
-
KeyboundForm,
|
|
11434
|
-
{
|
|
11435
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
11436
|
-
onSubmit,
|
|
11437
|
-
children: [
|
|
11438
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
11439
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11440
|
-
Form$2.Field,
|
|
11441
|
-
{
|
|
11442
|
-
control: form.control,
|
|
11443
|
-
name: "country_code",
|
|
11444
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11445
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
11446
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
11447
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11448
|
-
] })
|
|
11449
|
-
}
|
|
11450
|
-
),
|
|
11451
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
11452
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11453
|
-
Form$2.Field,
|
|
11454
|
-
{
|
|
11455
|
-
control: form.control,
|
|
11456
|
-
name: "first_name",
|
|
11457
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11458
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
11459
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11460
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11461
|
-
] })
|
|
11462
|
-
}
|
|
11463
|
-
),
|
|
11464
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11465
|
-
Form$2.Field,
|
|
11466
|
-
{
|
|
11467
|
-
control: form.control,
|
|
11468
|
-
name: "last_name",
|
|
11469
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11470
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
11471
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11472
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11473
|
-
] })
|
|
11474
|
-
}
|
|
11475
|
-
)
|
|
11476
|
-
] }),
|
|
11477
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11478
|
-
Form$2.Field,
|
|
11479
|
-
{
|
|
11480
|
-
control: form.control,
|
|
11481
|
-
name: "company",
|
|
11482
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11483
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
11484
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11485
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11486
|
-
] })
|
|
11487
|
-
}
|
|
11488
|
-
),
|
|
11489
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11490
|
-
Form$2.Field,
|
|
11491
|
-
{
|
|
11492
|
-
control: form.control,
|
|
11493
|
-
name: "address_1",
|
|
11494
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11495
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
11496
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11497
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11498
|
-
] })
|
|
11499
|
-
}
|
|
11500
|
-
),
|
|
11501
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11502
|
-
Form$2.Field,
|
|
11503
|
-
{
|
|
11504
|
-
control: form.control,
|
|
11505
|
-
name: "address_2",
|
|
11506
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11507
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
11508
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11509
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11510
|
-
] })
|
|
11511
|
-
}
|
|
11512
|
-
),
|
|
11513
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
11514
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11515
|
-
Form$2.Field,
|
|
11516
|
-
{
|
|
11517
|
-
control: form.control,
|
|
11518
|
-
name: "postal_code",
|
|
11519
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11520
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
11521
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11522
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11523
|
-
] })
|
|
11524
|
-
}
|
|
11525
|
-
),
|
|
11526
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11527
|
-
Form$2.Field,
|
|
11528
|
-
{
|
|
11529
|
-
control: form.control,
|
|
11530
|
-
name: "city",
|
|
11531
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11532
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
11533
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11534
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11535
|
-
] })
|
|
11536
|
-
}
|
|
11537
|
-
)
|
|
11538
|
-
] }),
|
|
11539
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11540
|
-
Form$2.Field,
|
|
11541
|
-
{
|
|
11542
|
-
control: form.control,
|
|
11543
|
-
name: "province",
|
|
11544
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11545
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
11546
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11547
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11548
|
-
] })
|
|
11549
|
-
}
|
|
11550
|
-
),
|
|
11551
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11552
|
-
Form$2.Field,
|
|
11553
|
-
{
|
|
11554
|
-
control: form.control,
|
|
11555
|
-
name: "phone",
|
|
11556
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11557
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
11558
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
11559
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11560
|
-
] })
|
|
11561
|
-
}
|
|
11562
|
-
)
|
|
11563
|
-
] }) }),
|
|
11564
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11565
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11566
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11567
|
-
] }) })
|
|
11568
|
-
]
|
|
11569
|
-
}
|
|
11570
|
-
) });
|
|
11571
|
-
};
|
|
11572
|
-
const schema$2 = addressSchema;
|
|
11573
|
-
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11574
|
-
const Shipping = () => {
|
|
11575
|
-
var _a;
|
|
11576
|
-
const { id } = reactRouterDom.useParams();
|
|
11577
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
11578
|
-
fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
|
|
11579
|
-
});
|
|
11580
|
-
const {
|
|
11581
|
-
order: preview,
|
|
11582
|
-
isPending: isPreviewPending,
|
|
11583
|
-
isError: isPreviewError,
|
|
11584
|
-
error: previewError
|
|
11585
|
-
} = useOrderPreview(id);
|
|
11586
|
-
useInitiateOrderEdit({ preview });
|
|
11587
|
-
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11588
|
-
if (isError) {
|
|
11589
|
-
throw error;
|
|
11590
|
-
}
|
|
11591
|
-
if (isPreviewError) {
|
|
11592
|
-
throw previewError;
|
|
11593
|
-
}
|
|
11594
|
-
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11595
|
-
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11596
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11597
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Header, {}),
|
|
11598
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16 px-6", children: [
|
|
11599
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Shipping" }) }),
|
|
11600
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11601
|
-
] }) }) }),
|
|
11602
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11603
|
-
] }) : isReady ? /* @__PURE__ */ jsxRuntime.jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
11604
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11605
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11606
|
-
] }) });
|
|
11579
|
+
if (isPreviewError) {
|
|
11580
|
+
throw previewError;
|
|
11581
|
+
}
|
|
11582
|
+
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11583
|
+
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11584
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11585
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Header, {}),
|
|
11586
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 px-6 py-16", children: [
|
|
11587
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Shipping" }) }),
|
|
11588
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11589
|
+
] }) }) }),
|
|
11590
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11591
|
+
] }) : isReady ? /* @__PURE__ */ jsxRuntime.jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
11592
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11593
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11594
|
+
] }) });
|
|
11607
11595
|
};
|
|
11608
11596
|
const ShippingForm = ({ preview, order }) => {
|
|
11609
11597
|
var _a;
|
|
@@ -11682,14 +11670,14 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11682
11670
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex h-full flex-col overflow-hidden", children: [
|
|
11683
11671
|
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Header, {}),
|
|
11684
11672
|
/* @__PURE__ */ jsxRuntime.jsxs(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: [
|
|
11685
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16
|
|
11673
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 px-6 py-16", children: [
|
|
11686
11674
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
11687
11675
|
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Shipping" }) }),
|
|
11688
11676
|
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: "Choose which shipping method(s) to use for the items in the order." }) })
|
|
11689
11677
|
] }),
|
|
11690
11678
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Divider, { variant: "dashed" }),
|
|
11691
|
-
/* @__PURE__ */ jsxRuntime.jsx(radixUi.Accordion.Root, { type: "multiple", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "bg-ui-bg-subtle
|
|
11692
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "
|
|
11679
|
+
/* @__PURE__ */ jsxRuntime.jsx(radixUi.Accordion.Root, { type: "multiple", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "bg-ui-bg-subtle shadow-elevation-card-rest rounded-xl", children: [
|
|
11680
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between px-4 py-2", children: [
|
|
11693
11681
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11694
11682
|
ui.Text,
|
|
11695
11683
|
{
|
|
@@ -11731,8 +11719,8 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11731
11719
|
value: profile.id,
|
|
11732
11720
|
className: "bg-ui-bg-base shadow-elevation-card-rest rounded-lg",
|
|
11733
11721
|
children: [
|
|
11734
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "
|
|
11735
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3
|
|
11722
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between gap-3 px-3 py-2", children: [
|
|
11723
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-center gap-x-3 overflow-hidden", children: [
|
|
11736
11724
|
/* @__PURE__ */ jsxRuntime.jsx(radixUi.Accordion.Trigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
11737
11725
|
ui.IconButton,
|
|
11738
11726
|
{
|
|
@@ -11740,12 +11728,12 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11740
11728
|
variant: "transparent",
|
|
11741
11729
|
className: "group/trigger",
|
|
11742
11730
|
disabled: !hasItems,
|
|
11743
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(icons.TriangleRightMini, { className: "group-data-[state=open]/trigger:rotate-90
|
|
11731
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(icons.TriangleRightMini, { className: "transition-transform group-data-[state=open]/trigger:rotate-90" })
|
|
11744
11732
|
}
|
|
11745
11733
|
) }),
|
|
11746
11734
|
!shippingOption ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3", children: [
|
|
11747
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "
|
|
11748
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-
|
|
11735
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "shadow-borders-base flex size-7 items-center justify-center rounded-md", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "bg-ui-bg-component-hover flex size-6 items-center justify-center rounded", children: /* @__PURE__ */ jsxRuntime.jsx(icons.Shopping, { className: "text-ui-fg-subtle" }) }) }),
|
|
11736
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col", children: [
|
|
11749
11737
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11750
11738
|
ui.Text,
|
|
11751
11739
|
{
|
|
@@ -11769,7 +11757,7 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11769
11757
|
}
|
|
11770
11758
|
)
|
|
11771
11759
|
] })
|
|
11772
|
-
] }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-[5px] max-sm:flex-col max-sm:items-start
|
|
11760
|
+
] }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full flex-1 items-center gap-[5px] overflow-hidden max-sm:flex-col max-sm:items-start", children: [
|
|
11773
11761
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11774
11762
|
ui.Tooltip,
|
|
11775
11763
|
{
|
|
@@ -11786,7 +11774,7 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11786
11774
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11787
11775
|
ui.Badge,
|
|
11788
11776
|
{
|
|
11789
|
-
className: "flex items-center gap-x-[3px] overflow-hidden
|
|
11777
|
+
className: "flex cursor-default items-center gap-x-[3px] overflow-hidden",
|
|
11790
11778
|
size: "xsmall",
|
|
11791
11779
|
children: [
|
|
11792
11780
|
/* @__PURE__ */ jsxRuntime.jsx(icons.Shopping, { className: "shrink-0" }),
|
|
@@ -11811,7 +11799,7 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11811
11799
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11812
11800
|
ui.Badge,
|
|
11813
11801
|
{
|
|
11814
|
-
className: "flex items-center gap-x-[3px] overflow-hidden
|
|
11802
|
+
className: "flex cursor-default items-center gap-x-[3px] overflow-hidden",
|
|
11815
11803
|
size: "xsmall",
|
|
11816
11804
|
children: [
|
|
11817
11805
|
/* @__PURE__ */ jsxRuntime.jsx(icons.Buildings, { className: "shrink-0" }),
|
|
@@ -11824,7 +11812,7 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11824
11812
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Tooltip, { content: shippingOption.name, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11825
11813
|
ui.Badge,
|
|
11826
11814
|
{
|
|
11827
|
-
className: "flex items-center gap-x-[3px] overflow-hidden
|
|
11815
|
+
className: "flex cursor-default items-center gap-x-[3px] overflow-hidden",
|
|
11828
11816
|
size: "xsmall",
|
|
11829
11817
|
children: [
|
|
11830
11818
|
/* @__PURE__ */ jsxRuntime.jsx(icons.TruckFast, { className: "shrink-0" }),
|
|
@@ -11895,17 +11883,17 @@ const ShippingForm = ({ preview, order }) => {
|
|
|
11895
11883
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
11896
11884
|
"div",
|
|
11897
11885
|
{
|
|
11898
|
-
className: "
|
|
11886
|
+
className: "flex items-center gap-x-3 px-3",
|
|
11899
11887
|
children: [
|
|
11900
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "
|
|
11888
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-[56px] w-5 flex-col items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
11901
11889
|
ui.Divider,
|
|
11902
11890
|
{
|
|
11903
11891
|
variant: "dashed",
|
|
11904
11892
|
orientation: "vertical"
|
|
11905
11893
|
}
|
|
11906
11894
|
) }),
|
|
11907
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "
|
|
11908
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "size-7
|
|
11895
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3 py-2", children: [
|
|
11896
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-7 items-center justify-center tabular-nums", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11909
11897
|
ui.Text,
|
|
11910
11898
|
{
|
|
11911
11899
|
size: "small",
|
|
@@ -12042,7 +12030,7 @@ const ShippingProfileForm = ({
|
|
|
12042
12030
|
isPending: isUpdatingShippingMethod
|
|
12043
12031
|
} = useDraftOrderUpdateShippingMethod(order.id);
|
|
12044
12032
|
const onSubmit = form.handleSubmit(async (values) => {
|
|
12045
|
-
if (
|
|
12033
|
+
if (isEqual__default.default(values, form.formState.defaultValues)) {
|
|
12046
12034
|
setIsOpen(STACKED_FOCUS_MODAL_ID, false);
|
|
12047
12035
|
return;
|
|
12048
12036
|
}
|
|
@@ -12086,7 +12074,7 @@ const ShippingProfileForm = ({
|
|
|
12086
12074
|
onSubmit,
|
|
12087
12075
|
children: [
|
|
12088
12076
|
/* @__PURE__ */ jsxRuntime.jsx(StackedFocusModal.Header, {}),
|
|
12089
|
-
/* @__PURE__ */ jsxRuntime.jsx(StackedFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16
|
|
12077
|
+
/* @__PURE__ */ jsxRuntime.jsx(StackedFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 px-6 py-16", children: [
|
|
12090
12078
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
12091
12079
|
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Shipping" }) }),
|
|
12092
12080
|
/* @__PURE__ */ jsxRuntime.jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: "Add a shipping method for the selected shipping profile. You can see the items that will be shipped using this method in the preview below." }) })
|
|
@@ -12159,14 +12147,14 @@ const ItemsPreview = ({ order, shippingProfileId }) => {
|
|
|
12159
12147
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: "Items with the selected shipping profile." })
|
|
12160
12148
|
] }) }),
|
|
12161
12149
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "bg-ui-bg-subtle shadow-elevation-card-rest rounded-xl", children: [
|
|
12162
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-3 px-4 py-2
|
|
12150
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-ui-fg-muted grid grid-cols-2 gap-3 px-4 py-2", children: [
|
|
12163
12151
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", children: "Item" }) }),
|
|
12164
12152
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", children: "Quantity" }) })
|
|
12165
12153
|
] }),
|
|
12166
12154
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-y-1.5 px-[5px] pb-[5px]", children: matches.length > 0 ? matches == null ? void 0 : matches.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12167
12155
|
"div",
|
|
12168
12156
|
{
|
|
12169
|
-
className: "
|
|
12157
|
+
className: "bg-ui-bg-base shadow-elevation-card-rest grid grid-cols-2 items-center gap-3 rounded-lg px-4 py-2",
|
|
12170
12158
|
children: [
|
|
12171
12159
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3", children: [
|
|
12172
12160
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -12219,7 +12207,7 @@ const ItemsPreview = ({ order, shippingProfileId }) => {
|
|
|
12219
12207
|
]
|
|
12220
12208
|
},
|
|
12221
12209
|
item.id
|
|
12222
|
-
)) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-center gap-x-3
|
|
12210
|
+
)) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "bg-ui-bg-base shadow-elevation-card-rest flex flex-col items-center justify-center gap-1 gap-x-3 rounded-lg p-4", children: [
|
|
12223
12211
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", leading: "compact", children: "No items found" }),
|
|
12224
12212
|
/* @__PURE__ */ jsxRuntime.jsxs(ui.Text, { size: "small", className: "text-ui-fg-subtle", children: [
|
|
12225
12213
|
'No items found for "',
|
|
@@ -12377,44 +12365,60 @@ const CustomAmountField = ({
|
|
|
12377
12365
|
}
|
|
12378
12366
|
);
|
|
12379
12367
|
};
|
|
12380
|
-
const
|
|
12368
|
+
const ShippingAddress = () => {
|
|
12381
12369
|
const { id } = reactRouterDom.useParams();
|
|
12382
|
-
const {
|
|
12383
|
-
fields: "
|
|
12370
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12371
|
+
fields: "+shipping_address"
|
|
12384
12372
|
});
|
|
12385
12373
|
if (isError) {
|
|
12386
12374
|
throw error;
|
|
12387
12375
|
}
|
|
12388
|
-
const isReady = !isPending && !!
|
|
12376
|
+
const isReady = !isPending && !!order;
|
|
12389
12377
|
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12390
12378
|
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12391
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "
|
|
12392
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "
|
|
12379
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Shipping Address" }) }),
|
|
12380
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12393
12381
|
] }),
|
|
12394
|
-
isReady && /* @__PURE__ */ jsxRuntime.jsx(
|
|
12382
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(ShippingAddressForm, { order })
|
|
12395
12383
|
] });
|
|
12396
12384
|
};
|
|
12397
|
-
const
|
|
12398
|
-
var _a, _b;
|
|
12385
|
+
const ShippingAddressForm = ({ order }) => {
|
|
12386
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12399
12387
|
const form = reactHookForm.useForm({
|
|
12400
12388
|
defaultValues: {
|
|
12401
|
-
|
|
12389
|
+
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12390
|
+
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12391
|
+
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12392
|
+
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12393
|
+
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12394
|
+
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12395
|
+
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12396
|
+
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12397
|
+
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12398
|
+
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12402
12399
|
},
|
|
12403
12400
|
resolver: zod.zodResolver(schema$1)
|
|
12404
12401
|
});
|
|
12405
12402
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12406
12403
|
const { handleSuccess } = useRouteModal();
|
|
12407
|
-
const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
|
|
12408
|
-
const currentCustomer = order.customer ? {
|
|
12409
|
-
label: name ? `${name} (${order.customer.email})` : order.customer.email,
|
|
12410
|
-
value: order.customer.id
|
|
12411
|
-
} : null;
|
|
12412
12404
|
const onSubmit = form.handleSubmit(async (data) => {
|
|
12413
12405
|
await mutateAsync(
|
|
12414
|
-
{
|
|
12406
|
+
{
|
|
12407
|
+
shipping_address: {
|
|
12408
|
+
first_name: data.first_name,
|
|
12409
|
+
last_name: data.last_name,
|
|
12410
|
+
company: data.company,
|
|
12411
|
+
address_1: data.address_1,
|
|
12412
|
+
address_2: data.address_2,
|
|
12413
|
+
city: data.city,
|
|
12414
|
+
province: data.province,
|
|
12415
|
+
country_code: data.country_code,
|
|
12416
|
+
postal_code: data.postal_code,
|
|
12417
|
+
phone: data.phone
|
|
12418
|
+
}
|
|
12419
|
+
},
|
|
12415
12420
|
{
|
|
12416
12421
|
onSuccess: () => {
|
|
12417
|
-
ui.toast.success("Customer updated");
|
|
12418
12422
|
handleSuccess();
|
|
12419
12423
|
},
|
|
12420
12424
|
onError: (error) => {
|
|
@@ -12429,13 +12433,200 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12429
12433
|
className: "flex flex-1 flex-col overflow-hidden",
|
|
12430
12434
|
onSubmit,
|
|
12431
12435
|
children: [
|
|
12432
|
-
/* @__PURE__ */ jsxRuntime.
|
|
12433
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12434
|
-
|
|
12435
|
-
|
|
12436
|
-
|
|
12437
|
-
|
|
12438
|
-
|
|
12436
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
12437
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12438
|
+
Form$2.Field,
|
|
12439
|
+
{
|
|
12440
|
+
control: form.control,
|
|
12441
|
+
name: "country_code",
|
|
12442
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12443
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
12444
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
12445
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12446
|
+
] })
|
|
12447
|
+
}
|
|
12448
|
+
),
|
|
12449
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12450
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12451
|
+
Form$2.Field,
|
|
12452
|
+
{
|
|
12453
|
+
control: form.control,
|
|
12454
|
+
name: "first_name",
|
|
12455
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12456
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
12457
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12458
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12459
|
+
] })
|
|
12460
|
+
}
|
|
12461
|
+
),
|
|
12462
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12463
|
+
Form$2.Field,
|
|
12464
|
+
{
|
|
12465
|
+
control: form.control,
|
|
12466
|
+
name: "last_name",
|
|
12467
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12468
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
12469
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12470
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12471
|
+
] })
|
|
12472
|
+
}
|
|
12473
|
+
)
|
|
12474
|
+
] }),
|
|
12475
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12476
|
+
Form$2.Field,
|
|
12477
|
+
{
|
|
12478
|
+
control: form.control,
|
|
12479
|
+
name: "company",
|
|
12480
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12481
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12482
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12483
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12484
|
+
] })
|
|
12485
|
+
}
|
|
12486
|
+
),
|
|
12487
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12488
|
+
Form$2.Field,
|
|
12489
|
+
{
|
|
12490
|
+
control: form.control,
|
|
12491
|
+
name: "address_1",
|
|
12492
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12493
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
12494
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12495
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12496
|
+
] })
|
|
12497
|
+
}
|
|
12498
|
+
),
|
|
12499
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12500
|
+
Form$2.Field,
|
|
12501
|
+
{
|
|
12502
|
+
control: form.control,
|
|
12503
|
+
name: "address_2",
|
|
12504
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12505
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12506
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12507
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12508
|
+
] })
|
|
12509
|
+
}
|
|
12510
|
+
),
|
|
12511
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12512
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12513
|
+
Form$2.Field,
|
|
12514
|
+
{
|
|
12515
|
+
control: form.control,
|
|
12516
|
+
name: "postal_code",
|
|
12517
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12518
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
12519
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12520
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12521
|
+
] })
|
|
12522
|
+
}
|
|
12523
|
+
),
|
|
12524
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12525
|
+
Form$2.Field,
|
|
12526
|
+
{
|
|
12527
|
+
control: form.control,
|
|
12528
|
+
name: "city",
|
|
12529
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12530
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
12531
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12532
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12533
|
+
] })
|
|
12534
|
+
}
|
|
12535
|
+
)
|
|
12536
|
+
] }),
|
|
12537
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12538
|
+
Form$2.Field,
|
|
12539
|
+
{
|
|
12540
|
+
control: form.control,
|
|
12541
|
+
name: "province",
|
|
12542
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12543
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
12544
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12545
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12546
|
+
] })
|
|
12547
|
+
}
|
|
12548
|
+
),
|
|
12549
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12550
|
+
Form$2.Field,
|
|
12551
|
+
{
|
|
12552
|
+
control: form.control,
|
|
12553
|
+
name: "phone",
|
|
12554
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12555
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
12556
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12557
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12558
|
+
] })
|
|
12559
|
+
}
|
|
12560
|
+
)
|
|
12561
|
+
] }) }),
|
|
12562
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12563
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12564
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12565
|
+
] }) })
|
|
12566
|
+
]
|
|
12567
|
+
}
|
|
12568
|
+
) });
|
|
12569
|
+
};
|
|
12570
|
+
const schema$1 = addressSchema;
|
|
12571
|
+
const TransferOwnership = () => {
|
|
12572
|
+
const { id } = reactRouterDom.useParams();
|
|
12573
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
12574
|
+
fields: "id,customer_id,customer.*"
|
|
12575
|
+
});
|
|
12576
|
+
if (isError) {
|
|
12577
|
+
throw error;
|
|
12578
|
+
}
|
|
12579
|
+
const isReady = !isPending && !!draft_order;
|
|
12580
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12581
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12582
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Transfer Ownership" }) }),
|
|
12583
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Transfer the ownership of this draft order to a new customer" }) })
|
|
12584
|
+
] }),
|
|
12585
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(TransferOwnershipForm, { order: draft_order })
|
|
12586
|
+
] });
|
|
12587
|
+
};
|
|
12588
|
+
const TransferOwnershipForm = ({ order }) => {
|
|
12589
|
+
var _a, _b;
|
|
12590
|
+
const form = reactHookForm.useForm({
|
|
12591
|
+
defaultValues: {
|
|
12592
|
+
customer_id: order.customer_id || ""
|
|
12593
|
+
},
|
|
12594
|
+
resolver: zod.zodResolver(schema)
|
|
12595
|
+
});
|
|
12596
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12597
|
+
const { handleSuccess } = useRouteModal();
|
|
12598
|
+
const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
|
|
12599
|
+
const currentCustomer = order.customer ? {
|
|
12600
|
+
label: name ? `${name} (${order.customer.email})` : order.customer.email,
|
|
12601
|
+
value: order.customer.id
|
|
12602
|
+
} : null;
|
|
12603
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
12604
|
+
await mutateAsync(
|
|
12605
|
+
{ customer_id: data.customer_id },
|
|
12606
|
+
{
|
|
12607
|
+
onSuccess: () => {
|
|
12608
|
+
ui.toast.success("Customer updated");
|
|
12609
|
+
handleSuccess();
|
|
12610
|
+
},
|
|
12611
|
+
onError: (error) => {
|
|
12612
|
+
ui.toast.error(error.message);
|
|
12613
|
+
}
|
|
12614
|
+
}
|
|
12615
|
+
);
|
|
12616
|
+
});
|
|
12617
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12618
|
+
KeyboundForm,
|
|
12619
|
+
{
|
|
12620
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
12621
|
+
onSubmit,
|
|
12622
|
+
children: [
|
|
12623
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: [
|
|
12624
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center bg-ui-bg-component rounded-md border", children: /* @__PURE__ */ jsxRuntime.jsx(Illustration, {}) }),
|
|
12625
|
+
currentCustomer && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col space-y-3", children: [
|
|
12626
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
12627
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Label, { size: "small", weight: "plus", htmlFor: "current-customer", children: "Current owner" }),
|
|
12628
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Hint, { children: "The customer that is currently associated with this draft order." })
|
|
12629
|
+
] }),
|
|
12439
12630
|
/* @__PURE__ */ jsxRuntime.jsxs(ui.Select, { disabled: true, value: currentCustomer.value, children: [
|
|
12440
12631
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Select.Trigger, { id: "current-customer", children: /* @__PURE__ */ jsxRuntime.jsx(ui.Select.Value, {}) }),
|
|
12441
12632
|
/* @__PURE__ */ jsxRuntime.jsx(ui.Select.Content, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Select.Item, { value: currentCustomer.value, children: currentCustomer.label }) })
|
|
@@ -12850,199 +13041,9 @@ const Illustration = () => {
|
|
|
12850
13041
|
}
|
|
12851
13042
|
);
|
|
12852
13043
|
};
|
|
12853
|
-
const schema
|
|
13044
|
+
const schema = objectType({
|
|
12854
13045
|
customer_id: stringType().min(1)
|
|
12855
13046
|
});
|
|
12856
|
-
const BillingAddress = () => {
|
|
12857
|
-
const { id } = reactRouterDom.useParams();
|
|
12858
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
12859
|
-
fields: "+billing_address"
|
|
12860
|
-
});
|
|
12861
|
-
if (isError) {
|
|
12862
|
-
throw error;
|
|
12863
|
-
}
|
|
12864
|
-
const isReady = !isPending && !!order;
|
|
12865
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12866
|
-
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12867
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Billing Address" }) }),
|
|
12868
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
12869
|
-
] }),
|
|
12870
|
-
isReady && /* @__PURE__ */ jsxRuntime.jsx(BillingAddressForm, { order })
|
|
12871
|
-
] });
|
|
12872
|
-
};
|
|
12873
|
-
const BillingAddressForm = ({ order }) => {
|
|
12874
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12875
|
-
const form = reactHookForm.useForm({
|
|
12876
|
-
defaultValues: {
|
|
12877
|
-
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12878
|
-
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12879
|
-
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
12880
|
-
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12881
|
-
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12882
|
-
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
12883
|
-
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
12884
|
-
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12885
|
-
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12886
|
-
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
12887
|
-
},
|
|
12888
|
-
resolver: zod.zodResolver(schema)
|
|
12889
|
-
});
|
|
12890
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12891
|
-
const { handleSuccess } = useRouteModal();
|
|
12892
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12893
|
-
await mutateAsync(
|
|
12894
|
-
{ billing_address: data },
|
|
12895
|
-
{
|
|
12896
|
-
onSuccess: () => {
|
|
12897
|
-
handleSuccess();
|
|
12898
|
-
},
|
|
12899
|
-
onError: (error) => {
|
|
12900
|
-
ui.toast.error(error.message);
|
|
12901
|
-
}
|
|
12902
|
-
}
|
|
12903
|
-
);
|
|
12904
|
-
});
|
|
12905
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12906
|
-
KeyboundForm,
|
|
12907
|
-
{
|
|
12908
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12909
|
-
onSubmit,
|
|
12910
|
-
children: [
|
|
12911
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
12912
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12913
|
-
Form$2.Field,
|
|
12914
|
-
{
|
|
12915
|
-
control: form.control,
|
|
12916
|
-
name: "country_code",
|
|
12917
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12918
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
12919
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
12920
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12921
|
-
] })
|
|
12922
|
-
}
|
|
12923
|
-
),
|
|
12924
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12925
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12926
|
-
Form$2.Field,
|
|
12927
|
-
{
|
|
12928
|
-
control: form.control,
|
|
12929
|
-
name: "first_name",
|
|
12930
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12931
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
12932
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12933
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12934
|
-
] })
|
|
12935
|
-
}
|
|
12936
|
-
),
|
|
12937
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12938
|
-
Form$2.Field,
|
|
12939
|
-
{
|
|
12940
|
-
control: form.control,
|
|
12941
|
-
name: "last_name",
|
|
12942
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12943
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
12944
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12945
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12946
|
-
] })
|
|
12947
|
-
}
|
|
12948
|
-
)
|
|
12949
|
-
] }),
|
|
12950
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12951
|
-
Form$2.Field,
|
|
12952
|
-
{
|
|
12953
|
-
control: form.control,
|
|
12954
|
-
name: "company",
|
|
12955
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12956
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12957
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12958
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12959
|
-
] })
|
|
12960
|
-
}
|
|
12961
|
-
),
|
|
12962
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12963
|
-
Form$2.Field,
|
|
12964
|
-
{
|
|
12965
|
-
control: form.control,
|
|
12966
|
-
name: "address_1",
|
|
12967
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12968
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
12969
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12970
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12971
|
-
] })
|
|
12972
|
-
}
|
|
12973
|
-
),
|
|
12974
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12975
|
-
Form$2.Field,
|
|
12976
|
-
{
|
|
12977
|
-
control: form.control,
|
|
12978
|
-
name: "address_2",
|
|
12979
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12980
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12981
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12982
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12983
|
-
] })
|
|
12984
|
-
}
|
|
12985
|
-
),
|
|
12986
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12987
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12988
|
-
Form$2.Field,
|
|
12989
|
-
{
|
|
12990
|
-
control: form.control,
|
|
12991
|
-
name: "postal_code",
|
|
12992
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12993
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
12994
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12995
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12996
|
-
] })
|
|
12997
|
-
}
|
|
12998
|
-
),
|
|
12999
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13000
|
-
Form$2.Field,
|
|
13001
|
-
{
|
|
13002
|
-
control: form.control,
|
|
13003
|
-
name: "city",
|
|
13004
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
13005
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
13006
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
13007
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
13008
|
-
] })
|
|
13009
|
-
}
|
|
13010
|
-
)
|
|
13011
|
-
] }),
|
|
13012
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13013
|
-
Form$2.Field,
|
|
13014
|
-
{
|
|
13015
|
-
control: form.control,
|
|
13016
|
-
name: "province",
|
|
13017
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
13018
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
13019
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
13020
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
13021
|
-
] })
|
|
13022
|
-
}
|
|
13023
|
-
),
|
|
13024
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13025
|
-
Form$2.Field,
|
|
13026
|
-
{
|
|
13027
|
-
control: form.control,
|
|
13028
|
-
name: "phone",
|
|
13029
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
13030
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
13031
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
13032
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
13033
|
-
] })
|
|
13034
|
-
}
|
|
13035
|
-
)
|
|
13036
|
-
] }) }),
|
|
13037
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13038
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13039
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
13040
|
-
] }) })
|
|
13041
|
-
]
|
|
13042
|
-
}
|
|
13043
|
-
) });
|
|
13044
|
-
};
|
|
13045
|
-
const schema = addressSchema;
|
|
13046
13047
|
const widgetModule = { widgets: [] };
|
|
13047
13048
|
const routeModule = {
|
|
13048
13049
|
routes: [
|
|
@@ -13063,6 +13064,10 @@ const routeModule = {
|
|
|
13063
13064
|
handle,
|
|
13064
13065
|
loader,
|
|
13065
13066
|
children: [
|
|
13067
|
+
{
|
|
13068
|
+
Component: BillingAddress,
|
|
13069
|
+
path: "/draft-orders/:id/billing-address"
|
|
13070
|
+
},
|
|
13066
13071
|
{
|
|
13067
13072
|
Component: CustomItems,
|
|
13068
13073
|
path: "/draft-orders/:id/custom-items"
|
|
@@ -13087,21 +13092,17 @@ const routeModule = {
|
|
|
13087
13092
|
Component: SalesChannel,
|
|
13088
13093
|
path: "/draft-orders/:id/sales-channel"
|
|
13089
13094
|
},
|
|
13090
|
-
{
|
|
13091
|
-
Component: ShippingAddress,
|
|
13092
|
-
path: "/draft-orders/:id/shipping-address"
|
|
13093
|
-
},
|
|
13094
13095
|
{
|
|
13095
13096
|
Component: Shipping,
|
|
13096
13097
|
path: "/draft-orders/:id/shipping"
|
|
13097
13098
|
},
|
|
13098
13099
|
{
|
|
13099
|
-
Component:
|
|
13100
|
-
path: "/draft-orders/:id/
|
|
13100
|
+
Component: ShippingAddress,
|
|
13101
|
+
path: "/draft-orders/:id/shipping-address"
|
|
13101
13102
|
},
|
|
13102
13103
|
{
|
|
13103
|
-
Component:
|
|
13104
|
-
path: "/draft-orders/:id/
|
|
13104
|
+
Component: TransferOwnership,
|
|
13105
|
+
path: "/draft-orders/:id/transfer-ownership"
|
|
13105
13106
|
}
|
|
13106
13107
|
]
|
|
13107
13108
|
}
|