@medusajs/draft-order 2.10.2-preview-20250903090152 → 2.10.2-preview-20250903111847
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 +367 -367
- package/.medusa/server/src/admin/index.mjs +367 -367
- package/package.json +16 -16
|
@@ -9554,6 +9554,196 @@ const ID = () => {
|
|
|
9554
9554
|
/* @__PURE__ */ jsx(Outlet, {})
|
|
9555
9555
|
] });
|
|
9556
9556
|
};
|
|
9557
|
+
const BillingAddress = () => {
|
|
9558
|
+
const { id } = useParams();
|
|
9559
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9560
|
+
fields: "+billing_address"
|
|
9561
|
+
});
|
|
9562
|
+
if (isError) {
|
|
9563
|
+
throw error;
|
|
9564
|
+
}
|
|
9565
|
+
const isReady = !isPending && !!order;
|
|
9566
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9567
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9568
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
|
|
9569
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
9570
|
+
] }),
|
|
9571
|
+
isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
|
|
9572
|
+
] });
|
|
9573
|
+
};
|
|
9574
|
+
const BillingAddressForm = ({ order }) => {
|
|
9575
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
9576
|
+
const form = useForm({
|
|
9577
|
+
defaultValues: {
|
|
9578
|
+
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
9579
|
+
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
9580
|
+
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
9581
|
+
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
9582
|
+
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
9583
|
+
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
9584
|
+
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
9585
|
+
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
9586
|
+
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
9587
|
+
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
9588
|
+
},
|
|
9589
|
+
resolver: zodResolver(schema$5)
|
|
9590
|
+
});
|
|
9591
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9592
|
+
const { handleSuccess } = useRouteModal();
|
|
9593
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9594
|
+
await mutateAsync(
|
|
9595
|
+
{ billing_address: data },
|
|
9596
|
+
{
|
|
9597
|
+
onSuccess: () => {
|
|
9598
|
+
handleSuccess();
|
|
9599
|
+
},
|
|
9600
|
+
onError: (error) => {
|
|
9601
|
+
toast.error(error.message);
|
|
9602
|
+
}
|
|
9603
|
+
}
|
|
9604
|
+
);
|
|
9605
|
+
});
|
|
9606
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9607
|
+
KeyboundForm,
|
|
9608
|
+
{
|
|
9609
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9610
|
+
onSubmit,
|
|
9611
|
+
children: [
|
|
9612
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
9613
|
+
/* @__PURE__ */ jsx(
|
|
9614
|
+
Form$2.Field,
|
|
9615
|
+
{
|
|
9616
|
+
control: form.control,
|
|
9617
|
+
name: "country_code",
|
|
9618
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9619
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
9620
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
9621
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9622
|
+
] })
|
|
9623
|
+
}
|
|
9624
|
+
),
|
|
9625
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9626
|
+
/* @__PURE__ */ jsx(
|
|
9627
|
+
Form$2.Field,
|
|
9628
|
+
{
|
|
9629
|
+
control: form.control,
|
|
9630
|
+
name: "first_name",
|
|
9631
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9632
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
9633
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9634
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9635
|
+
] })
|
|
9636
|
+
}
|
|
9637
|
+
),
|
|
9638
|
+
/* @__PURE__ */ jsx(
|
|
9639
|
+
Form$2.Field,
|
|
9640
|
+
{
|
|
9641
|
+
control: form.control,
|
|
9642
|
+
name: "last_name",
|
|
9643
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9644
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
9645
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9646
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9647
|
+
] })
|
|
9648
|
+
}
|
|
9649
|
+
)
|
|
9650
|
+
] }),
|
|
9651
|
+
/* @__PURE__ */ jsx(
|
|
9652
|
+
Form$2.Field,
|
|
9653
|
+
{
|
|
9654
|
+
control: form.control,
|
|
9655
|
+
name: "company",
|
|
9656
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9657
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
9658
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9659
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9660
|
+
] })
|
|
9661
|
+
}
|
|
9662
|
+
),
|
|
9663
|
+
/* @__PURE__ */ jsx(
|
|
9664
|
+
Form$2.Field,
|
|
9665
|
+
{
|
|
9666
|
+
control: form.control,
|
|
9667
|
+
name: "address_1",
|
|
9668
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9669
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
9670
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9671
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9672
|
+
] })
|
|
9673
|
+
}
|
|
9674
|
+
),
|
|
9675
|
+
/* @__PURE__ */ jsx(
|
|
9676
|
+
Form$2.Field,
|
|
9677
|
+
{
|
|
9678
|
+
control: form.control,
|
|
9679
|
+
name: "address_2",
|
|
9680
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9681
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
9682
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9683
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9684
|
+
] })
|
|
9685
|
+
}
|
|
9686
|
+
),
|
|
9687
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9688
|
+
/* @__PURE__ */ jsx(
|
|
9689
|
+
Form$2.Field,
|
|
9690
|
+
{
|
|
9691
|
+
control: form.control,
|
|
9692
|
+
name: "postal_code",
|
|
9693
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9694
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
9695
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9696
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9697
|
+
] })
|
|
9698
|
+
}
|
|
9699
|
+
),
|
|
9700
|
+
/* @__PURE__ */ jsx(
|
|
9701
|
+
Form$2.Field,
|
|
9702
|
+
{
|
|
9703
|
+
control: form.control,
|
|
9704
|
+
name: "city",
|
|
9705
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9706
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
9707
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9708
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9709
|
+
] })
|
|
9710
|
+
}
|
|
9711
|
+
)
|
|
9712
|
+
] }),
|
|
9713
|
+
/* @__PURE__ */ jsx(
|
|
9714
|
+
Form$2.Field,
|
|
9715
|
+
{
|
|
9716
|
+
control: form.control,
|
|
9717
|
+
name: "province",
|
|
9718
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9719
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
9720
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9721
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9722
|
+
] })
|
|
9723
|
+
}
|
|
9724
|
+
),
|
|
9725
|
+
/* @__PURE__ */ jsx(
|
|
9726
|
+
Form$2.Field,
|
|
9727
|
+
{
|
|
9728
|
+
control: form.control,
|
|
9729
|
+
name: "phone",
|
|
9730
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9731
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
9732
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9733
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9734
|
+
] })
|
|
9735
|
+
}
|
|
9736
|
+
)
|
|
9737
|
+
] }) }),
|
|
9738
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9739
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9740
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9741
|
+
] }) })
|
|
9742
|
+
]
|
|
9743
|
+
}
|
|
9744
|
+
) });
|
|
9745
|
+
};
|
|
9746
|
+
const schema$5 = addressSchema;
|
|
9557
9747
|
const CustomItems = () => {
|
|
9558
9748
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9559
9749
|
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
@@ -9562,7 +9752,7 @@ const CustomItems = () => {
|
|
|
9562
9752
|
};
|
|
9563
9753
|
const CustomItemsForm = () => {
|
|
9564
9754
|
const form = useForm({
|
|
9565
|
-
resolver: zodResolver(schema$
|
|
9755
|
+
resolver: zodResolver(schema$4)
|
|
9566
9756
|
});
|
|
9567
9757
|
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9568
9758
|
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
@@ -9572,7 +9762,7 @@ const CustomItemsForm = () => {
|
|
|
9572
9762
|
] }) })
|
|
9573
9763
|
] }) });
|
|
9574
9764
|
};
|
|
9575
|
-
const schema$
|
|
9765
|
+
const schema$4 = objectType({
|
|
9576
9766
|
email: stringType().email()
|
|
9577
9767
|
});
|
|
9578
9768
|
const Email = () => {
|
|
@@ -9597,7 +9787,7 @@ const EmailForm = ({ order }) => {
|
|
|
9597
9787
|
defaultValues: {
|
|
9598
9788
|
email: order.email ?? ""
|
|
9599
9789
|
},
|
|
9600
|
-
resolver: zodResolver(schema$
|
|
9790
|
+
resolver: zodResolver(schema$3)
|
|
9601
9791
|
});
|
|
9602
9792
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9603
9793
|
const { handleSuccess } = useRouteModal();
|
|
@@ -9640,7 +9830,7 @@ const EmailForm = ({ order }) => {
|
|
|
9640
9830
|
}
|
|
9641
9831
|
) });
|
|
9642
9832
|
};
|
|
9643
|
-
const schema$
|
|
9833
|
+
const schema$3 = objectType({
|
|
9644
9834
|
email: stringType().email()
|
|
9645
9835
|
});
|
|
9646
9836
|
const NumberInput = forwardRef(
|
|
@@ -11244,67 +11434,173 @@ function getPromotionCodes(items, shippingMethods) {
|
|
|
11244
11434
|
}
|
|
11245
11435
|
return Array.from(codes);
|
|
11246
11436
|
}
|
|
11247
|
-
const
|
|
11248
|
-
const Shipping = () => {
|
|
11249
|
-
var _a;
|
|
11437
|
+
const SalesChannel = () => {
|
|
11250
11438
|
const { id } = useParams();
|
|
11251
|
-
const {
|
|
11252
|
-
|
|
11253
|
-
});
|
|
11254
|
-
const {
|
|
11255
|
-
order: preview,
|
|
11256
|
-
isPending: isPreviewPending,
|
|
11257
|
-
isError: isPreviewError,
|
|
11258
|
-
error: previewError
|
|
11259
|
-
} = useOrderPreview(id);
|
|
11260
|
-
useInitiateOrderEdit({ preview });
|
|
11261
|
-
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11262
|
-
if (isError) {
|
|
11263
|
-
throw error;
|
|
11264
|
-
}
|
|
11265
|
-
if (isPreviewError) {
|
|
11266
|
-
throw previewError;
|
|
11267
|
-
}
|
|
11268
|
-
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11269
|
-
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11270
|
-
return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11271
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
|
|
11272
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16 px-6", children: [
|
|
11273
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
|
|
11274
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11275
|
-
] }) }) }),
|
|
11276
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11277
|
-
] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
|
|
11278
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11279
|
-
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11280
|
-
] }) });
|
|
11281
|
-
};
|
|
11282
|
-
const ShippingForm = ({ preview, order }) => {
|
|
11283
|
-
var _a;
|
|
11284
|
-
const { setIsOpen } = useStackedModal();
|
|
11285
|
-
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
11286
|
-
const [data, setData] = useState(null);
|
|
11287
|
-
const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
|
|
11288
|
-
const { shipping_options } = useShippingOptions(
|
|
11439
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
11440
|
+
id,
|
|
11289
11441
|
{
|
|
11290
|
-
|
|
11291
|
-
fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
|
|
11442
|
+
fields: "+sales_channel_id"
|
|
11292
11443
|
},
|
|
11293
11444
|
{
|
|
11294
|
-
enabled:
|
|
11445
|
+
enabled: !!id
|
|
11295
11446
|
}
|
|
11296
11447
|
);
|
|
11297
|
-
|
|
11298
|
-
|
|
11299
|
-
|
|
11300
|
-
|
|
11301
|
-
|
|
11302
|
-
|
|
11303
|
-
|
|
11304
|
-
|
|
11305
|
-
|
|
11306
|
-
|
|
11307
|
-
|
|
11448
|
+
if (isError) {
|
|
11449
|
+
throw error;
|
|
11450
|
+
}
|
|
11451
|
+
const ISrEADY = !!draft_order && !isPending;
|
|
11452
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
11453
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
11454
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
11455
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
11456
|
+
] }),
|
|
11457
|
+
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
11458
|
+
] });
|
|
11459
|
+
};
|
|
11460
|
+
const SalesChannelForm = ({ order }) => {
|
|
11461
|
+
const form = useForm({
|
|
11462
|
+
defaultValues: {
|
|
11463
|
+
sales_channel_id: order.sales_channel_id || ""
|
|
11464
|
+
},
|
|
11465
|
+
resolver: zodResolver(schema$2)
|
|
11466
|
+
});
|
|
11467
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11468
|
+
const { handleSuccess } = useRouteModal();
|
|
11469
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
11470
|
+
await mutateAsync(
|
|
11471
|
+
{
|
|
11472
|
+
sales_channel_id: data.sales_channel_id
|
|
11473
|
+
},
|
|
11474
|
+
{
|
|
11475
|
+
onSuccess: () => {
|
|
11476
|
+
toast.success("Sales channel updated");
|
|
11477
|
+
handleSuccess();
|
|
11478
|
+
},
|
|
11479
|
+
onError: (error) => {
|
|
11480
|
+
toast.error(error.message);
|
|
11481
|
+
}
|
|
11482
|
+
}
|
|
11483
|
+
);
|
|
11484
|
+
});
|
|
11485
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
11486
|
+
KeyboundForm,
|
|
11487
|
+
{
|
|
11488
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
11489
|
+
onSubmit,
|
|
11490
|
+
children: [
|
|
11491
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
11492
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11493
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11494
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11495
|
+
] }) })
|
|
11496
|
+
]
|
|
11497
|
+
}
|
|
11498
|
+
) });
|
|
11499
|
+
};
|
|
11500
|
+
const SalesChannelField = ({ control, order }) => {
|
|
11501
|
+
const salesChannels = useComboboxData({
|
|
11502
|
+
queryFn: async (params) => {
|
|
11503
|
+
return await sdk.admin.salesChannel.list(params);
|
|
11504
|
+
},
|
|
11505
|
+
queryKey: ["sales-channels"],
|
|
11506
|
+
getOptions: (data) => {
|
|
11507
|
+
return data.sales_channels.map((salesChannel) => ({
|
|
11508
|
+
label: salesChannel.name,
|
|
11509
|
+
value: salesChannel.id
|
|
11510
|
+
}));
|
|
11511
|
+
},
|
|
11512
|
+
defaultValue: order.sales_channel_id || void 0
|
|
11513
|
+
});
|
|
11514
|
+
return /* @__PURE__ */ jsx(
|
|
11515
|
+
Form$2.Field,
|
|
11516
|
+
{
|
|
11517
|
+
control,
|
|
11518
|
+
name: "sales_channel_id",
|
|
11519
|
+
render: ({ field }) => {
|
|
11520
|
+
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
11521
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
11522
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
11523
|
+
Combobox,
|
|
11524
|
+
{
|
|
11525
|
+
options: salesChannels.options,
|
|
11526
|
+
fetchNextPage: salesChannels.fetchNextPage,
|
|
11527
|
+
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
11528
|
+
searchValue: salesChannels.searchValue,
|
|
11529
|
+
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
11530
|
+
placeholder: "Select sales channel",
|
|
11531
|
+
...field
|
|
11532
|
+
}
|
|
11533
|
+
) }),
|
|
11534
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
11535
|
+
] });
|
|
11536
|
+
}
|
|
11537
|
+
}
|
|
11538
|
+
);
|
|
11539
|
+
};
|
|
11540
|
+
const schema$2 = objectType({
|
|
11541
|
+
sales_channel_id: stringType().min(1)
|
|
11542
|
+
});
|
|
11543
|
+
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11544
|
+
const Shipping = () => {
|
|
11545
|
+
var _a;
|
|
11546
|
+
const { id } = useParams();
|
|
11547
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
11548
|
+
fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
|
|
11549
|
+
});
|
|
11550
|
+
const {
|
|
11551
|
+
order: preview,
|
|
11552
|
+
isPending: isPreviewPending,
|
|
11553
|
+
isError: isPreviewError,
|
|
11554
|
+
error: previewError
|
|
11555
|
+
} = useOrderPreview(id);
|
|
11556
|
+
useInitiateOrderEdit({ preview });
|
|
11557
|
+
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11558
|
+
if (isError) {
|
|
11559
|
+
throw error;
|
|
11560
|
+
}
|
|
11561
|
+
if (isPreviewError) {
|
|
11562
|
+
throw previewError;
|
|
11563
|
+
}
|
|
11564
|
+
const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
|
|
11565
|
+
const isReady = preview && !isPreviewPending && order && !isPending;
|
|
11566
|
+
return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
|
|
11567
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
|
|
11568
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: /* @__PURE__ */ jsx("div", { className: "flex flex-1 flex-col items-center overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex w-full max-w-[720px] flex-col gap-y-6 py-16 px-6", children: [
|
|
11569
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
|
|
11570
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "This draft order currently has no items. Add items to the order before adding shipping." }) })
|
|
11571
|
+
] }) }) }),
|
|
11572
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
|
|
11573
|
+
] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
|
|
11574
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
|
|
11575
|
+
/* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
|
|
11576
|
+
] }) });
|
|
11577
|
+
};
|
|
11578
|
+
const ShippingForm = ({ preview, order }) => {
|
|
11579
|
+
var _a;
|
|
11580
|
+
const { setIsOpen } = useStackedModal();
|
|
11581
|
+
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
11582
|
+
const [data, setData] = useState(null);
|
|
11583
|
+
const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
|
|
11584
|
+
const { shipping_options } = useShippingOptions(
|
|
11585
|
+
{
|
|
11586
|
+
id: appliedShippingOptionIds,
|
|
11587
|
+
fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
|
|
11588
|
+
},
|
|
11589
|
+
{
|
|
11590
|
+
enabled: appliedShippingOptionIds.length > 0
|
|
11591
|
+
}
|
|
11592
|
+
);
|
|
11593
|
+
const uniqueShippingProfiles = useMemo(() => {
|
|
11594
|
+
const profiles = /* @__PURE__ */ new Map();
|
|
11595
|
+
getUniqueShippingProfiles(order.items).forEach((profile) => {
|
|
11596
|
+
profiles.set(profile.id, profile);
|
|
11597
|
+
});
|
|
11598
|
+
shipping_options == null ? void 0 : shipping_options.forEach((option) => {
|
|
11599
|
+
profiles.set(option.shipping_profile_id, option.shipping_profile);
|
|
11600
|
+
});
|
|
11601
|
+
return Array.from(profiles.values());
|
|
11602
|
+
}, [order.items, shipping_options]);
|
|
11603
|
+
const { handleSuccess } = useRouteModal();
|
|
11308
11604
|
const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
|
|
11309
11605
|
const { mutateAsync: requestOrderEdit } = useDraftOrderRequestEdit(preview.id);
|
|
11310
11606
|
const { mutateAsync: removeShippingMethod } = useDraftOrderRemoveShippingMethod(preview.id);
|
|
@@ -12051,112 +12347,6 @@ const CustomAmountField = ({
|
|
|
12051
12347
|
}
|
|
12052
12348
|
);
|
|
12053
12349
|
};
|
|
12054
|
-
const SalesChannel = () => {
|
|
12055
|
-
const { id } = useParams();
|
|
12056
|
-
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
12057
|
-
id,
|
|
12058
|
-
{
|
|
12059
|
-
fields: "+sales_channel_id"
|
|
12060
|
-
},
|
|
12061
|
-
{
|
|
12062
|
-
enabled: !!id
|
|
12063
|
-
}
|
|
12064
|
-
);
|
|
12065
|
-
if (isError) {
|
|
12066
|
-
throw error;
|
|
12067
|
-
}
|
|
12068
|
-
const ISrEADY = !!draft_order && !isPending;
|
|
12069
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12070
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12071
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
12072
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
12073
|
-
] }),
|
|
12074
|
-
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
12075
|
-
] });
|
|
12076
|
-
};
|
|
12077
|
-
const SalesChannelForm = ({ order }) => {
|
|
12078
|
-
const form = useForm({
|
|
12079
|
-
defaultValues: {
|
|
12080
|
-
sales_channel_id: order.sales_channel_id || ""
|
|
12081
|
-
},
|
|
12082
|
-
resolver: zodResolver(schema$3)
|
|
12083
|
-
});
|
|
12084
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12085
|
-
const { handleSuccess } = useRouteModal();
|
|
12086
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12087
|
-
await mutateAsync(
|
|
12088
|
-
{
|
|
12089
|
-
sales_channel_id: data.sales_channel_id
|
|
12090
|
-
},
|
|
12091
|
-
{
|
|
12092
|
-
onSuccess: () => {
|
|
12093
|
-
toast.success("Sales channel updated");
|
|
12094
|
-
handleSuccess();
|
|
12095
|
-
},
|
|
12096
|
-
onError: (error) => {
|
|
12097
|
-
toast.error(error.message);
|
|
12098
|
-
}
|
|
12099
|
-
}
|
|
12100
|
-
);
|
|
12101
|
-
});
|
|
12102
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12103
|
-
KeyboundForm,
|
|
12104
|
-
{
|
|
12105
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12106
|
-
onSubmit,
|
|
12107
|
-
children: [
|
|
12108
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
12109
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12110
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12111
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12112
|
-
] }) })
|
|
12113
|
-
]
|
|
12114
|
-
}
|
|
12115
|
-
) });
|
|
12116
|
-
};
|
|
12117
|
-
const SalesChannelField = ({ control, order }) => {
|
|
12118
|
-
const salesChannels = useComboboxData({
|
|
12119
|
-
queryFn: async (params) => {
|
|
12120
|
-
return await sdk.admin.salesChannel.list(params);
|
|
12121
|
-
},
|
|
12122
|
-
queryKey: ["sales-channels"],
|
|
12123
|
-
getOptions: (data) => {
|
|
12124
|
-
return data.sales_channels.map((salesChannel) => ({
|
|
12125
|
-
label: salesChannel.name,
|
|
12126
|
-
value: salesChannel.id
|
|
12127
|
-
}));
|
|
12128
|
-
},
|
|
12129
|
-
defaultValue: order.sales_channel_id || void 0
|
|
12130
|
-
});
|
|
12131
|
-
return /* @__PURE__ */ jsx(
|
|
12132
|
-
Form$2.Field,
|
|
12133
|
-
{
|
|
12134
|
-
control,
|
|
12135
|
-
name: "sales_channel_id",
|
|
12136
|
-
render: ({ field }) => {
|
|
12137
|
-
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12138
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
12139
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
12140
|
-
Combobox,
|
|
12141
|
-
{
|
|
12142
|
-
options: salesChannels.options,
|
|
12143
|
-
fetchNextPage: salesChannels.fetchNextPage,
|
|
12144
|
-
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
12145
|
-
searchValue: salesChannels.searchValue,
|
|
12146
|
-
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
12147
|
-
placeholder: "Select sales channel",
|
|
12148
|
-
...field
|
|
12149
|
-
}
|
|
12150
|
-
) }),
|
|
12151
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12152
|
-
] });
|
|
12153
|
-
}
|
|
12154
|
-
}
|
|
12155
|
-
);
|
|
12156
|
-
};
|
|
12157
|
-
const schema$3 = objectType({
|
|
12158
|
-
sales_channel_id: stringType().min(1)
|
|
12159
|
-
});
|
|
12160
12350
|
const ShippingAddress = () => {
|
|
12161
12351
|
const { id } = useParams();
|
|
12162
12352
|
const { order, isPending, isError, error } = useOrder(id, {
|
|
@@ -12189,7 +12379,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12189
12379
|
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12190
12380
|
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12191
12381
|
},
|
|
12192
|
-
resolver: zodResolver(schema$
|
|
12382
|
+
resolver: zodResolver(schema$1)
|
|
12193
12383
|
});
|
|
12194
12384
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12195
12385
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12359,7 +12549,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12359
12549
|
}
|
|
12360
12550
|
) });
|
|
12361
12551
|
};
|
|
12362
|
-
const schema$
|
|
12552
|
+
const schema$1 = addressSchema;
|
|
12363
12553
|
const TransferOwnership = () => {
|
|
12364
12554
|
const { id } = useParams();
|
|
12365
12555
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12383,7 +12573,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12383
12573
|
defaultValues: {
|
|
12384
12574
|
customer_id: order.customer_id || ""
|
|
12385
12575
|
},
|
|
12386
|
-
resolver: zodResolver(schema
|
|
12576
|
+
resolver: zodResolver(schema)
|
|
12387
12577
|
});
|
|
12388
12578
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12389
12579
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12833,199 +13023,9 @@ const Illustration = () => {
|
|
|
12833
13023
|
}
|
|
12834
13024
|
);
|
|
12835
13025
|
};
|
|
12836
|
-
const schema
|
|
13026
|
+
const schema = objectType({
|
|
12837
13027
|
customer_id: stringType().min(1)
|
|
12838
13028
|
});
|
|
12839
|
-
const BillingAddress = () => {
|
|
12840
|
-
const { id } = useParams();
|
|
12841
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
12842
|
-
fields: "+billing_address"
|
|
12843
|
-
});
|
|
12844
|
-
if (isError) {
|
|
12845
|
-
throw error;
|
|
12846
|
-
}
|
|
12847
|
-
const isReady = !isPending && !!order;
|
|
12848
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12849
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12850
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
|
|
12851
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
12852
|
-
] }),
|
|
12853
|
-
isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
|
|
12854
|
-
] });
|
|
12855
|
-
};
|
|
12856
|
-
const BillingAddressForm = ({ order }) => {
|
|
12857
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12858
|
-
const form = useForm({
|
|
12859
|
-
defaultValues: {
|
|
12860
|
-
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12861
|
-
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12862
|
-
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
12863
|
-
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12864
|
-
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12865
|
-
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
12866
|
-
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
12867
|
-
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12868
|
-
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12869
|
-
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
12870
|
-
},
|
|
12871
|
-
resolver: zodResolver(schema)
|
|
12872
|
-
});
|
|
12873
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12874
|
-
const { handleSuccess } = useRouteModal();
|
|
12875
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12876
|
-
await mutateAsync(
|
|
12877
|
-
{ billing_address: data },
|
|
12878
|
-
{
|
|
12879
|
-
onSuccess: () => {
|
|
12880
|
-
handleSuccess();
|
|
12881
|
-
},
|
|
12882
|
-
onError: (error) => {
|
|
12883
|
-
toast.error(error.message);
|
|
12884
|
-
}
|
|
12885
|
-
}
|
|
12886
|
-
);
|
|
12887
|
-
});
|
|
12888
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12889
|
-
KeyboundForm,
|
|
12890
|
-
{
|
|
12891
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12892
|
-
onSubmit,
|
|
12893
|
-
children: [
|
|
12894
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
12895
|
-
/* @__PURE__ */ jsx(
|
|
12896
|
-
Form$2.Field,
|
|
12897
|
-
{
|
|
12898
|
-
control: form.control,
|
|
12899
|
-
name: "country_code",
|
|
12900
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12901
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
12902
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
12903
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12904
|
-
] })
|
|
12905
|
-
}
|
|
12906
|
-
),
|
|
12907
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12908
|
-
/* @__PURE__ */ jsx(
|
|
12909
|
-
Form$2.Field,
|
|
12910
|
-
{
|
|
12911
|
-
control: form.control,
|
|
12912
|
-
name: "first_name",
|
|
12913
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12914
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12915
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12916
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12917
|
-
] })
|
|
12918
|
-
}
|
|
12919
|
-
),
|
|
12920
|
-
/* @__PURE__ */ jsx(
|
|
12921
|
-
Form$2.Field,
|
|
12922
|
-
{
|
|
12923
|
-
control: form.control,
|
|
12924
|
-
name: "last_name",
|
|
12925
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12926
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12927
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12928
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12929
|
-
] })
|
|
12930
|
-
}
|
|
12931
|
-
)
|
|
12932
|
-
] }),
|
|
12933
|
-
/* @__PURE__ */ jsx(
|
|
12934
|
-
Form$2.Field,
|
|
12935
|
-
{
|
|
12936
|
-
control: form.control,
|
|
12937
|
-
name: "company",
|
|
12938
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12939
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12940
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12941
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12942
|
-
] })
|
|
12943
|
-
}
|
|
12944
|
-
),
|
|
12945
|
-
/* @__PURE__ */ jsx(
|
|
12946
|
-
Form$2.Field,
|
|
12947
|
-
{
|
|
12948
|
-
control: form.control,
|
|
12949
|
-
name: "address_1",
|
|
12950
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12951
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12952
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12953
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12954
|
-
] })
|
|
12955
|
-
}
|
|
12956
|
-
),
|
|
12957
|
-
/* @__PURE__ */ jsx(
|
|
12958
|
-
Form$2.Field,
|
|
12959
|
-
{
|
|
12960
|
-
control: form.control,
|
|
12961
|
-
name: "address_2",
|
|
12962
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12963
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12964
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12965
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12966
|
-
] })
|
|
12967
|
-
}
|
|
12968
|
-
),
|
|
12969
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12970
|
-
/* @__PURE__ */ jsx(
|
|
12971
|
-
Form$2.Field,
|
|
12972
|
-
{
|
|
12973
|
-
control: form.control,
|
|
12974
|
-
name: "postal_code",
|
|
12975
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12976
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12977
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12978
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12979
|
-
] })
|
|
12980
|
-
}
|
|
12981
|
-
),
|
|
12982
|
-
/* @__PURE__ */ jsx(
|
|
12983
|
-
Form$2.Field,
|
|
12984
|
-
{
|
|
12985
|
-
control: form.control,
|
|
12986
|
-
name: "city",
|
|
12987
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12988
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
12989
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12990
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12991
|
-
] })
|
|
12992
|
-
}
|
|
12993
|
-
)
|
|
12994
|
-
] }),
|
|
12995
|
-
/* @__PURE__ */ jsx(
|
|
12996
|
-
Form$2.Field,
|
|
12997
|
-
{
|
|
12998
|
-
control: form.control,
|
|
12999
|
-
name: "province",
|
|
13000
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13001
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
13002
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13003
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13004
|
-
] })
|
|
13005
|
-
}
|
|
13006
|
-
),
|
|
13007
|
-
/* @__PURE__ */ jsx(
|
|
13008
|
-
Form$2.Field,
|
|
13009
|
-
{
|
|
13010
|
-
control: form.control,
|
|
13011
|
-
name: "phone",
|
|
13012
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13013
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
13014
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13015
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13016
|
-
] })
|
|
13017
|
-
}
|
|
13018
|
-
)
|
|
13019
|
-
] }) }),
|
|
13020
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13021
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13022
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
13023
|
-
] }) })
|
|
13024
|
-
]
|
|
13025
|
-
}
|
|
13026
|
-
) });
|
|
13027
|
-
};
|
|
13028
|
-
const schema = addressSchema;
|
|
13029
13029
|
const widgetModule = { widgets: [] };
|
|
13030
13030
|
const routeModule = {
|
|
13031
13031
|
routes: [
|
|
@@ -13046,6 +13046,10 @@ const routeModule = {
|
|
|
13046
13046
|
handle,
|
|
13047
13047
|
loader,
|
|
13048
13048
|
children: [
|
|
13049
|
+
{
|
|
13050
|
+
Component: BillingAddress,
|
|
13051
|
+
path: "/draft-orders/:id/billing-address"
|
|
13052
|
+
},
|
|
13049
13053
|
{
|
|
13050
13054
|
Component: CustomItems,
|
|
13051
13055
|
path: "/draft-orders/:id/custom-items"
|
|
@@ -13066,14 +13070,14 @@ const routeModule = {
|
|
|
13066
13070
|
Component: Promotions,
|
|
13067
13071
|
path: "/draft-orders/:id/promotions"
|
|
13068
13072
|
},
|
|
13069
|
-
{
|
|
13070
|
-
Component: Shipping,
|
|
13071
|
-
path: "/draft-orders/:id/shipping"
|
|
13072
|
-
},
|
|
13073
13073
|
{
|
|
13074
13074
|
Component: SalesChannel,
|
|
13075
13075
|
path: "/draft-orders/:id/sales-channel"
|
|
13076
13076
|
},
|
|
13077
|
+
{
|
|
13078
|
+
Component: Shipping,
|
|
13079
|
+
path: "/draft-orders/:id/shipping"
|
|
13080
|
+
},
|
|
13077
13081
|
{
|
|
13078
13082
|
Component: ShippingAddress,
|
|
13079
13083
|
path: "/draft-orders/:id/shipping-address"
|
|
@@ -13081,10 +13085,6 @@ const routeModule = {
|
|
|
13081
13085
|
{
|
|
13082
13086
|
Component: TransferOwnership,
|
|
13083
13087
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13084
|
-
},
|
|
13085
|
-
{
|
|
13086
|
-
Component: BillingAddress,
|
|
13087
|
-
path: "/draft-orders/:id/billing-address"
|
|
13088
13088
|
}
|
|
13089
13089
|
]
|
|
13090
13090
|
}
|