@medusajs/draft-order 2.10.4-snapshot-20250925183036 → 2.10.4-snapshot-20250925194852
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 +317 -317
- package/.medusa/server/src/admin/index.mjs +317 -317
- package/package.json +16 -16
|
@@ -11263,6 +11263,112 @@ function getPromotionIds(items, shippingMethods) {
|
|
|
11263
11263
|
}
|
|
11264
11264
|
return Array.from(promotionIds);
|
|
11265
11265
|
}
|
|
11266
|
+
const SalesChannel = () => {
|
|
11267
|
+
const { id } = reactRouterDom.useParams();
|
|
11268
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(
|
|
11269
|
+
id,
|
|
11270
|
+
{
|
|
11271
|
+
fields: "+sales_channel_id"
|
|
11272
|
+
},
|
|
11273
|
+
{
|
|
11274
|
+
enabled: !!id
|
|
11275
|
+
}
|
|
11276
|
+
);
|
|
11277
|
+
if (isError) {
|
|
11278
|
+
throw error;
|
|
11279
|
+
}
|
|
11280
|
+
const ISrEADY = !!draft_order && !isPending;
|
|
11281
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
11282
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
11283
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Sales Channel" }) }),
|
|
11284
|
+
/* @__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" }) })
|
|
11285
|
+
] }),
|
|
11286
|
+
ISrEADY && /* @__PURE__ */ jsxRuntime.jsx(SalesChannelForm, { order: draft_order })
|
|
11287
|
+
] });
|
|
11288
|
+
};
|
|
11289
|
+
const SalesChannelForm = ({ order }) => {
|
|
11290
|
+
const form = reactHookForm.useForm({
|
|
11291
|
+
defaultValues: {
|
|
11292
|
+
sales_channel_id: order.sales_channel_id || ""
|
|
11293
|
+
},
|
|
11294
|
+
resolver: zod.zodResolver(schema$3)
|
|
11295
|
+
});
|
|
11296
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11297
|
+
const { handleSuccess } = useRouteModal();
|
|
11298
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
11299
|
+
await mutateAsync(
|
|
11300
|
+
{
|
|
11301
|
+
sales_channel_id: data.sales_channel_id
|
|
11302
|
+
},
|
|
11303
|
+
{
|
|
11304
|
+
onSuccess: () => {
|
|
11305
|
+
ui.toast.success("Sales channel updated");
|
|
11306
|
+
handleSuccess();
|
|
11307
|
+
},
|
|
11308
|
+
onError: (error) => {
|
|
11309
|
+
ui.toast.error(error.message);
|
|
11310
|
+
}
|
|
11311
|
+
}
|
|
11312
|
+
);
|
|
11313
|
+
});
|
|
11314
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11315
|
+
KeyboundForm,
|
|
11316
|
+
{
|
|
11317
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
11318
|
+
onSubmit,
|
|
11319
|
+
children: [
|
|
11320
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(SalesChannelField, { control: form.control, order }) }),
|
|
11321
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11322
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11323
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
11324
|
+
] }) })
|
|
11325
|
+
]
|
|
11326
|
+
}
|
|
11327
|
+
) });
|
|
11328
|
+
};
|
|
11329
|
+
const SalesChannelField = ({ control, order }) => {
|
|
11330
|
+
const salesChannels = useComboboxData({
|
|
11331
|
+
queryFn: async (params) => {
|
|
11332
|
+
return await sdk.admin.salesChannel.list(params);
|
|
11333
|
+
},
|
|
11334
|
+
queryKey: ["sales-channels"],
|
|
11335
|
+
getOptions: (data) => {
|
|
11336
|
+
return data.sales_channels.map((salesChannel) => ({
|
|
11337
|
+
label: salesChannel.name,
|
|
11338
|
+
value: salesChannel.id
|
|
11339
|
+
}));
|
|
11340
|
+
},
|
|
11341
|
+
defaultValue: order.sales_channel_id || void 0
|
|
11342
|
+
});
|
|
11343
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
11344
|
+
Form$2.Field,
|
|
11345
|
+
{
|
|
11346
|
+
control,
|
|
11347
|
+
name: "sales_channel_id",
|
|
11348
|
+
render: ({ field }) => {
|
|
11349
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
11350
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
11351
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
11352
|
+
Combobox,
|
|
11353
|
+
{
|
|
11354
|
+
options: salesChannels.options,
|
|
11355
|
+
fetchNextPage: salesChannels.fetchNextPage,
|
|
11356
|
+
isFetchingNextPage: salesChannels.isFetchingNextPage,
|
|
11357
|
+
searchValue: salesChannels.searchValue,
|
|
11358
|
+
onSearchValueChange: salesChannels.onSearchValueChange,
|
|
11359
|
+
placeholder: "Select sales channel",
|
|
11360
|
+
...field
|
|
11361
|
+
}
|
|
11362
|
+
) }),
|
|
11363
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
11364
|
+
] });
|
|
11365
|
+
}
|
|
11366
|
+
}
|
|
11367
|
+
);
|
|
11368
|
+
};
|
|
11369
|
+
const schema$3 = objectType({
|
|
11370
|
+
sales_channel_id: stringType().min(1)
|
|
11371
|
+
});
|
|
11266
11372
|
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
11267
11373
|
const Shipping = () => {
|
|
11268
11374
|
var _a;
|
|
@@ -12070,46 +12176,60 @@ const CustomAmountField = ({
|
|
|
12070
12176
|
}
|
|
12071
12177
|
);
|
|
12072
12178
|
};
|
|
12073
|
-
const
|
|
12179
|
+
const ShippingAddress = () => {
|
|
12074
12180
|
const { id } = reactRouterDom.useParams();
|
|
12075
|
-
const {
|
|
12076
|
-
|
|
12077
|
-
|
|
12078
|
-
fields: "+sales_channel_id"
|
|
12079
|
-
},
|
|
12080
|
-
{
|
|
12081
|
-
enabled: !!id
|
|
12082
|
-
}
|
|
12083
|
-
);
|
|
12181
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12182
|
+
fields: "+shipping_address"
|
|
12183
|
+
});
|
|
12084
12184
|
if (isError) {
|
|
12085
12185
|
throw error;
|
|
12086
12186
|
}
|
|
12087
|
-
const
|
|
12187
|
+
const isReady = !isPending && !!order;
|
|
12088
12188
|
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12089
12189
|
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12090
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit
|
|
12091
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "
|
|
12190
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Shipping Address" }) }),
|
|
12191
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12092
12192
|
] }),
|
|
12093
|
-
|
|
12193
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(ShippingAddressForm, { order })
|
|
12094
12194
|
] });
|
|
12095
12195
|
};
|
|
12096
|
-
const
|
|
12196
|
+
const ShippingAddressForm = ({ order }) => {
|
|
12197
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12097
12198
|
const form = reactHookForm.useForm({
|
|
12098
12199
|
defaultValues: {
|
|
12099
|
-
|
|
12200
|
+
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12201
|
+
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12202
|
+
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12203
|
+
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12204
|
+
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12205
|
+
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12206
|
+
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12207
|
+
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12208
|
+
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12209
|
+
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12100
12210
|
},
|
|
12101
|
-
resolver: zod.zodResolver(schema$
|
|
12211
|
+
resolver: zod.zodResolver(schema$2)
|
|
12102
12212
|
});
|
|
12103
12213
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12104
12214
|
const { handleSuccess } = useRouteModal();
|
|
12105
12215
|
const onSubmit = form.handleSubmit(async (data) => {
|
|
12106
12216
|
await mutateAsync(
|
|
12107
12217
|
{
|
|
12108
|
-
|
|
12218
|
+
shipping_address: {
|
|
12219
|
+
first_name: data.first_name,
|
|
12220
|
+
last_name: data.last_name,
|
|
12221
|
+
company: data.company,
|
|
12222
|
+
address_1: data.address_1,
|
|
12223
|
+
address_2: data.address_2,
|
|
12224
|
+
city: data.city,
|
|
12225
|
+
province: data.province,
|
|
12226
|
+
country_code: data.country_code,
|
|
12227
|
+
postal_code: data.postal_code,
|
|
12228
|
+
phone: data.phone
|
|
12229
|
+
}
|
|
12109
12230
|
},
|
|
12110
12231
|
{
|
|
12111
12232
|
onSuccess: () => {
|
|
12112
|
-
ui.toast.success("Sales channel updated");
|
|
12113
12233
|
handleSuccess();
|
|
12114
12234
|
},
|
|
12115
12235
|
onError: (error) => {
|
|
@@ -12124,96 +12244,179 @@ const SalesChannelForm = ({ order }) => {
|
|
|
12124
12244
|
className: "flex flex-1 flex-col overflow-hidden",
|
|
12125
12245
|
onSubmit,
|
|
12126
12246
|
children: [
|
|
12127
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.
|
|
12128
|
-
|
|
12129
|
-
|
|
12130
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12131
|
-
] }) })
|
|
12132
|
-
]
|
|
12133
|
-
}
|
|
12134
|
-
) });
|
|
12135
|
-
};
|
|
12136
|
-
const SalesChannelField = ({ control, order }) => {
|
|
12137
|
-
const salesChannels = useComboboxData({
|
|
12138
|
-
queryFn: async (params) => {
|
|
12139
|
-
return await sdk.admin.salesChannel.list(params);
|
|
12140
|
-
},
|
|
12141
|
-
queryKey: ["sales-channels"],
|
|
12142
|
-
getOptions: (data) => {
|
|
12143
|
-
return data.sales_channels.map((salesChannel) => ({
|
|
12144
|
-
label: salesChannel.name,
|
|
12145
|
-
value: salesChannel.id
|
|
12146
|
-
}));
|
|
12147
|
-
},
|
|
12148
|
-
defaultValue: order.sales_channel_id || void 0
|
|
12149
|
-
});
|
|
12150
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12151
|
-
Form$2.Field,
|
|
12152
|
-
{
|
|
12153
|
-
control,
|
|
12154
|
-
name: "sales_channel_id",
|
|
12155
|
-
render: ({ field }) => {
|
|
12156
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12157
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Sales Channel" }),
|
|
12158
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
12159
|
-
Combobox,
|
|
12247
|
+
/* @__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: [
|
|
12248
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12249
|
+
Form$2.Field,
|
|
12160
12250
|
{
|
|
12161
|
-
|
|
12162
|
-
|
|
12163
|
-
|
|
12164
|
-
|
|
12165
|
-
|
|
12166
|
-
|
|
12167
|
-
|
|
12251
|
+
control: form.control,
|
|
12252
|
+
name: "country_code",
|
|
12253
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12254
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
12255
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
12256
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12257
|
+
] })
|
|
12168
12258
|
}
|
|
12169
|
-
)
|
|
12170
|
-
/* @__PURE__ */ jsxRuntime.
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
})
|
|
12179
|
-
|
|
12180
|
-
|
|
12181
|
-
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
|
|
12185
|
-
|
|
12186
|
-
|
|
12187
|
-
|
|
12188
|
-
|
|
12189
|
-
|
|
12190
|
-
|
|
12191
|
-
|
|
12192
|
-
|
|
12193
|
-
|
|
12194
|
-
|
|
12195
|
-
}
|
|
12196
|
-
|
|
12197
|
-
|
|
12198
|
-
|
|
12199
|
-
|
|
12200
|
-
|
|
12201
|
-
|
|
12202
|
-
|
|
12203
|
-
|
|
12204
|
-
|
|
12205
|
-
|
|
12206
|
-
|
|
12207
|
-
|
|
12208
|
-
|
|
12209
|
-
|
|
12210
|
-
|
|
12211
|
-
|
|
12212
|
-
|
|
12213
|
-
|
|
12214
|
-
|
|
12215
|
-
|
|
12216
|
-
|
|
12259
|
+
),
|
|
12260
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12261
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12262
|
+
Form$2.Field,
|
|
12263
|
+
{
|
|
12264
|
+
control: form.control,
|
|
12265
|
+
name: "first_name",
|
|
12266
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12267
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
12268
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12269
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12270
|
+
] })
|
|
12271
|
+
}
|
|
12272
|
+
),
|
|
12273
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12274
|
+
Form$2.Field,
|
|
12275
|
+
{
|
|
12276
|
+
control: form.control,
|
|
12277
|
+
name: "last_name",
|
|
12278
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12279
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
12280
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12281
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12282
|
+
] })
|
|
12283
|
+
}
|
|
12284
|
+
)
|
|
12285
|
+
] }),
|
|
12286
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12287
|
+
Form$2.Field,
|
|
12288
|
+
{
|
|
12289
|
+
control: form.control,
|
|
12290
|
+
name: "company",
|
|
12291
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12292
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12293
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12294
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12295
|
+
] })
|
|
12296
|
+
}
|
|
12297
|
+
),
|
|
12298
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12299
|
+
Form$2.Field,
|
|
12300
|
+
{
|
|
12301
|
+
control: form.control,
|
|
12302
|
+
name: "address_1",
|
|
12303
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12304
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
12305
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12306
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12307
|
+
] })
|
|
12308
|
+
}
|
|
12309
|
+
),
|
|
12310
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12311
|
+
Form$2.Field,
|
|
12312
|
+
{
|
|
12313
|
+
control: form.control,
|
|
12314
|
+
name: "address_2",
|
|
12315
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12316
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12317
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12318
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12319
|
+
] })
|
|
12320
|
+
}
|
|
12321
|
+
),
|
|
12322
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12323
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12324
|
+
Form$2.Field,
|
|
12325
|
+
{
|
|
12326
|
+
control: form.control,
|
|
12327
|
+
name: "postal_code",
|
|
12328
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12329
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
12330
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12331
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12332
|
+
] })
|
|
12333
|
+
}
|
|
12334
|
+
),
|
|
12335
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12336
|
+
Form$2.Field,
|
|
12337
|
+
{
|
|
12338
|
+
control: form.control,
|
|
12339
|
+
name: "city",
|
|
12340
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12341
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
12342
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12343
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12344
|
+
] })
|
|
12345
|
+
}
|
|
12346
|
+
)
|
|
12347
|
+
] }),
|
|
12348
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12349
|
+
Form$2.Field,
|
|
12350
|
+
{
|
|
12351
|
+
control: form.control,
|
|
12352
|
+
name: "province",
|
|
12353
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12354
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
12355
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12356
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12357
|
+
] })
|
|
12358
|
+
}
|
|
12359
|
+
),
|
|
12360
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12361
|
+
Form$2.Field,
|
|
12362
|
+
{
|
|
12363
|
+
control: form.control,
|
|
12364
|
+
name: "phone",
|
|
12365
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12366
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
12367
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12368
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12369
|
+
] })
|
|
12370
|
+
}
|
|
12371
|
+
)
|
|
12372
|
+
] }) }),
|
|
12373
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12374
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12375
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12376
|
+
] }) })
|
|
12377
|
+
]
|
|
12378
|
+
}
|
|
12379
|
+
) });
|
|
12380
|
+
};
|
|
12381
|
+
const schema$2 = addressSchema;
|
|
12382
|
+
const TransferOwnership = () => {
|
|
12383
|
+
const { id } = reactRouterDom.useParams();
|
|
12384
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
12385
|
+
fields: "id,customer_id,customer.*"
|
|
12386
|
+
});
|
|
12387
|
+
if (isError) {
|
|
12388
|
+
throw error;
|
|
12389
|
+
}
|
|
12390
|
+
const isReady = !isPending && !!draft_order;
|
|
12391
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12392
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12393
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Transfer Ownership" }) }),
|
|
12394
|
+
/* @__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" }) })
|
|
12395
|
+
] }),
|
|
12396
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(TransferOwnershipForm, { order: draft_order })
|
|
12397
|
+
] });
|
|
12398
|
+
};
|
|
12399
|
+
const TransferOwnershipForm = ({ order }) => {
|
|
12400
|
+
var _a, _b;
|
|
12401
|
+
const form = reactHookForm.useForm({
|
|
12402
|
+
defaultValues: {
|
|
12403
|
+
customer_id: order.customer_id || ""
|
|
12404
|
+
},
|
|
12405
|
+
resolver: zod.zodResolver(schema$1)
|
|
12406
|
+
});
|
|
12407
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12408
|
+
const { handleSuccess } = useRouteModal();
|
|
12409
|
+
const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
|
|
12410
|
+
const currentCustomer = order.customer ? {
|
|
12411
|
+
label: name ? `${name} (${order.customer.email})` : order.customer.email,
|
|
12412
|
+
value: order.customer.id
|
|
12413
|
+
} : null;
|
|
12414
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
12415
|
+
await mutateAsync(
|
|
12416
|
+
{ customer_id: data.customer_id },
|
|
12417
|
+
{
|
|
12418
|
+
onSuccess: () => {
|
|
12419
|
+
ui.toast.success("Customer updated");
|
|
12217
12420
|
handleSuccess();
|
|
12218
12421
|
},
|
|
12219
12422
|
onError: (error) => {
|
|
@@ -12649,212 +12852,9 @@ const Illustration = () => {
|
|
|
12649
12852
|
}
|
|
12650
12853
|
);
|
|
12651
12854
|
};
|
|
12652
|
-
const schema$
|
|
12855
|
+
const schema$1 = objectType({
|
|
12653
12856
|
customer_id: stringType().min(1)
|
|
12654
12857
|
});
|
|
12655
|
-
const ShippingAddress = () => {
|
|
12656
|
-
const { id } = reactRouterDom.useParams();
|
|
12657
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
12658
|
-
fields: "+shipping_address"
|
|
12659
|
-
});
|
|
12660
|
-
if (isError) {
|
|
12661
|
-
throw error;
|
|
12662
|
-
}
|
|
12663
|
-
const isReady = !isPending && !!order;
|
|
12664
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12665
|
-
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12666
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Shipping Address" }) }),
|
|
12667
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12668
|
-
] }),
|
|
12669
|
-
isReady && /* @__PURE__ */ jsxRuntime.jsx(ShippingAddressForm, { order })
|
|
12670
|
-
] });
|
|
12671
|
-
};
|
|
12672
|
-
const ShippingAddressForm = ({ order }) => {
|
|
12673
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12674
|
-
const form = reactHookForm.useForm({
|
|
12675
|
-
defaultValues: {
|
|
12676
|
-
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12677
|
-
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12678
|
-
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12679
|
-
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12680
|
-
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12681
|
-
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12682
|
-
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12683
|
-
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12684
|
-
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12685
|
-
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12686
|
-
},
|
|
12687
|
-
resolver: zod.zodResolver(schema$1)
|
|
12688
|
-
});
|
|
12689
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12690
|
-
const { handleSuccess } = useRouteModal();
|
|
12691
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12692
|
-
await mutateAsync(
|
|
12693
|
-
{
|
|
12694
|
-
shipping_address: {
|
|
12695
|
-
first_name: data.first_name,
|
|
12696
|
-
last_name: data.last_name,
|
|
12697
|
-
company: data.company,
|
|
12698
|
-
address_1: data.address_1,
|
|
12699
|
-
address_2: data.address_2,
|
|
12700
|
-
city: data.city,
|
|
12701
|
-
province: data.province,
|
|
12702
|
-
country_code: data.country_code,
|
|
12703
|
-
postal_code: data.postal_code,
|
|
12704
|
-
phone: data.phone
|
|
12705
|
-
}
|
|
12706
|
-
},
|
|
12707
|
-
{
|
|
12708
|
-
onSuccess: () => {
|
|
12709
|
-
handleSuccess();
|
|
12710
|
-
},
|
|
12711
|
-
onError: (error) => {
|
|
12712
|
-
ui.toast.error(error.message);
|
|
12713
|
-
}
|
|
12714
|
-
}
|
|
12715
|
-
);
|
|
12716
|
-
});
|
|
12717
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
12718
|
-
KeyboundForm,
|
|
12719
|
-
{
|
|
12720
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12721
|
-
onSubmit,
|
|
12722
|
-
children: [
|
|
12723
|
-
/* @__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: [
|
|
12724
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12725
|
-
Form$2.Field,
|
|
12726
|
-
{
|
|
12727
|
-
control: form.control,
|
|
12728
|
-
name: "country_code",
|
|
12729
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12730
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Country" }),
|
|
12731
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(CountrySelect, { ...field }) }),
|
|
12732
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12733
|
-
] })
|
|
12734
|
-
}
|
|
12735
|
-
),
|
|
12736
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12737
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12738
|
-
Form$2.Field,
|
|
12739
|
-
{
|
|
12740
|
-
control: form.control,
|
|
12741
|
-
name: "first_name",
|
|
12742
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12743
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "First name" }),
|
|
12744
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12745
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12746
|
-
] })
|
|
12747
|
-
}
|
|
12748
|
-
),
|
|
12749
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12750
|
-
Form$2.Field,
|
|
12751
|
-
{
|
|
12752
|
-
control: form.control,
|
|
12753
|
-
name: "last_name",
|
|
12754
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12755
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Last name" }),
|
|
12756
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12757
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12758
|
-
] })
|
|
12759
|
-
}
|
|
12760
|
-
)
|
|
12761
|
-
] }),
|
|
12762
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12763
|
-
Form$2.Field,
|
|
12764
|
-
{
|
|
12765
|
-
control: form.control,
|
|
12766
|
-
name: "company",
|
|
12767
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12768
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12769
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12770
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12771
|
-
] })
|
|
12772
|
-
}
|
|
12773
|
-
),
|
|
12774
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12775
|
-
Form$2.Field,
|
|
12776
|
-
{
|
|
12777
|
-
control: form.control,
|
|
12778
|
-
name: "address_1",
|
|
12779
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12780
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Address" }),
|
|
12781
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12782
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12783
|
-
] })
|
|
12784
|
-
}
|
|
12785
|
-
),
|
|
12786
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12787
|
-
Form$2.Field,
|
|
12788
|
-
{
|
|
12789
|
-
control: form.control,
|
|
12790
|
-
name: "address_2",
|
|
12791
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12792
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12793
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12794
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12795
|
-
] })
|
|
12796
|
-
}
|
|
12797
|
-
),
|
|
12798
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12799
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12800
|
-
Form$2.Field,
|
|
12801
|
-
{
|
|
12802
|
-
control: form.control,
|
|
12803
|
-
name: "postal_code",
|
|
12804
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12805
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Postal code" }),
|
|
12806
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12807
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12808
|
-
] })
|
|
12809
|
-
}
|
|
12810
|
-
),
|
|
12811
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12812
|
-
Form$2.Field,
|
|
12813
|
-
{
|
|
12814
|
-
control: form.control,
|
|
12815
|
-
name: "city",
|
|
12816
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12817
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "City" }),
|
|
12818
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12819
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12820
|
-
] })
|
|
12821
|
-
}
|
|
12822
|
-
)
|
|
12823
|
-
] }),
|
|
12824
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12825
|
-
Form$2.Field,
|
|
12826
|
-
{
|
|
12827
|
-
control: form.control,
|
|
12828
|
-
name: "province",
|
|
12829
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12830
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
12831
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12832
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12833
|
-
] })
|
|
12834
|
-
}
|
|
12835
|
-
),
|
|
12836
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12837
|
-
Form$2.Field,
|
|
12838
|
-
{
|
|
12839
|
-
control: form.control,
|
|
12840
|
-
name: "phone",
|
|
12841
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
12842
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
12843
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
12844
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
12845
|
-
] })
|
|
12846
|
-
}
|
|
12847
|
-
)
|
|
12848
|
-
] }) }),
|
|
12849
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12850
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12851
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12852
|
-
] }) })
|
|
12853
|
-
]
|
|
12854
|
-
}
|
|
12855
|
-
) });
|
|
12856
|
-
};
|
|
12857
|
-
const schema$1 = addressSchema;
|
|
12858
12858
|
const BillingAddress = () => {
|
|
12859
12859
|
const { id } = reactRouterDom.useParams();
|
|
12860
12860
|
const { order, isPending, isError, error } = useOrder(id, {
|
|
@@ -13085,22 +13085,22 @@ const routeModule = {
|
|
|
13085
13085
|
Component: Promotions,
|
|
13086
13086
|
path: "/draft-orders/:id/promotions"
|
|
13087
13087
|
},
|
|
13088
|
-
{
|
|
13089
|
-
Component: Shipping,
|
|
13090
|
-
path: "/draft-orders/:id/shipping"
|
|
13091
|
-
},
|
|
13092
13088
|
{
|
|
13093
13089
|
Component: SalesChannel,
|
|
13094
13090
|
path: "/draft-orders/:id/sales-channel"
|
|
13095
13091
|
},
|
|
13096
13092
|
{
|
|
13097
|
-
Component:
|
|
13098
|
-
path: "/draft-orders/:id/
|
|
13093
|
+
Component: Shipping,
|
|
13094
|
+
path: "/draft-orders/:id/shipping"
|
|
13099
13095
|
},
|
|
13100
13096
|
{
|
|
13101
13097
|
Component: ShippingAddress,
|
|
13102
13098
|
path: "/draft-orders/:id/shipping-address"
|
|
13103
13099
|
},
|
|
13100
|
+
{
|
|
13101
|
+
Component: TransferOwnership,
|
|
13102
|
+
path: "/draft-orders/:id/transfer-ownership"
|
|
13103
|
+
},
|
|
13104
13104
|
{
|
|
13105
13105
|
Component: BillingAddress,
|
|
13106
13106
|
path: "/draft-orders/:id/billing-address"
|