@medusajs/draft-order 2.11.4-preview-20251123210126 → 2.11.4-preview-20251124032825
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 +114 -114
- package/.medusa/server/src/admin/index.mjs +114 -114
- package/package.json +16 -16
|
@@ -11452,6 +11452,112 @@ function getPromotionIds(items, shippingMethods) {
|
|
|
11452
11452
|
}
|
|
11453
11453
|
return Array.from(promotionIds);
|
|
11454
11454
|
}
|
|
11455
|
+
const SalesChannel = () => {
|
|
11456
|
+
const { id } = reactRouterDom.useParams();
|
|
11457
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
11458
|
+
id,
|
|
11459
|
+
{
|
|
11460
|
+
fields: "+sales_channel_id"
|
|
11461
|
+
},
|
|
11462
|
+
{
|
|
11463
|
+
enabled: !!id
|
|
11464
|
+
}
|
|
11465
|
+
);
|
|
11466
|
+
if (isError) {
|
|
11467
|
+
throw error;
|
|
11468
|
+
}
|
|
11469
|
+
const ISrEADY = !!draft_order && !isPending;
|
|
11470
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
11471
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
11472
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Sales Channel" }) }),
|
|
11473
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
11474
|
+
] }),
|
|
11475
|
+
ISrEADY && /* @__PURE__ */ jsxRuntime.jsx(SalesChannelForm, { order: draft_order })
|
|
11476
|
+
] });
|
|
11477
|
+
};
|
|
11478
|
+
const SalesChannelForm = ({ order }) => {
|
|
11479
|
+
const form = reactHookForm.useForm({
|
|
11480
|
+
defaultValues: {
|
|
11481
|
+
sales_channel_id: order.sales_channel_id || ""
|
|
11482
|
+
},
|
|
11483
|
+
resolver: zod.zodResolver(schema$2)
|
|
11484
|
+
});
|
|
11485
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11486
|
+
const { handleSuccess } = useRouteModal();
|
|
11487
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
11488
|
+
await mutateAsync(
|
|
11489
|
+
{
|
|
11490
|
+
sales_channel_id: data.sales_channel_id
|
|
11491
|
+
},
|
|
11492
|
+
{
|
|
11493
|
+
onSuccess: () => {
|
|
11494
|
+
ui.toast.success("Sales channel updated");
|
|
11495
|
+
handleSuccess();
|
|
11496
|
+
},
|
|
11497
|
+
onError: (error) => {
|
|
11498
|
+
ui.toast.error(error.message);
|
|
11499
|
+
}
|
|
11500
|
+
}
|
|
11501
|
+
);
|
|
11502
|
+
});
|
|
11503
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11504
|
+
KeyboundForm,
|
|
11505
|
+
{
|
|
11506
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
11507
|
+
onSubmit,
|
|
11508
|
+
children: [
|
|
11509
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(SalesChannelField, { control: form.control, order }) }),
|
|
11510
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11511
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11512
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11513
|
+
] }) })
|
|
11514
|
+
]
|
|
11515
|
+
}
|
|
11516
|
+
) });
|
|
11517
|
+
};
|
|
11518
|
+
const SalesChannelField = ({ control, order }) => {
|
|
11519
|
+
const salesChannels = useComboboxData({
|
|
11520
|
+
queryFn: async (params) => {
|
|
11521
|
+
return await sdk.admin.salesChannel.list(params);
|
|
11522
|
+
},
|
|
11523
|
+
queryKey: ["sales-channels"],
|
|
11524
|
+
getOptions: (data) => {
|
|
11525
|
+
return data.sales_channels.map((salesChannel) => ({
|
|
11526
|
+
label: salesChannel.name,
|
|
11527
|
+
value: salesChannel.id
|
|
11528
|
+
}));
|
|
11529
|
+
},
|
|
11530
|
+
defaultValue: order.sales_channel_id || void 0
|
|
11531
|
+
});
|
|
11532
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
11533
|
+
Form$2.Field,
|
|
11534
|
+
{
|
|
11535
|
+
control,
|
|
11536
|
+
name: "sales_channel_id",
|
|
11537
|
+
render: ({ field }) => {
|
|
11538
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11539
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
11540
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
11541
|
+
Combobox,
|
|
11542
|
+
{
|
|
11543
|
+
options: salesChannels.options,
|
|
11544
|
+
fetchNextPage: salesChannels.fetchNextPage,
|
|
11545
|
+
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
11546
|
+
searchValue: salesChannels.searchValue,
|
|
11547
|
+
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
11548
|
+
placeholder: "Select sales channel",
|
|
11549
|
+
...field
|
|
11550
|
+
}
|
|
11551
|
+
) }),
|
|
11552
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11553
|
+
] });
|
|
11554
|
+
}
|
|
11555
|
+
}
|
|
11556
|
+
);
|
|
11557
|
+
};
|
|
11558
|
+
const schema$2 = objectType({
|
|
11559
|
+
sales_channel_id: stringType().min(1)
|
|
11560
|
+
});
|
|
11455
11561
|
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11456
11562
|
const Shipping = () => {
|
|
11457
11563
|
var _a;
|
|
@@ -12291,7 +12397,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12291
12397
|
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12292
12398
|
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12293
12399
|
},
|
|
12294
|
-
resolver: zod.zodResolver(schema$
|
|
12400
|
+
resolver: zod.zodResolver(schema$1)
|
|
12295
12401
|
});
|
|
12296
12402
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12297
12403
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12461,7 +12567,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12461
12567
|
}
|
|
12462
12568
|
) });
|
|
12463
12569
|
};
|
|
12464
|
-
const schema$
|
|
12570
|
+
const schema$1 = addressSchema;
|
|
12465
12571
|
const TransferOwnership = () => {
|
|
12466
12572
|
const { id } = reactRouterDom.useParams();
|
|
12467
12573
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12485,7 +12591,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12485
12591
|
defaultValues: {
|
|
12486
12592
|
customer_id: order.customer_id || ""
|
|
12487
12593
|
},
|
|
12488
|
-
resolver: zod.zodResolver(schema
|
|
12594
|
+
resolver: zod.zodResolver(schema)
|
|
12489
12595
|
});
|
|
12490
12596
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12491
12597
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12935,114 +13041,8 @@ const Illustration = () => {
|
|
|
12935
13041
|
}
|
|
12936
13042
|
);
|
|
12937
13043
|
};
|
|
12938
|
-
const schema$1 = objectType({
|
|
12939
|
-
customer_id: stringType().min(1)
|
|
12940
|
-
});
|
|
12941
|
-
const SalesChannel = () => {
|
|
12942
|
-
const { id } = reactRouterDom.useParams();
|
|
12943
|
-
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
12944
|
-
id,
|
|
12945
|
-
{
|
|
12946
|
-
fields: "+sales_channel_id"
|
|
12947
|
-
},
|
|
12948
|
-
{
|
|
12949
|
-
enabled: !!id
|
|
12950
|
-
}
|
|
12951
|
-
);
|
|
12952
|
-
if (isError) {
|
|
12953
|
-
throw error;
|
|
12954
|
-
}
|
|
12955
|
-
const ISrEADY = !!draft_order && !isPending;
|
|
12956
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12957
|
-
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12958
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Sales Channel" }) }),
|
|
12959
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
12960
|
-
] }),
|
|
12961
|
-
ISrEADY && /* @__PURE__ */ jsxRuntime.jsx(SalesChannelForm, { order: draft_order })
|
|
12962
|
-
] });
|
|
12963
|
-
};
|
|
12964
|
-
const SalesChannelForm = ({ order }) => {
|
|
12965
|
-
const form = reactHookForm.useForm({
|
|
12966
|
-
defaultValues: {
|
|
12967
|
-
sales_channel_id: order.sales_channel_id || ""
|
|
12968
|
-
},
|
|
12969
|
-
resolver: zod.zodResolver(schema)
|
|
12970
|
-
});
|
|
12971
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12972
|
-
const { handleSuccess } = useRouteModal();
|
|
12973
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12974
|
-
await mutateAsync(
|
|
12975
|
-
{
|
|
12976
|
-
sales_channel_id: data.sales_channel_id
|
|
12977
|
-
},
|
|
12978
|
-
{
|
|
12979
|
-
onSuccess: () => {
|
|
12980
|
-
ui.toast.success("Sales channel updated");
|
|
12981
|
-
handleSuccess();
|
|
12982
|
-
},
|
|
12983
|
-
onError: (error) => {
|
|
12984
|
-
ui.toast.error(error.message);
|
|
12985
|
-
}
|
|
12986
|
-
}
|
|
12987
|
-
);
|
|
12988
|
-
});
|
|
12989
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12990
|
-
KeyboundForm,
|
|
12991
|
-
{
|
|
12992
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12993
|
-
onSubmit,
|
|
12994
|
-
children: [
|
|
12995
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(SalesChannelField, { control: form.control, order }) }),
|
|
12996
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12997
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12998
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12999
|
-
] }) })
|
|
13000
|
-
]
|
|
13001
|
-
}
|
|
13002
|
-
) });
|
|
13003
|
-
};
|
|
13004
|
-
const SalesChannelField = ({ control, order }) => {
|
|
13005
|
-
const salesChannels = useComboboxData({
|
|
13006
|
-
queryFn: async (params) => {
|
|
13007
|
-
return await sdk.admin.salesChannel.list(params);
|
|
13008
|
-
},
|
|
13009
|
-
queryKey: ["sales-channels"],
|
|
13010
|
-
getOptions: (data) => {
|
|
13011
|
-
return data.sales_channels.map((salesChannel) => ({
|
|
13012
|
-
label: salesChannel.name,
|
|
13013
|
-
value: salesChannel.id
|
|
13014
|
-
}));
|
|
13015
|
-
},
|
|
13016
|
-
defaultValue: order.sales_channel_id || void 0
|
|
13017
|
-
});
|
|
13018
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
13019
|
-
Form$2.Field,
|
|
13020
|
-
{
|
|
13021
|
-
control,
|
|
13022
|
-
name: "sales_channel_id",
|
|
13023
|
-
render: ({ field }) => {
|
|
13024
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
13025
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
13026
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
13027
|
-
Combobox,
|
|
13028
|
-
{
|
|
13029
|
-
options: salesChannels.options,
|
|
13030
|
-
fetchNextPage: salesChannels.fetchNextPage,
|
|
13031
|
-
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
13032
|
-
searchValue: salesChannels.searchValue,
|
|
13033
|
-
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
13034
|
-
placeholder: "Select sales channel",
|
|
13035
|
-
...field
|
|
13036
|
-
}
|
|
13037
|
-
) }),
|
|
13038
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
13039
|
-
] });
|
|
13040
|
-
}
|
|
13041
|
-
}
|
|
13042
|
-
);
|
|
13043
|
-
};
|
|
13044
13044
|
const schema = objectType({
|
|
13045
|
-
|
|
13045
|
+
customer_id: stringType().min(1)
|
|
13046
13046
|
});
|
|
13047
13047
|
const widgetModule = { widgets: [] };
|
|
13048
13048
|
const routeModule = {
|
|
@@ -13088,6 +13088,10 @@ const routeModule = {
|
|
|
13088
13088
|
Component: Promotions,
|
|
13089
13089
|
path: "/draft-orders/:id/promotions"
|
|
13090
13090
|
},
|
|
13091
|
+
{
|
|
13092
|
+
Component: SalesChannel,
|
|
13093
|
+
path: "/draft-orders/:id/sales-channel"
|
|
13094
|
+
},
|
|
13091
13095
|
{
|
|
13092
13096
|
Component: Shipping,
|
|
13093
13097
|
path: "/draft-orders/:id/shipping"
|
|
@@ -13099,10 +13103,6 @@ const routeModule = {
|
|
|
13099
13103
|
{
|
|
13100
13104
|
Component: TransferOwnership,
|
|
13101
13105
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13102
|
-
},
|
|
13103
|
-
{
|
|
13104
|
-
Component: SalesChannel,
|
|
13105
|
-
path: "/draft-orders/:id/sales-channel"
|
|
13106
13106
|
}
|
|
13107
13107
|
]
|
|
13108
13108
|
}
|
|
@@ -11445,6 +11445,112 @@ function getPromotionIds(items, shippingMethods) {
|
|
|
11445
11445
|
}
|
|
11446
11446
|
return Array.from(promotionIds);
|
|
11447
11447
|
}
|
|
11448
|
+
const SalesChannel = () => {
|
|
11449
|
+
const { id } = useParams();
|
|
11450
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
11451
|
+
id,
|
|
11452
|
+
{
|
|
11453
|
+
fields: "+sales_channel_id"
|
|
11454
|
+
},
|
|
11455
|
+
{
|
|
11456
|
+
enabled: !!id
|
|
11457
|
+
}
|
|
11458
|
+
);
|
|
11459
|
+
if (isError) {
|
|
11460
|
+
throw error;
|
|
11461
|
+
}
|
|
11462
|
+
const ISrEADY = !!draft_order && !isPending;
|
|
11463
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
11464
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
11465
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
11466
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
11467
|
+
] }),
|
|
11468
|
+
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
11469
|
+
] });
|
|
11470
|
+
};
|
|
11471
|
+
const SalesChannelForm = ({ order }) => {
|
|
11472
|
+
const form = useForm({
|
|
11473
|
+
defaultValues: {
|
|
11474
|
+
sales_channel_id: order.sales_channel_id || ""
|
|
11475
|
+
},
|
|
11476
|
+
resolver: zodResolver(schema$2)
|
|
11477
|
+
});
|
|
11478
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11479
|
+
const { handleSuccess } = useRouteModal();
|
|
11480
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
11481
|
+
await mutateAsync(
|
|
11482
|
+
{
|
|
11483
|
+
sales_channel_id: data.sales_channel_id
|
|
11484
|
+
},
|
|
11485
|
+
{
|
|
11486
|
+
onSuccess: () => {
|
|
11487
|
+
toast.success("Sales channel updated");
|
|
11488
|
+
handleSuccess();
|
|
11489
|
+
},
|
|
11490
|
+
onError: (error) => {
|
|
11491
|
+
toast.error(error.message);
|
|
11492
|
+
}
|
|
11493
|
+
}
|
|
11494
|
+
);
|
|
11495
|
+
});
|
|
11496
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
11497
|
+
KeyboundForm,
|
|
11498
|
+
{
|
|
11499
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
11500
|
+
onSubmit,
|
|
11501
|
+
children: [
|
|
11502
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
11503
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11504
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11505
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11506
|
+
] }) })
|
|
11507
|
+
]
|
|
11508
|
+
}
|
|
11509
|
+
) });
|
|
11510
|
+
};
|
|
11511
|
+
const SalesChannelField = ({ control, order }) => {
|
|
11512
|
+
const salesChannels = useComboboxData({
|
|
11513
|
+
queryFn: async (params) => {
|
|
11514
|
+
return await sdk.admin.salesChannel.list(params);
|
|
11515
|
+
},
|
|
11516
|
+
queryKey: ["sales-channels"],
|
|
11517
|
+
getOptions: (data) => {
|
|
11518
|
+
return data.sales_channels.map((salesChannel) => ({
|
|
11519
|
+
label: salesChannel.name,
|
|
11520
|
+
value: salesChannel.id
|
|
11521
|
+
}));
|
|
11522
|
+
},
|
|
11523
|
+
defaultValue: order.sales_channel_id || void 0
|
|
11524
|
+
});
|
|
11525
|
+
return /* @__PURE__ */ jsx(
|
|
11526
|
+
Form$2.Field,
|
|
11527
|
+
{
|
|
11528
|
+
control,
|
|
11529
|
+
name: "sales_channel_id",
|
|
11530
|
+
render: ({ field }) => {
|
|
11531
|
+
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
11532
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
11533
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
11534
|
+
Combobox,
|
|
11535
|
+
{
|
|
11536
|
+
options: salesChannels.options,
|
|
11537
|
+
fetchNextPage: salesChannels.fetchNextPage,
|
|
11538
|
+
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
11539
|
+
searchValue: salesChannels.searchValue,
|
|
11540
|
+
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
11541
|
+
placeholder: "Select sales channel",
|
|
11542
|
+
...field
|
|
11543
|
+
}
|
|
11544
|
+
) }),
|
|
11545
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
11546
|
+
] });
|
|
11547
|
+
}
|
|
11548
|
+
}
|
|
11549
|
+
);
|
|
11550
|
+
};
|
|
11551
|
+
const schema$2 = objectType({
|
|
11552
|
+
sales_channel_id: stringType().min(1)
|
|
11553
|
+
});
|
|
11448
11554
|
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11449
11555
|
const Shipping = () => {
|
|
11450
11556
|
var _a;
|
|
@@ -12284,7 +12390,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12284
12390
|
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12285
12391
|
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12286
12392
|
},
|
|
12287
|
-
resolver: zodResolver(schema$
|
|
12393
|
+
resolver: zodResolver(schema$1)
|
|
12288
12394
|
});
|
|
12289
12395
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12290
12396
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12454,7 +12560,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12454
12560
|
}
|
|
12455
12561
|
) });
|
|
12456
12562
|
};
|
|
12457
|
-
const schema$
|
|
12563
|
+
const schema$1 = addressSchema;
|
|
12458
12564
|
const TransferOwnership = () => {
|
|
12459
12565
|
const { id } = useParams();
|
|
12460
12566
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12478,7 +12584,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12478
12584
|
defaultValues: {
|
|
12479
12585
|
customer_id: order.customer_id || ""
|
|
12480
12586
|
},
|
|
12481
|
-
resolver: zodResolver(schema
|
|
12587
|
+
resolver: zodResolver(schema)
|
|
12482
12588
|
});
|
|
12483
12589
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12484
12590
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12928,114 +13034,8 @@ const Illustration = () => {
|
|
|
12928
13034
|
}
|
|
12929
13035
|
);
|
|
12930
13036
|
};
|
|
12931
|
-
const schema$1 = objectType({
|
|
12932
|
-
customer_id: stringType().min(1)
|
|
12933
|
-
});
|
|
12934
|
-
const SalesChannel = () => {
|
|
12935
|
-
const { id } = useParams();
|
|
12936
|
-
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
12937
|
-
id,
|
|
12938
|
-
{
|
|
12939
|
-
fields: "+sales_channel_id"
|
|
12940
|
-
},
|
|
12941
|
-
{
|
|
12942
|
-
enabled: !!id
|
|
12943
|
-
}
|
|
12944
|
-
);
|
|
12945
|
-
if (isError) {
|
|
12946
|
-
throw error;
|
|
12947
|
-
}
|
|
12948
|
-
const ISrEADY = !!draft_order && !isPending;
|
|
12949
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12950
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12951
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
|
|
12952
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
|
|
12953
|
-
] }),
|
|
12954
|
-
ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
|
|
12955
|
-
] });
|
|
12956
|
-
};
|
|
12957
|
-
const SalesChannelForm = ({ order }) => {
|
|
12958
|
-
const form = useForm({
|
|
12959
|
-
defaultValues: {
|
|
12960
|
-
sales_channel_id: order.sales_channel_id || ""
|
|
12961
|
-
},
|
|
12962
|
-
resolver: zodResolver(schema)
|
|
12963
|
-
});
|
|
12964
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12965
|
-
const { handleSuccess } = useRouteModal();
|
|
12966
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12967
|
-
await mutateAsync(
|
|
12968
|
-
{
|
|
12969
|
-
sales_channel_id: data.sales_channel_id
|
|
12970
|
-
},
|
|
12971
|
-
{
|
|
12972
|
-
onSuccess: () => {
|
|
12973
|
-
toast.success("Sales channel updated");
|
|
12974
|
-
handleSuccess();
|
|
12975
|
-
},
|
|
12976
|
-
onError: (error) => {
|
|
12977
|
-
toast.error(error.message);
|
|
12978
|
-
}
|
|
12979
|
-
}
|
|
12980
|
-
);
|
|
12981
|
-
});
|
|
12982
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12983
|
-
KeyboundForm,
|
|
12984
|
-
{
|
|
12985
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12986
|
-
onSubmit,
|
|
12987
|
-
children: [
|
|
12988
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
|
|
12989
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12990
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12991
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12992
|
-
] }) })
|
|
12993
|
-
]
|
|
12994
|
-
}
|
|
12995
|
-
) });
|
|
12996
|
-
};
|
|
12997
|
-
const SalesChannelField = ({ control, order }) => {
|
|
12998
|
-
const salesChannels = useComboboxData({
|
|
12999
|
-
queryFn: async (params) => {
|
|
13000
|
-
return await sdk.admin.salesChannel.list(params);
|
|
13001
|
-
},
|
|
13002
|
-
queryKey: ["sales-channels"],
|
|
13003
|
-
getOptions: (data) => {
|
|
13004
|
-
return data.sales_channels.map((salesChannel) => ({
|
|
13005
|
-
label: salesChannel.name,
|
|
13006
|
-
value: salesChannel.id
|
|
13007
|
-
}));
|
|
13008
|
-
},
|
|
13009
|
-
defaultValue: order.sales_channel_id || void 0
|
|
13010
|
-
});
|
|
13011
|
-
return /* @__PURE__ */ jsx(
|
|
13012
|
-
Form$2.Field,
|
|
13013
|
-
{
|
|
13014
|
-
control,
|
|
13015
|
-
name: "sales_channel_id",
|
|
13016
|
-
render: ({ field }) => {
|
|
13017
|
-
return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13018
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
13019
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
13020
|
-
Combobox,
|
|
13021
|
-
{
|
|
13022
|
-
options: salesChannels.options,
|
|
13023
|
-
fetchNextPage: salesChannels.fetchNextPage,
|
|
13024
|
-
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
13025
|
-
searchValue: salesChannels.searchValue,
|
|
13026
|
-
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
13027
|
-
placeholder: "Select sales channel",
|
|
13028
|
-
...field
|
|
13029
|
-
}
|
|
13030
|
-
) }),
|
|
13031
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13032
|
-
] });
|
|
13033
|
-
}
|
|
13034
|
-
}
|
|
13035
|
-
);
|
|
13036
|
-
};
|
|
13037
13037
|
const schema = objectType({
|
|
13038
|
-
|
|
13038
|
+
customer_id: stringType().min(1)
|
|
13039
13039
|
});
|
|
13040
13040
|
const widgetModule = { widgets: [] };
|
|
13041
13041
|
const routeModule = {
|
|
@@ -13081,6 +13081,10 @@ const routeModule = {
|
|
|
13081
13081
|
Component: Promotions,
|
|
13082
13082
|
path: "/draft-orders/:id/promotions"
|
|
13083
13083
|
},
|
|
13084
|
+
{
|
|
13085
|
+
Component: SalesChannel,
|
|
13086
|
+
path: "/draft-orders/:id/sales-channel"
|
|
13087
|
+
},
|
|
13084
13088
|
{
|
|
13085
13089
|
Component: Shipping,
|
|
13086
13090
|
path: "/draft-orders/:id/shipping"
|
|
@@ -13092,10 +13096,6 @@ const routeModule = {
|
|
|
13092
13096
|
{
|
|
13093
13097
|
Component: TransferOwnership,
|
|
13094
13098
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13095
|
-
},
|
|
13096
|
-
{
|
|
13097
|
-
Component: SalesChannel,
|
|
13098
|
-
path: "/draft-orders/:id/sales-channel"
|
|
13099
13099
|
}
|
|
13100
13100
|
]
|
|
13101
13101
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/draft-order",
|
|
3
|
-
"version": "2.11.4-preview-
|
|
3
|
+
"version": "2.11.4-preview-20251124032825",
|
|
4
4
|
"description": "A starter for Medusa plugins.",
|
|
5
5
|
"author": "Medusa (https://medusajs.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@ariakit/react": "^0.4.15",
|
|
38
38
|
"@babel/runtime": "^7.26.10",
|
|
39
39
|
"@hookform/resolvers": "3.4.2",
|
|
40
|
-
"@medusajs/js-sdk": "2.11.4-preview-
|
|
40
|
+
"@medusajs/js-sdk": "2.11.4-preview-20251124032825",
|
|
41
41
|
"@tanstack/react-query": "5.64.2",
|
|
42
42
|
"@uiw/react-json-view": "^2.0.0-alpha.17",
|
|
43
43
|
"date-fns": "^3.6.0",
|
|
@@ -48,22 +48,22 @@
|
|
|
48
48
|
"react-hook-form": "7.49.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@medusajs/admin-sdk": "2.11.4-preview-
|
|
52
|
-
"@medusajs/cli": "2.11.4-preview-
|
|
53
|
-
"@medusajs/framework": "2.11.4-preview-
|
|
54
|
-
"@medusajs/icons": "2.11.4-preview-
|
|
55
|
-
"@medusajs/test-utils": "2.11.4-preview-
|
|
56
|
-
"@medusajs/types": "2.11.4-preview-
|
|
57
|
-
"@medusajs/ui": "4.0.28-preview-
|
|
58
|
-
"@medusajs/ui-preset": "2.11.4-preview-
|
|
51
|
+
"@medusajs/admin-sdk": "2.11.4-preview-20251124032825",
|
|
52
|
+
"@medusajs/cli": "2.11.4-preview-20251124032825",
|
|
53
|
+
"@medusajs/framework": "2.11.4-preview-20251124032825",
|
|
54
|
+
"@medusajs/icons": "2.11.4-preview-20251124032825",
|
|
55
|
+
"@medusajs/test-utils": "2.11.4-preview-20251124032825",
|
|
56
|
+
"@medusajs/types": "2.11.4-preview-20251124032825",
|
|
57
|
+
"@medusajs/ui": "4.0.28-preview-20251124032825",
|
|
58
|
+
"@medusajs/ui-preset": "2.11.4-preview-20251124032825"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@medusajs/admin-sdk": "2.11.4-preview-
|
|
62
|
-
"@medusajs/cli": "2.11.4-preview-
|
|
63
|
-
"@medusajs/framework": "2.11.4-preview-
|
|
64
|
-
"@medusajs/icons": "2.11.4-preview-
|
|
65
|
-
"@medusajs/test-utils": "2.11.4-preview-
|
|
66
|
-
"@medusajs/ui": "4.0.28-preview-
|
|
61
|
+
"@medusajs/admin-sdk": "2.11.4-preview-20251124032825",
|
|
62
|
+
"@medusajs/cli": "2.11.4-preview-20251124032825",
|
|
63
|
+
"@medusajs/framework": "2.11.4-preview-20251124032825",
|
|
64
|
+
"@medusajs/icons": "2.11.4-preview-20251124032825",
|
|
65
|
+
"@medusajs/test-utils": "2.11.4-preview-20251124032825",
|
|
66
|
+
"@medusajs/ui": "4.0.28-preview-20251124032825",
|
|
67
67
|
"react": "^18.3.1",
|
|
68
68
|
"react-dom": "^18.3.1",
|
|
69
69
|
"react-router-dom": "6.20.1"
|