@medusajs/draft-order 2.10.3-snapshot-20250913212755 → 2.10.3-snapshot-20250915125232

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.
@@ -9567,196 +9567,27 @@ const ID = () => {
9567
9567
  /* @__PURE__ */ jsx(Outlet, {})
9568
9568
  ] });
9569
9569
  };
9570
- const BillingAddress = () => {
9571
- const { id } = useParams();
9572
- const { order, isPending, isError, error } = useOrder(id, {
9573
- fields: "+billing_address"
9574
- });
9575
- if (isError) {
9576
- throw error;
9577
- }
9578
- const isReady = !isPending && !!order;
9570
+ const CustomItems = () => {
9579
9571
  return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9580
- /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
9581
- /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
9582
- /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
9583
- ] }),
9584
- isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
9572
+ /* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
9573
+ /* @__PURE__ */ jsx(CustomItemsForm, {})
9585
9574
  ] });
9586
9575
  };
9587
- const BillingAddressForm = ({ order }) => {
9588
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
9576
+ const CustomItemsForm = () => {
9589
9577
  const form = useForm({
9590
- defaultValues: {
9591
- first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
9592
- last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
9593
- company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
9594
- address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
9595
- address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
9596
- city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
9597
- province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
9598
- country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
9599
- postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
9600
- phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
9601
- },
9602
9578
  resolver: zodResolver(schema$5)
9603
9579
  });
9604
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9605
- const { handleSuccess } = useRouteModal();
9606
- const onSubmit = form.handleSubmit(async (data) => {
9607
- await mutateAsync(
9608
- { billing_address: data },
9609
- {
9610
- onSuccess: () => {
9611
- handleSuccess();
9612
- },
9613
- onError: (error) => {
9614
- toast.error(error.message);
9615
- }
9616
- }
9617
- );
9618
- });
9619
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
9620
- KeyboundForm,
9621
- {
9622
- className: "flex flex-1 flex-col overflow-hidden",
9623
- onSubmit,
9624
- children: [
9625
- /* @__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: [
9626
- /* @__PURE__ */ jsx(
9627
- Form$2.Field,
9628
- {
9629
- control: form.control,
9630
- name: "country_code",
9631
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9632
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
9633
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
9634
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9635
- ] })
9636
- }
9637
- ),
9638
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
9639
- /* @__PURE__ */ jsx(
9640
- Form$2.Field,
9641
- {
9642
- control: form.control,
9643
- name: "first_name",
9644
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9645
- /* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
9646
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9647
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9648
- ] })
9649
- }
9650
- ),
9651
- /* @__PURE__ */ jsx(
9652
- Form$2.Field,
9653
- {
9654
- control: form.control,
9655
- name: "last_name",
9656
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9657
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
9658
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9659
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9660
- ] })
9661
- }
9662
- )
9663
- ] }),
9664
- /* @__PURE__ */ jsx(
9665
- Form$2.Field,
9666
- {
9667
- control: form.control,
9668
- name: "company",
9669
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9670
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
9671
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9672
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9673
- ] })
9674
- }
9675
- ),
9676
- /* @__PURE__ */ jsx(
9677
- Form$2.Field,
9678
- {
9679
- control: form.control,
9680
- name: "address_1",
9681
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9682
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
9683
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9684
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9685
- ] })
9686
- }
9687
- ),
9688
- /* @__PURE__ */ jsx(
9689
- Form$2.Field,
9690
- {
9691
- control: form.control,
9692
- name: "address_2",
9693
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9694
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
9695
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9696
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9697
- ] })
9698
- }
9699
- ),
9700
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
9701
- /* @__PURE__ */ jsx(
9702
- Form$2.Field,
9703
- {
9704
- control: form.control,
9705
- name: "postal_code",
9706
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9707
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
9708
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9709
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9710
- ] })
9711
- }
9712
- ),
9713
- /* @__PURE__ */ jsx(
9714
- Form$2.Field,
9715
- {
9716
- control: form.control,
9717
- name: "city",
9718
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9719
- /* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
9720
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9721
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9722
- ] })
9723
- }
9724
- )
9725
- ] }),
9726
- /* @__PURE__ */ jsx(
9727
- Form$2.Field,
9728
- {
9729
- control: form.control,
9730
- name: "province",
9731
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9732
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
9733
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9734
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9735
- ] })
9736
- }
9737
- ),
9738
- /* @__PURE__ */ jsx(
9739
- Form$2.Field,
9740
- {
9741
- control: form.control,
9742
- name: "phone",
9743
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9744
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
9745
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9746
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9747
- ] })
9748
- }
9749
- )
9750
- ] }) }),
9751
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9752
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9753
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
9754
- ] }) })
9755
- ]
9756
- }
9757
- ) });
9580
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9581
+ /* @__PURE__ */ jsx(RouteDrawer.Body, {}),
9582
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9583
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9584
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
9585
+ ] }) })
9586
+ ] }) });
9758
9587
  };
9759
- const schema$5 = addressSchema;
9588
+ const schema$5 = objectType({
9589
+ email: stringType().email()
9590
+ });
9760
9591
  const Email = () => {
9761
9592
  const { id } = useParams();
9762
9593
  const { order, isPending, isError, error } = useOrder(id, {
@@ -9825,27 +9656,6 @@ const EmailForm = ({ order }) => {
9825
9656
  const schema$4 = objectType({
9826
9657
  email: stringType().email()
9827
9658
  });
9828
- const CustomItems = () => {
9829
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9830
- /* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
9831
- /* @__PURE__ */ jsx(CustomItemsForm, {})
9832
- ] });
9833
- };
9834
- const CustomItemsForm = () => {
9835
- const form = useForm({
9836
- resolver: zodResolver(schema$3)
9837
- });
9838
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9839
- /* @__PURE__ */ jsx(RouteDrawer.Body, {}),
9840
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9841
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9842
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
9843
- ] }) })
9844
- ] }) });
9845
- };
9846
- const schema$3 = objectType({
9847
- email: stringType().email()
9848
- });
9849
9659
  const NumberInput = forwardRef(
9850
9660
  ({
9851
9661
  value,
@@ -11447,1257 +11257,450 @@ function getPromotionIds(items, shippingMethods) {
11447
11257
  }
11448
11258
  return Array.from(promotionIds);
11449
11259
  }
11450
- const STACKED_FOCUS_MODAL_ID = "shipping-form";
11451
- const Shipping = () => {
11452
- var _a;
11260
+ const SalesChannel = () => {
11453
11261
  const { id } = useParams();
11454
- const { order, isPending, isError, error } = useOrder(id, {
11455
- fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
11456
- });
11457
- const {
11458
- order: preview,
11459
- isPending: isPreviewPending,
11460
- isError: isPreviewError,
11461
- error: previewError
11462
- } = useOrderPreview(id);
11463
- useInitiateOrderEdit({ preview });
11464
- const { onCancel } = useCancelOrderEdit({ preview });
11262
+ const { draft_order, isPending, isError, error } = useDraftOrder(
11263
+ id,
11264
+ {
11265
+ fields: "+sales_channel_id"
11266
+ },
11267
+ {
11268
+ enabled: !!id
11269
+ }
11270
+ );
11465
11271
  if (isError) {
11466
11272
  throw error;
11467
11273
  }
11468
- if (isPreviewError) {
11469
- throw previewError;
11470
- }
11471
- const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
11472
- const isReady = preview && !isPreviewPending && order && !isPending;
11473
- return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
11474
- /* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
11475
- /* @__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: [
11476
- /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
11477
- /* @__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." }) })
11478
- ] }) }) }),
11479
- /* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
11480
- ] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
11481
- /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
11482
- /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
11483
- ] }) });
11274
+ const ISrEADY = !!draft_order && !isPending;
11275
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
11276
+ /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
11277
+ /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
11278
+ /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
11279
+ ] }),
11280
+ ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
11281
+ ] });
11484
11282
  };
11485
- const ShippingForm = ({ preview, order }) => {
11486
- var _a;
11487
- const { setIsOpen } = useStackedModal();
11488
- const [isSubmitting, setIsSubmitting] = useState(false);
11489
- const [data, setData] = useState(null);
11490
- const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
11491
- const { shipping_options } = useShippingOptions(
11283
+ const SalesChannelForm = ({ order }) => {
11284
+ const form = useForm({
11285
+ defaultValues: {
11286
+ sales_channel_id: order.sales_channel_id || ""
11287
+ },
11288
+ resolver: zodResolver(schema$3)
11289
+ });
11290
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
11291
+ const { handleSuccess } = useRouteModal();
11292
+ const onSubmit = form.handleSubmit(async (data) => {
11293
+ await mutateAsync(
11294
+ {
11295
+ sales_channel_id: data.sales_channel_id
11296
+ },
11297
+ {
11298
+ onSuccess: () => {
11299
+ toast.success("Sales channel updated");
11300
+ handleSuccess();
11301
+ },
11302
+ onError: (error) => {
11303
+ toast.error(error.message);
11304
+ }
11305
+ }
11306
+ );
11307
+ });
11308
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
11309
+ KeyboundForm,
11492
11310
  {
11493
- id: appliedShippingOptionIds,
11494
- fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
11311
+ className: "flex flex-1 flex-col overflow-hidden",
11312
+ onSubmit,
11313
+ children: [
11314
+ /* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
11315
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
11316
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
11317
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
11318
+ ] }) })
11319
+ ]
11320
+ }
11321
+ ) });
11322
+ };
11323
+ const SalesChannelField = ({ control, order }) => {
11324
+ const salesChannels = useComboboxData({
11325
+ queryFn: async (params) => {
11326
+ return await sdk.admin.salesChannel.list(params);
11327
+ },
11328
+ queryKey: ["sales-channels"],
11329
+ getOptions: (data) => {
11330
+ return data.sales_channels.map((salesChannel) => ({
11331
+ label: salesChannel.name,
11332
+ value: salesChannel.id
11333
+ }));
11495
11334
  },
11335
+ defaultValue: order.sales_channel_id || void 0
11336
+ });
11337
+ return /* @__PURE__ */ jsx(
11338
+ Form$2.Field,
11496
11339
  {
11497
- enabled: appliedShippingOptionIds.length > 0
11340
+ control,
11341
+ name: "sales_channel_id",
11342
+ render: ({ field }) => {
11343
+ return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11344
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
11345
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
11346
+ Combobox,
11347
+ {
11348
+ options: salesChannels.options,
11349
+ fetchNextPage: salesChannels.fetchNextPage,
11350
+ isFetchingNextPage: salesChannels.isFetchingNextPage,
11351
+ searchValue: salesChannels.searchValue,
11352
+ onSearchValueChange: salesChannels.onSearchValueChange,
11353
+ placeholder: "Select sales channel",
11354
+ ...field
11355
+ }
11356
+ ) }),
11357
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11358
+ ] });
11359
+ }
11498
11360
  }
11499
11361
  );
11500
- const uniqueShippingProfiles = useMemo(() => {
11501
- const profiles = /* @__PURE__ */ new Map();
11502
- getUniqueShippingProfiles(order.items).forEach((profile) => {
11503
- profiles.set(profile.id, profile);
11504
- });
11505
- shipping_options == null ? void 0 : shipping_options.forEach((option) => {
11506
- profiles.set(option.shipping_profile_id, option.shipping_profile);
11507
- });
11508
- return Array.from(profiles.values());
11509
- }, [order.items, shipping_options]);
11362
+ };
11363
+ const schema$3 = objectType({
11364
+ sales_channel_id: stringType().min(1)
11365
+ });
11366
+ const ShippingAddress = () => {
11367
+ const { id } = useParams();
11368
+ const { order, isPending, isError, error } = useOrder(id, {
11369
+ fields: "+shipping_address"
11370
+ });
11371
+ if (isError) {
11372
+ throw error;
11373
+ }
11374
+ const isReady = !isPending && !!order;
11375
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
11376
+ /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
11377
+ /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Shipping Address" }) }),
11378
+ /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
11379
+ ] }),
11380
+ isReady && /* @__PURE__ */ jsx(ShippingAddressForm, { order })
11381
+ ] });
11382
+ };
11383
+ const ShippingAddressForm = ({ order }) => {
11384
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
11385
+ const form = useForm({
11386
+ defaultValues: {
11387
+ first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
11388
+ last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
11389
+ company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
11390
+ address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
11391
+ address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
11392
+ city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
11393
+ province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
11394
+ country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
11395
+ postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
11396
+ phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
11397
+ },
11398
+ resolver: zodResolver(schema$2)
11399
+ });
11400
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
11510
11401
  const { handleSuccess } = useRouteModal();
11511
- const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
11512
- const { mutateAsync: requestOrderEdit } = useDraftOrderRequestEdit(preview.id);
11513
- const { mutateAsync: removeShippingMethod } = useDraftOrderRemoveShippingMethod(preview.id);
11514
- const { mutateAsync: removeActionShippingMethod } = useDraftOrderRemoveActionShippingMethod(preview.id);
11515
- const onSubmit = async () => {
11516
- setIsSubmitting(true);
11517
- let requestSucceeded = false;
11518
- await requestOrderEdit(void 0, {
11519
- onError: (e) => {
11520
- toast.error(`Failed to request order edit: ${e.message}`);
11521
- },
11522
- onSuccess: () => {
11523
- requestSucceeded = true;
11524
- }
11525
- });
11526
- if (!requestSucceeded) {
11527
- setIsSubmitting(false);
11528
- return;
11529
- }
11530
- await confirmOrderEdit(void 0, {
11531
- onError: (e) => {
11532
- toast.error(`Failed to confirm order edit: ${e.message}`);
11533
- },
11534
- onSuccess: () => {
11535
- handleSuccess();
11402
+ const onSubmit = form.handleSubmit(async (data) => {
11403
+ await mutateAsync(
11404
+ {
11405
+ shipping_address: {
11406
+ first_name: data.first_name,
11407
+ last_name: data.last_name,
11408
+ company: data.company,
11409
+ address_1: data.address_1,
11410
+ address_2: data.address_2,
11411
+ city: data.city,
11412
+ province: data.province,
11413
+ country_code: data.country_code,
11414
+ postal_code: data.postal_code,
11415
+ phone: data.phone
11416
+ }
11536
11417
  },
11537
- onSettled: () => {
11538
- setIsSubmitting(false);
11539
- }
11540
- });
11541
- };
11542
- const onKeydown = useCallback(
11543
- (e) => {
11544
- if (e.key === "Enter" && (e.ctrlKey || e.metaKey)) {
11545
- if (data || isSubmitting) {
11546
- return;
11418
+ {
11419
+ onSuccess: () => {
11420
+ handleSuccess();
11421
+ },
11422
+ onError: (error) => {
11423
+ toast.error(error.message);
11547
11424
  }
11548
- onSubmit();
11549
11425
  }
11550
- },
11551
- [data, isSubmitting, onSubmit]
11552
- );
11553
- useEffect(() => {
11554
- document.addEventListener("keydown", onKeydown);
11555
- return () => {
11556
- document.removeEventListener("keydown", onKeydown);
11557
- };
11558
- }, [onKeydown]);
11559
- return /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden", children: [
11560
- /* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
11561
- /* @__PURE__ */ jsxs(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: [
11562
- /* @__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: [
11563
- /* @__PURE__ */ jsxs("div", { children: [
11564
- /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
11565
- /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Choose which shipping method(s) to use for the items in the order." }) })
11566
- ] }),
11567
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11568
- /* @__PURE__ */ jsx(Accordion.Root, { type: "multiple", children: /* @__PURE__ */ jsxs("div", { className: "bg-ui-bg-subtle rounded-xl shadow-elevation-card-rest", children: [
11569
- /* @__PURE__ */ jsxs("div", { className: "px-4 py-2 flex items-center justify-between", children: [
11426
+ );
11427
+ });
11428
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
11429
+ KeyboundForm,
11430
+ {
11431
+ className: "flex flex-1 flex-col overflow-hidden",
11432
+ onSubmit,
11433
+ children: [
11434
+ /* @__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: [
11435
+ /* @__PURE__ */ jsx(
11436
+ Form$2.Field,
11437
+ {
11438
+ control: form.control,
11439
+ name: "country_code",
11440
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11441
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
11442
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
11443
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11444
+ ] })
11445
+ }
11446
+ ),
11447
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
11570
11448
  /* @__PURE__ */ jsx(
11571
- Text,
11449
+ Form$2.Field,
11572
11450
  {
11573
- size: "xsmall",
11574
- weight: "plus",
11575
- className: "text-ui-fg-muted",
11576
- children: "Shipping profile"
11451
+ control: form.control,
11452
+ name: "first_name",
11453
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11454
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
11455
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11456
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11457
+ ] })
11577
11458
  }
11578
11459
  ),
11579
11460
  /* @__PURE__ */ jsx(
11580
- Text,
11461
+ Form$2.Field,
11581
11462
  {
11582
- size: "xsmall",
11583
- weight: "plus",
11584
- className: "text-ui-fg-muted",
11585
- children: "Action"
11463
+ control: form.control,
11464
+ name: "last_name",
11465
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11466
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
11467
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11468
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11469
+ ] })
11586
11470
  }
11587
11471
  )
11588
11472
  ] }),
11589
- /* @__PURE__ */ jsx("div", { className: "px-[5px] pb-[5px]", children: uniqueShippingProfiles.map((profile) => {
11590
- var _a2, _b, _c, _d, _e, _f, _g;
11591
- const items = getItemsWithShippingProfile(
11592
- profile.id,
11593
- order.items
11594
- );
11595
- const hasItems = items.length > 0;
11596
- const shippingOption = shipping_options == null ? void 0 : shipping_options.find(
11597
- (option) => option.shipping_profile_id === profile.id
11598
- );
11599
- const shippingMethod = preview.shipping_methods.find(
11600
- (method) => method.shipping_option_id === (shippingOption == null ? void 0 : shippingOption.id)
11601
- );
11602
- const addShippingMethodAction = (_a2 = shippingMethod == null ? void 0 : shippingMethod.actions) == null ? void 0 : _a2.find(
11603
- (action) => action.action === "SHIPPING_ADD"
11604
- );
11605
- return /* @__PURE__ */ jsxs(
11606
- Accordion.Item,
11473
+ /* @__PURE__ */ jsx(
11474
+ Form$2.Field,
11475
+ {
11476
+ control: form.control,
11477
+ name: "company",
11478
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11479
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
11480
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11481
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11482
+ ] })
11483
+ }
11484
+ ),
11485
+ /* @__PURE__ */ jsx(
11486
+ Form$2.Field,
11487
+ {
11488
+ control: form.control,
11489
+ name: "address_1",
11490
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11491
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
11492
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11493
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11494
+ ] })
11495
+ }
11496
+ ),
11497
+ /* @__PURE__ */ jsx(
11498
+ Form$2.Field,
11499
+ {
11500
+ control: form.control,
11501
+ name: "address_2",
11502
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11503
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
11504
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11505
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11506
+ ] })
11507
+ }
11508
+ ),
11509
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
11510
+ /* @__PURE__ */ jsx(
11511
+ Form$2.Field,
11607
11512
  {
11608
- value: profile.id,
11609
- className: "bg-ui-bg-base shadow-elevation-card-rest rounded-lg",
11610
- children: [
11611
- /* @__PURE__ */ jsxs("div", { className: "px-3 py-2 flex items-center justify-between gap-3", children: [
11612
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3 w-full overflow-hidden", children: [
11613
- /* @__PURE__ */ jsx(Accordion.Trigger, { asChild: true, children: /* @__PURE__ */ jsx(
11614
- IconButton,
11615
- {
11616
- size: "2xsmall",
11617
- variant: "transparent",
11618
- className: "group/trigger",
11619
- disabled: !hasItems,
11620
- children: /* @__PURE__ */ jsx(TriangleRightMini, { className: "group-data-[state=open]/trigger:rotate-90 transition-transform" })
11621
- }
11622
- ) }),
11623
- !shippingOption ? /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3", children: [
11624
- /* @__PURE__ */ jsx("div", { className: "size-7 rounded-md shadow-borders-base flex items-center justify-center", children: /* @__PURE__ */ jsx("div", { className: "size-6 rounded bg-ui-bg-component-hover flex items-center justify-center", children: /* @__PURE__ */ jsx(Shopping, { className: "text-ui-fg-subtle" }) }) }),
11625
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col flex-1", children: [
11626
- /* @__PURE__ */ jsx(
11627
- Text,
11628
- {
11629
- size: "small",
11630
- weight: "plus",
11631
- leading: "compact",
11632
- children: profile.name
11633
- }
11634
- ),
11635
- /* @__PURE__ */ jsxs(
11636
- Text,
11637
- {
11638
- size: "small",
11639
- leading: "compact",
11640
- className: "text-ui-fg-subtle",
11641
- children: [
11642
- items.length,
11643
- " ",
11644
- pluralize(items.length, "items", "item")
11645
- ]
11646
- }
11647
- )
11648
- ] })
11649
- ] }) : /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-[5px] max-sm:flex-col max-sm:items-start flex-1 w-full overflow-hidden", children: [
11650
- /* @__PURE__ */ jsx(
11651
- Tooltip,
11652
- {
11653
- content: /* @__PURE__ */ jsx("ul", { children: items.map((item) => {
11654
- var _a3, _b2, _c2;
11655
- return /* @__PURE__ */ jsx(
11656
- "li",
11657
- {
11658
- children: `${item.quantity}x ${(_b2 = (_a3 = item.variant) == null ? void 0 : _a3.product) == null ? void 0 : _b2.title} (${(_c2 = item.variant) == null ? void 0 : _c2.title})`
11659
- },
11660
- item.id
11661
- );
11662
- }) }),
11663
- children: /* @__PURE__ */ jsxs(
11664
- Badge,
11665
- {
11666
- className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
11667
- size: "xsmall",
11668
- children: [
11669
- /* @__PURE__ */ jsx(Shopping, { className: "shrink-0" }),
11670
- /* @__PURE__ */ jsxs("span", { className: "truncate", children: [
11671
- items.reduce(
11672
- (acc, item) => acc + item.quantity,
11673
- 0
11674
- ),
11675
- "x",
11676
- " ",
11677
- pluralize(items.length, "items", "item")
11678
- ] })
11679
- ]
11680
- }
11681
- )
11682
- }
11683
- ),
11684
- /* @__PURE__ */ jsx(
11685
- Tooltip,
11686
- {
11687
- content: (_d = (_c = (_b = shippingOption.service_zone) == null ? void 0 : _b.fulfillment_set) == null ? void 0 : _c.location) == null ? void 0 : _d.name,
11688
- children: /* @__PURE__ */ jsxs(
11689
- Badge,
11690
- {
11691
- className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
11692
- size: "xsmall",
11693
- children: [
11694
- /* @__PURE__ */ jsx(Buildings, { className: "shrink-0" }),
11695
- /* @__PURE__ */ jsx("span", { className: "truncate", children: (_g = (_f = (_e = shippingOption.service_zone) == null ? void 0 : _e.fulfillment_set) == null ? void 0 : _f.location) == null ? void 0 : _g.name })
11696
- ]
11697
- }
11698
- )
11699
- }
11700
- ),
11701
- /* @__PURE__ */ jsx(Tooltip, { content: shippingOption.name, children: /* @__PURE__ */ jsxs(
11702
- Badge,
11703
- {
11704
- className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
11705
- size: "xsmall",
11706
- children: [
11707
- /* @__PURE__ */ jsx(TruckFast, { className: "shrink-0" }),
11708
- /* @__PURE__ */ jsx("span", { className: "truncate", children: shippingOption.name })
11709
- ]
11710
- }
11711
- ) })
11712
- ] })
11713
- ] }),
11714
- shippingOption ? /* @__PURE__ */ jsx(
11715
- ActionMenu,
11716
- {
11717
- groups: [
11718
- {
11719
- actions: [
11720
- hasItems ? {
11721
- label: "Edit shipping option",
11722
- icon: /* @__PURE__ */ jsx(Channels, {}),
11723
- onClick: () => {
11724
- setIsOpen(
11725
- STACKED_FOCUS_MODAL_ID,
11726
- true
11727
- );
11728
- setData({
11729
- shippingProfileId: profile.id,
11730
- shippingOption,
11731
- shippingMethod
11732
- });
11733
- }
11734
- } : void 0,
11735
- {
11736
- label: "Remove shipping option",
11737
- icon: /* @__PURE__ */ jsx(Trash, {}),
11738
- onClick: () => {
11739
- if (shippingMethod) {
11740
- if (addShippingMethodAction) {
11741
- removeActionShippingMethod(
11742
- addShippingMethodAction.id
11743
- );
11744
- } else {
11745
- removeShippingMethod(
11746
- shippingMethod.id
11747
- );
11748
- }
11749
- }
11750
- }
11751
- }
11752
- ].filter(Boolean)
11753
- }
11754
- ]
11755
- }
11756
- ) : /* @__PURE__ */ jsx(
11757
- StackedModalTrigger,
11758
- {
11759
- shippingProfileId: profile.id,
11760
- shippingOption,
11761
- shippingMethod,
11762
- setData,
11763
- children: "Add shipping option"
11764
- }
11765
- )
11766
- ] }),
11767
- /* @__PURE__ */ jsxs(Accordion.Content, { children: [
11768
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11769
- items.map((item, idx) => {
11770
- var _a3, _b2, _c2, _d2, _e2;
11771
- return /* @__PURE__ */ jsxs("div", { children: [
11772
- /* @__PURE__ */ jsxs(
11773
- "div",
11774
- {
11775
- className: "px-3 flex items-center gap-x-3",
11776
- children: [
11777
- /* @__PURE__ */ jsx("div", { className: "w-5 h-[56px] flex flex-col justify-center items-center", children: /* @__PURE__ */ jsx(
11778
- Divider,
11779
- {
11780
- variant: "dashed",
11781
- orientation: "vertical"
11782
- }
11783
- ) }),
11784
- /* @__PURE__ */ jsxs("div", { className: "py-2 flex items-center gap-x-3", children: [
11785
- /* @__PURE__ */ jsx("div", { className: "size-7 flex items-center justify-center tabular-nums", children: /* @__PURE__ */ jsxs(
11786
- Text,
11787
- {
11788
- size: "small",
11789
- leading: "compact",
11790
- className: "text-ui-fg-subtle",
11791
- children: [
11792
- item.quantity,
11793
- "x"
11794
- ]
11795
- }
11796
- ) }),
11797
- /* @__PURE__ */ jsx(Thumbnail, { thumbnail: item.thumbnail }),
11798
- /* @__PURE__ */ jsxs("div", { children: [
11799
- /* @__PURE__ */ jsxs(
11800
- Text,
11801
- {
11802
- size: "small",
11803
- leading: "compact",
11804
- weight: "plus",
11805
- children: [
11806
- (_b2 = (_a3 = item.variant) == null ? void 0 : _a3.product) == null ? void 0 : _b2.title,
11807
- " (",
11808
- (_c2 = item.variant) == null ? void 0 : _c2.title,
11809
- ")"
11810
- ]
11811
- }
11812
- ),
11813
- /* @__PURE__ */ jsx(
11814
- Text,
11815
- {
11816
- size: "small",
11817
- leading: "compact",
11818
- className: "text-ui-fg-subtle",
11819
- children: (_e2 = (_d2 = item.variant) == null ? void 0 : _d2.options) == null ? void 0 : _e2.map((option) => option.value).join(" · ")
11820
- }
11821
- )
11822
- ] })
11823
- ] })
11824
- ]
11825
- },
11826
- item.id
11827
- ),
11828
- idx !== items.length - 1 && /* @__PURE__ */ jsx(Divider, { variant: "dashed" })
11829
- ] }, item.id);
11830
- })
11831
- ] })
11832
- ]
11833
- },
11834
- profile.id
11835
- );
11836
- }) })
11837
- ] }) })
11838
- ] }) }),
11839
- /* @__PURE__ */ jsx(
11840
- StackedFocusModal,
11841
- {
11842
- id: STACKED_FOCUS_MODAL_ID,
11843
- onOpenChangeCallback: (open) => {
11844
- if (!open) {
11845
- setData(null);
11513
+ control: form.control,
11514
+ name: "postal_code",
11515
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11516
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
11517
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11518
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11519
+ ] })
11520
+ }
11521
+ ),
11522
+ /* @__PURE__ */ jsx(
11523
+ Form$2.Field,
11524
+ {
11525
+ control: form.control,
11526
+ name: "city",
11527
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11528
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
11529
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11530
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11531
+ ] })
11532
+ }
11533
+ )
11534
+ ] }),
11535
+ /* @__PURE__ */ jsx(
11536
+ Form$2.Field,
11537
+ {
11538
+ control: form.control,
11539
+ name: "province",
11540
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11541
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
11542
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11543
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11544
+ ] })
11846
11545
  }
11847
- return open;
11848
- },
11849
- children: data && /* @__PURE__ */ jsx(ShippingProfileForm, { data, order, preview })
11850
- }
11851
- )
11546
+ ),
11547
+ /* @__PURE__ */ jsx(
11548
+ Form$2.Field,
11549
+ {
11550
+ control: form.control,
11551
+ name: "phone",
11552
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
11553
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
11554
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
11555
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11556
+ ] })
11557
+ }
11558
+ )
11559
+ ] }) }),
11560
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
11561
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
11562
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
11563
+ ] }) })
11564
+ ]
11565
+ }
11566
+ ) });
11567
+ };
11568
+ const schema$2 = addressSchema;
11569
+ const TransferOwnership = () => {
11570
+ const { id } = useParams();
11571
+ const { draft_order, isPending, isError, error } = useDraftOrder(id, {
11572
+ fields: "id,customer_id,customer.*"
11573
+ });
11574
+ if (isError) {
11575
+ throw error;
11576
+ }
11577
+ const isReady = !isPending && !!draft_order;
11578
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
11579
+ /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
11580
+ /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Transfer Ownership" }) }),
11581
+ /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Transfer the ownership of this draft order to a new customer" }) })
11852
11582
  ] }),
11853
- /* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-x-2", children: [
11854
- /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
11855
- /* @__PURE__ */ jsx(
11856
- Button,
11857
- {
11858
- size: "small",
11859
- type: "button",
11860
- isLoading: isSubmitting,
11861
- onClick: onSubmit,
11862
- children: "Save"
11863
- }
11864
- )
11865
- ] }) })
11583
+ isReady && /* @__PURE__ */ jsx(TransferOwnershipForm, { order: draft_order })
11866
11584
  ] });
11867
11585
  };
11868
- const StackedModalTrigger = ({
11869
- shippingProfileId,
11870
- shippingOption,
11871
- shippingMethod,
11872
- setData,
11873
- children
11874
- }) => {
11875
- const { setIsOpen, getIsOpen } = useStackedModal();
11876
- const isOpen = getIsOpen(STACKED_FOCUS_MODAL_ID);
11877
- const onToggle = () => {
11878
- if (isOpen) {
11879
- setIsOpen(STACKED_FOCUS_MODAL_ID, false);
11880
- setData(null);
11881
- } else {
11882
- setIsOpen(STACKED_FOCUS_MODAL_ID, true);
11883
- setData({
11884
- shippingProfileId,
11885
- shippingOption,
11886
- shippingMethod
11887
- });
11888
- }
11889
- };
11890
- return /* @__PURE__ */ jsx(
11891
- Button,
11892
- {
11893
- size: "small",
11894
- variant: "secondary",
11895
- onClick: onToggle,
11896
- className: "text-ui-fg-primary shrink-0",
11897
- children
11898
- }
11899
- );
11900
- };
11901
- const ShippingProfileForm = ({
11902
- data,
11903
- order,
11904
- preview
11905
- }) => {
11906
- var _a, _b, _c, _d, _e, _f;
11907
- const { setIsOpen } = useStackedModal();
11586
+ const TransferOwnershipForm = ({ order }) => {
11587
+ var _a, _b;
11908
11588
  const form = useForm({
11909
- resolver: zodResolver(shippingMethodSchema),
11910
11589
  defaultValues: {
11911
- location_id: (_d = (_c = (_b = (_a = data.shippingOption) == null ? void 0 : _a.service_zone) == null ? void 0 : _b.fulfillment_set) == null ? void 0 : _c.location) == null ? void 0 : _d.id,
11912
- shipping_option_id: (_e = data.shippingOption) == null ? void 0 : _e.id,
11913
- custom_amount: (_f = data.shippingMethod) == null ? void 0 : _f.amount
11914
- }
11590
+ customer_id: order.customer_id || ""
11591
+ },
11592
+ resolver: zodResolver(schema$1)
11915
11593
  });
11916
- const { mutateAsync: addShippingMethod, isPending } = useDraftOrderAddShippingMethod(order.id);
11917
- const {
11918
- mutateAsync: updateShippingMethod,
11919
- isPending: isUpdatingShippingMethod
11920
- } = useDraftOrderUpdateShippingMethod(order.id);
11921
- const onSubmit = form.handleSubmit(async (values) => {
11922
- if (isEqual(values, form.formState.defaultValues)) {
11923
- setIsOpen(STACKED_FOCUS_MODAL_ID, false);
11924
- return;
11925
- }
11926
- if (data.shippingMethod) {
11927
- await updateShippingMethod(
11928
- {
11929
- method_id: data.shippingMethod.id,
11930
- shipping_option_id: values.shipping_option_id,
11931
- custom_amount: values.custom_amount ? convertNumber(values.custom_amount) : void 0
11932
- },
11933
- {
11934
- onError: (e) => {
11935
- toast.error(e.message);
11936
- },
11937
- onSuccess: () => {
11938
- setIsOpen(STACKED_FOCUS_MODAL_ID, false);
11939
- }
11940
- }
11941
- );
11942
- return;
11943
- }
11944
- await addShippingMethod(
11945
- {
11946
- shipping_option_id: values.shipping_option_id,
11947
- custom_amount: values.custom_amount ? convertNumber(values.custom_amount) : void 0
11948
- },
11594
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
11595
+ const { handleSuccess } = useRouteModal();
11596
+ const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
11597
+ const currentCustomer = order.customer ? {
11598
+ label: name ? `${name} (${order.customer.email})` : order.customer.email,
11599
+ value: order.customer.id
11600
+ } : null;
11601
+ const onSubmit = form.handleSubmit(async (data) => {
11602
+ await mutateAsync(
11603
+ { customer_id: data.customer_id },
11949
11604
  {
11950
- onError: (e) => {
11951
- toast.error(e.message);
11952
- },
11953
11605
  onSuccess: () => {
11954
- setIsOpen(STACKED_FOCUS_MODAL_ID, false);
11606
+ toast.success("Customer updated");
11607
+ handleSuccess();
11608
+ },
11609
+ onError: (error) => {
11610
+ toast.error(error.message);
11955
11611
  }
11956
11612
  }
11957
11613
  );
11958
11614
  });
11959
- return /* @__PURE__ */ jsx(StackedFocusModal.Content, { children: /* @__PURE__ */ jsx(Form$2, { ...form, children: /* @__PURE__ */ jsxs(
11615
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
11960
11616
  KeyboundForm,
11961
11617
  {
11962
- className: "flex h-full flex-col overflow-hidden",
11618
+ className: "flex flex-1 flex-col overflow-hidden",
11963
11619
  onSubmit,
11964
11620
  children: [
11965
- /* @__PURE__ */ jsx(StackedFocusModal.Header, {}),
11966
- /* @__PURE__ */ jsx(StackedFocusModal.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: [
11967
- /* @__PURE__ */ jsxs("div", { children: [
11968
- /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
11969
- /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Add a shipping method for the selected shipping profile. You can see the items that will be shipped using this method in the preview below." }) })
11970
- ] }),
11971
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11972
- /* @__PURE__ */ jsx(
11973
- LocationField,
11974
- {
11975
- control: form.control,
11976
- setValue: form.setValue
11977
- }
11978
- ),
11979
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11980
- /* @__PURE__ */ jsx(
11981
- ShippingOptionField,
11982
- {
11983
- shippingProfileId: data.shippingProfileId,
11984
- preview,
11985
- control: form.control
11986
- }
11987
- ),
11988
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11621
+ /* @__PURE__ */ jsxs(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: [
11622
+ /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center bg-ui-bg-component rounded-md border", children: /* @__PURE__ */ jsx(Illustration, {}) }),
11623
+ currentCustomer && /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-3", children: [
11624
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
11625
+ /* @__PURE__ */ jsx(Label$1, { size: "small", weight: "plus", htmlFor: "current-customer", children: "Current owner" }),
11626
+ /* @__PURE__ */ jsx(Hint$1, { children: "The customer that is currently associated with this draft order." })
11627
+ ] }),
11628
+ /* @__PURE__ */ jsxs(Select, { disabled: true, value: currentCustomer.value, children: [
11629
+ /* @__PURE__ */ jsx(Select.Trigger, { id: "current-customer", children: /* @__PURE__ */ jsx(Select.Value, {}) }),
11630
+ /* @__PURE__ */ jsx(Select.Content, { children: /* @__PURE__ */ jsx(Select.Item, { value: currentCustomer.value, children: currentCustomer.label }) })
11631
+ ] })
11632
+ ] }),
11989
11633
  /* @__PURE__ */ jsx(
11990
- CustomAmountField,
11634
+ CustomerField,
11991
11635
  {
11992
11636
  control: form.control,
11993
- currencyCode: order.currency_code
11994
- }
11995
- ),
11996
- /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
11997
- /* @__PURE__ */ jsx(
11998
- ItemsPreview,
11999
- {
12000
- order,
12001
- shippingProfileId: data.shippingProfileId
12002
- }
12003
- )
12004
- ] }) }) }),
12005
- /* @__PURE__ */ jsx(StackedFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-x-2", children: [
12006
- /* @__PURE__ */ jsx(StackedFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
12007
- /* @__PURE__ */ jsx(
12008
- Button,
12009
- {
12010
- size: "small",
12011
- type: "submit",
12012
- isLoading: isPending || isUpdatingShippingMethod,
12013
- children: data.shippingMethod ? "Update" : "Add"
11637
+ currentCustomerId: order.customer_id
12014
11638
  }
12015
11639
  )
11640
+ ] }),
11641
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
11642
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { variant: "secondary", size: "small", children: "Cancel" }) }),
11643
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
12016
11644
  ] }) })
12017
11645
  ]
12018
11646
  }
12019
- ) }) });
12020
- };
12021
- const shippingMethodSchema = objectType({
12022
- location_id: stringType(),
12023
- shipping_option_id: stringType(),
12024
- custom_amount: unionType([numberType(), stringType()]).optional()
12025
- });
12026
- const ItemsPreview = ({ order, shippingProfileId }) => {
12027
- const matches = order.items.filter(
12028
- (item) => {
12029
- var _a, _b, _c;
12030
- return ((_c = (_b = (_a = item.variant) == null ? void 0 : _a.product) == null ? void 0 : _b.shipping_profile) == null ? void 0 : _c.id) === shippingProfileId;
12031
- }
12032
- );
12033
- return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-6", children: [
12034
- /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 items-center gap-3", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12035
- /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: "Items to ship" }),
12036
- /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Items with the selected shipping profile." })
12037
- ] }) }),
12038
- /* @__PURE__ */ jsxs("div", { className: "bg-ui-bg-subtle shadow-elevation-card-rest rounded-xl", children: [
12039
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-3 px-4 py-2 text-ui-fg-muted", children: [
12040
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: "Item" }) }),
12041
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: "Quantity" }) })
12042
- ] }),
12043
- /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-y-1.5 px-[5px] pb-[5px]", children: matches.length > 0 ? matches == null ? void 0 : matches.map((item) => /* @__PURE__ */ jsxs(
12044
- "div",
12045
- {
12046
- className: "grid grid-cols-2 gap-3 px-4 py-2 bg-ui-bg-base shadow-elevation-card-rest rounded-lg items-center",
12047
- children: [
12048
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3", children: [
12049
- /* @__PURE__ */ jsx(
12050
- Thumbnail,
12051
- {
12052
- thumbnail: item.thumbnail,
12053
- alt: item.product_title ?? void 0
12054
- }
12055
- ),
12056
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12057
- /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-1", children: [
12058
- /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: item.product_title }),
12059
- /* @__PURE__ */ jsxs(
12060
- Text,
12061
- {
12062
- size: "small",
12063
- leading: "compact",
12064
- className: "text-ui-fg-subtle",
12065
- children: [
12066
- "(",
12067
- item.variant_title,
12068
- ")"
12069
- ]
12070
- }
12071
- )
12072
- ] }),
12073
- /* @__PURE__ */ jsx(
12074
- Text,
12075
- {
12076
- size: "small",
12077
- leading: "compact",
12078
- className: "text-ui-fg-subtle",
12079
- children: item.variant_sku
12080
- }
12081
- )
12082
- ] })
12083
- ] }),
12084
- /* @__PURE__ */ jsxs(
12085
- Text,
12086
- {
12087
- size: "small",
12088
- leading: "compact",
12089
- className: "text-ui-fg-subtle",
12090
- children: [
12091
- item.quantity,
12092
- "x"
12093
- ]
12094
- }
12095
- )
12096
- ]
12097
- },
12098
- item.id
12099
- )) : /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center gap-x-3 bg-ui-bg-base rounded-lg p-4 shadow-elevation-card-rest flex-col gap-1", children: [
12100
- /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: "No items found" }),
12101
- /* @__PURE__ */ jsxs(Text, { size: "small", className: "text-ui-fg-subtle", children: [
12102
- 'No items found for "',
12103
- query,
12104
- '".'
12105
- ] })
12106
- ] }) })
12107
- ] })
12108
- ] });
11647
+ ) });
12109
11648
  };
12110
- const LocationField = ({ control, setValue }) => {
12111
- const locations = useComboboxData({
12112
- queryKey: ["locations"],
11649
+ const CustomerField = ({ control, currentCustomerId }) => {
11650
+ const customers = useComboboxData({
12113
11651
  queryFn: async (params) => {
12114
- return await sdk.admin.stockLocation.list(params);
11652
+ return await sdk.admin.customer.list({
11653
+ ...params,
11654
+ id: currentCustomerId ? { $nin: [currentCustomerId] } : void 0
11655
+ });
12115
11656
  },
11657
+ queryKey: ["customers"],
12116
11658
  getOptions: (data) => {
12117
- return data.stock_locations.map((location) => ({
12118
- label: location.name,
12119
- value: location.id
12120
- }));
11659
+ return data.customers.map((customer) => {
11660
+ const name = [customer.first_name, customer.last_name].filter(Boolean).join(" ");
11661
+ return {
11662
+ label: name ? `${name} (${customer.email})` : customer.email,
11663
+ value: customer.id
11664
+ };
11665
+ });
12121
11666
  }
12122
11667
  });
12123
11668
  return /* @__PURE__ */ jsx(
12124
11669
  Form$2.Field,
12125
11670
  {
11671
+ name: "customer_id",
12126
11672
  control,
12127
- name: "location_id",
12128
- render: ({ field: { onChange, ...field } }) => {
12129
- return /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12130
- /* @__PURE__ */ jsxs("div", { children: [
12131
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Location" }),
12132
- /* @__PURE__ */ jsx(Form$2.Hint, { children: "Choose where you want to ship the items from." })
12133
- ] }),
12134
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12135
- Combobox,
12136
- {
12137
- options: locations.options,
12138
- fetchNextPage: locations.fetchNextPage,
12139
- isFetchingNextPage: locations.isFetchingNextPage,
12140
- searchValue: locations.searchValue,
12141
- onSearchValueChange: locations.onSearchValueChange,
12142
- placeholder: "Select location",
12143
- onChange: (value) => {
12144
- setValue("shipping_option_id", "", {
12145
- shouldDirty: true,
12146
- shouldTouch: true
12147
- });
12148
- onChange(value);
12149
- },
12150
- ...field
12151
- }
12152
- ) })
12153
- ] }) });
12154
- }
11673
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { className: "space-y-3", children: [
11674
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
11675
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "New customer" }),
11676
+ /* @__PURE__ */ jsx(Form$2.Hint, { children: "The customer to transfer this draft order to." })
11677
+ ] }),
11678
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
11679
+ Combobox,
11680
+ {
11681
+ options: customers.options,
11682
+ fetchNextPage: customers.fetchNextPage,
11683
+ isFetchingNextPage: customers.isFetchingNextPage,
11684
+ searchValue: customers.searchValue,
11685
+ onSearchValueChange: customers.onSearchValueChange,
11686
+ placeholder: "Select customer",
11687
+ ...field
11688
+ }
11689
+ ) }),
11690
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
11691
+ ] })
12155
11692
  }
12156
11693
  );
12157
11694
  };
12158
- const ShippingOptionField = ({
12159
- shippingProfileId,
12160
- preview,
12161
- control
12162
- }) => {
12163
- var _a;
12164
- const locationId = useWatch({ control, name: "location_id" });
12165
- const shippingOptions = useComboboxData({
12166
- queryKey: ["shipping_options", locationId, shippingProfileId],
12167
- queryFn: async (params) => {
12168
- return await sdk.admin.shippingOption.list({
12169
- ...params,
12170
- stock_location_id: locationId,
12171
- shipping_profile_id: shippingProfileId
12172
- });
12173
- },
12174
- getOptions: (data) => {
12175
- return data.shipping_options.map((option) => {
12176
- var _a2;
12177
- if ((_a2 = option.rules) == null ? void 0 : _a2.find(
12178
- (r) => r.attribute === "is_return" && r.value === "true"
12179
- )) {
12180
- return void 0;
12181
- }
12182
- return {
12183
- label: option.name,
12184
- value: option.id
12185
- };
12186
- }).filter(Boolean);
12187
- },
12188
- enabled: !!locationId && !!shippingProfileId,
12189
- defaultValue: ((_a = preview.shipping_methods[0]) == null ? void 0 : _a.shipping_option_id) || void 0
12190
- });
12191
- const tooltipContent = !locationId && !shippingProfileId ? "Choose a location and shipping profile first." : !locationId ? "Choose a location first." : "Choose a shipping profile first.";
12192
- return /* @__PURE__ */ jsx(
12193
- Form$2.Field,
11695
+ const Illustration = () => {
11696
+ return /* @__PURE__ */ jsxs(
11697
+ "svg",
12194
11698
  {
12195
- control,
12196
- name: "shipping_option_id",
12197
- render: ({ field }) => {
12198
- return /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12199
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12200
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Shipping option" }),
12201
- /* @__PURE__ */ jsx(Form$2.Hint, { children: "Choose the shipping option to use." })
12202
- ] }),
12203
- /* @__PURE__ */ jsx(
12204
- ConditionalTooltip,
12205
- {
12206
- content: tooltipContent,
12207
- showTooltip: !locationId || !shippingProfileId,
12208
- children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12209
- Combobox,
12210
- {
12211
- options: shippingOptions.options,
12212
- fetchNextPage: shippingOptions.fetchNextPage,
12213
- isFetchingNextPage: shippingOptions.isFetchingNextPage,
12214
- searchValue: shippingOptions.searchValue,
12215
- onSearchValueChange: shippingOptions.onSearchValueChange,
12216
- placeholder: "Select shipping option",
12217
- ...field,
12218
- disabled: !locationId || !shippingProfileId
12219
- }
12220
- ) }) })
12221
- }
12222
- )
12223
- ] }) });
12224
- }
12225
- }
12226
- );
12227
- };
12228
- const CustomAmountField = ({
12229
- control,
12230
- currencyCode
12231
- }) => {
12232
- return /* @__PURE__ */ jsx(
12233
- Form$2.Field,
12234
- {
12235
- control,
12236
- name: "custom_amount",
12237
- render: ({ field: { onChange, ...field } }) => {
12238
- return /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12239
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12240
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Custom amount" }),
12241
- /* @__PURE__ */ jsx(Form$2.Hint, { children: "Set a custom amount for the shipping option." })
12242
- ] }),
12243
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12244
- CurrencyInput,
12245
- {
12246
- ...field,
12247
- onValueChange: (value) => onChange(value),
12248
- symbol: getNativeSymbol(currencyCode),
12249
- code: currencyCode
12250
- }
12251
- ) })
12252
- ] });
12253
- }
12254
- }
12255
- );
12256
- };
12257
- const SalesChannel = () => {
12258
- const { id } = useParams();
12259
- const { draft_order, isPending, isError, error } = useDraftOrder(
12260
- id,
12261
- {
12262
- fields: "+sales_channel_id"
12263
- },
12264
- {
12265
- enabled: !!id
12266
- }
12267
- );
12268
- if (isError) {
12269
- throw error;
12270
- }
12271
- const ISrEADY = !!draft_order && !isPending;
12272
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
12273
- /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
12274
- /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Sales Channel" }) }),
12275
- /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Update which sales channel the draft order is associated with" }) })
12276
- ] }),
12277
- ISrEADY && /* @__PURE__ */ jsx(SalesChannelForm, { order: draft_order })
12278
- ] });
12279
- };
12280
- const SalesChannelForm = ({ order }) => {
12281
- const form = useForm({
12282
- defaultValues: {
12283
- sales_channel_id: order.sales_channel_id || ""
12284
- },
12285
- resolver: zodResolver(schema$2)
12286
- });
12287
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12288
- const { handleSuccess } = useRouteModal();
12289
- const onSubmit = form.handleSubmit(async (data) => {
12290
- await mutateAsync(
12291
- {
12292
- sales_channel_id: data.sales_channel_id
12293
- },
12294
- {
12295
- onSuccess: () => {
12296
- toast.success("Sales channel updated");
12297
- handleSuccess();
12298
- },
12299
- onError: (error) => {
12300
- toast.error(error.message);
12301
- }
12302
- }
12303
- );
12304
- });
12305
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
12306
- KeyboundForm,
12307
- {
12308
- className: "flex flex-1 flex-col overflow-hidden",
12309
- onSubmit,
12310
- children: [
12311
- /* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(SalesChannelField, { control: form.control, order }) }),
12312
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
12313
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
12314
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
12315
- ] }) })
12316
- ]
12317
- }
12318
- ) });
12319
- };
12320
- const SalesChannelField = ({ control, order }) => {
12321
- const salesChannels = useComboboxData({
12322
- queryFn: async (params) => {
12323
- return await sdk.admin.salesChannel.list(params);
12324
- },
12325
- queryKey: ["sales-channels"],
12326
- getOptions: (data) => {
12327
- return data.sales_channels.map((salesChannel) => ({
12328
- label: salesChannel.name,
12329
- value: salesChannel.id
12330
- }));
12331
- },
12332
- defaultValue: order.sales_channel_id || void 0
12333
- });
12334
- return /* @__PURE__ */ jsx(
12335
- Form$2.Field,
12336
- {
12337
- control,
12338
- name: "sales_channel_id",
12339
- render: ({ field }) => {
12340
- return /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12341
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Sales Channel" }),
12342
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12343
- Combobox,
12344
- {
12345
- options: salesChannels.options,
12346
- fetchNextPage: salesChannels.fetchNextPage,
12347
- isFetchingNextPage: salesChannels.isFetchingNextPage,
12348
- searchValue: salesChannels.searchValue,
12349
- onSearchValueChange: salesChannels.onSearchValueChange,
12350
- placeholder: "Select sales channel",
12351
- ...field
12352
- }
12353
- ) }),
12354
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12355
- ] });
12356
- }
12357
- }
12358
- );
12359
- };
12360
- const schema$2 = objectType({
12361
- sales_channel_id: stringType().min(1)
12362
- });
12363
- const ShippingAddress = () => {
12364
- const { id } = useParams();
12365
- const { order, isPending, isError, error } = useOrder(id, {
12366
- fields: "+shipping_address"
12367
- });
12368
- if (isError) {
12369
- throw error;
12370
- }
12371
- const isReady = !isPending && !!order;
12372
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
12373
- /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
12374
- /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Shipping Address" }) }),
12375
- /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
12376
- ] }),
12377
- isReady && /* @__PURE__ */ jsx(ShippingAddressForm, { order })
12378
- ] });
12379
- };
12380
- const ShippingAddressForm = ({ order }) => {
12381
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
12382
- const form = useForm({
12383
- defaultValues: {
12384
- first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
12385
- last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
12386
- company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
12387
- address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
12388
- address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
12389
- city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
12390
- province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
12391
- country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
12392
- postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
12393
- phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
12394
- },
12395
- resolver: zodResolver(schema$1)
12396
- });
12397
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12398
- const { handleSuccess } = useRouteModal();
12399
- const onSubmit = form.handleSubmit(async (data) => {
12400
- await mutateAsync(
12401
- {
12402
- shipping_address: {
12403
- first_name: data.first_name,
12404
- last_name: data.last_name,
12405
- company: data.company,
12406
- address_1: data.address_1,
12407
- address_2: data.address_2,
12408
- city: data.city,
12409
- province: data.province,
12410
- country_code: data.country_code,
12411
- postal_code: data.postal_code,
12412
- phone: data.phone
12413
- }
12414
- },
12415
- {
12416
- onSuccess: () => {
12417
- handleSuccess();
12418
- },
12419
- onError: (error) => {
12420
- toast.error(error.message);
12421
- }
12422
- }
12423
- );
12424
- });
12425
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
12426
- KeyboundForm,
12427
- {
12428
- className: "flex flex-1 flex-col overflow-hidden",
12429
- onSubmit,
12430
- children: [
12431
- /* @__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: [
12432
- /* @__PURE__ */ jsx(
12433
- Form$2.Field,
12434
- {
12435
- control: form.control,
12436
- name: "country_code",
12437
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12438
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
12439
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
12440
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12441
- ] })
12442
- }
12443
- ),
12444
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
12445
- /* @__PURE__ */ jsx(
12446
- Form$2.Field,
12447
- {
12448
- control: form.control,
12449
- name: "first_name",
12450
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12451
- /* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
12452
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12453
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12454
- ] })
12455
- }
12456
- ),
12457
- /* @__PURE__ */ jsx(
12458
- Form$2.Field,
12459
- {
12460
- control: form.control,
12461
- name: "last_name",
12462
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12463
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
12464
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12465
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12466
- ] })
12467
- }
12468
- )
12469
- ] }),
12470
- /* @__PURE__ */ jsx(
12471
- Form$2.Field,
12472
- {
12473
- control: form.control,
12474
- name: "company",
12475
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12476
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
12477
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12478
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12479
- ] })
12480
- }
12481
- ),
12482
- /* @__PURE__ */ jsx(
12483
- Form$2.Field,
12484
- {
12485
- control: form.control,
12486
- name: "address_1",
12487
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12488
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
12489
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12490
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12491
- ] })
12492
- }
12493
- ),
12494
- /* @__PURE__ */ jsx(
12495
- Form$2.Field,
12496
- {
12497
- control: form.control,
12498
- name: "address_2",
12499
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12500
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
12501
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12502
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12503
- ] })
12504
- }
12505
- ),
12506
- /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
12507
- /* @__PURE__ */ jsx(
12508
- Form$2.Field,
12509
- {
12510
- control: form.control,
12511
- name: "postal_code",
12512
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12513
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
12514
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12515
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12516
- ] })
12517
- }
12518
- ),
12519
- /* @__PURE__ */ jsx(
12520
- Form$2.Field,
12521
- {
12522
- control: form.control,
12523
- name: "city",
12524
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12525
- /* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
12526
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12527
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12528
- ] })
12529
- }
12530
- )
12531
- ] }),
12532
- /* @__PURE__ */ jsx(
12533
- Form$2.Field,
12534
- {
12535
- control: form.control,
12536
- name: "province",
12537
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12538
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
12539
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12540
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12541
- ] })
12542
- }
12543
- ),
12544
- /* @__PURE__ */ jsx(
12545
- Form$2.Field,
12546
- {
12547
- control: form.control,
12548
- name: "phone",
12549
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12550
- /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
12551
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12552
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12553
- ] })
12554
- }
12555
- )
12556
- ] }) }),
12557
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
12558
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
12559
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
12560
- ] }) })
12561
- ]
12562
- }
12563
- ) });
12564
- };
12565
- const schema$1 = addressSchema;
12566
- const TransferOwnership = () => {
12567
- const { id } = useParams();
12568
- const { draft_order, isPending, isError, error } = useDraftOrder(id, {
12569
- fields: "id,customer_id,customer.*"
12570
- });
12571
- if (isError) {
12572
- throw error;
12573
- }
12574
- const isReady = !isPending && !!draft_order;
12575
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
12576
- /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
12577
- /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Transfer Ownership" }) }),
12578
- /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Transfer the ownership of this draft order to a new customer" }) })
12579
- ] }),
12580
- isReady && /* @__PURE__ */ jsx(TransferOwnershipForm, { order: draft_order })
12581
- ] });
12582
- };
12583
- const TransferOwnershipForm = ({ order }) => {
12584
- var _a, _b;
12585
- const form = useForm({
12586
- defaultValues: {
12587
- customer_id: order.customer_id || ""
12588
- },
12589
- resolver: zodResolver(schema)
12590
- });
12591
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12592
- const { handleSuccess } = useRouteModal();
12593
- const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
12594
- const currentCustomer = order.customer ? {
12595
- label: name ? `${name} (${order.customer.email})` : order.customer.email,
12596
- value: order.customer.id
12597
- } : null;
12598
- const onSubmit = form.handleSubmit(async (data) => {
12599
- await mutateAsync(
12600
- { customer_id: data.customer_id },
12601
- {
12602
- onSuccess: () => {
12603
- toast.success("Customer updated");
12604
- handleSuccess();
12605
- },
12606
- onError: (error) => {
12607
- toast.error(error.message);
12608
- }
12609
- }
12610
- );
12611
- });
12612
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
12613
- KeyboundForm,
12614
- {
12615
- className: "flex flex-1 flex-col overflow-hidden",
12616
- onSubmit,
12617
- children: [
12618
- /* @__PURE__ */ jsxs(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: [
12619
- /* @__PURE__ */ jsx("div", { className: "flex items-center justify-center bg-ui-bg-component rounded-md border", children: /* @__PURE__ */ jsx(Illustration, {}) }),
12620
- currentCustomer && /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-3", children: [
12621
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12622
- /* @__PURE__ */ jsx(Label$1, { size: "small", weight: "plus", htmlFor: "current-customer", children: "Current owner" }),
12623
- /* @__PURE__ */ jsx(Hint$1, { children: "The customer that is currently associated with this draft order." })
12624
- ] }),
12625
- /* @__PURE__ */ jsxs(Select, { disabled: true, value: currentCustomer.value, children: [
12626
- /* @__PURE__ */ jsx(Select.Trigger, { id: "current-customer", children: /* @__PURE__ */ jsx(Select.Value, {}) }),
12627
- /* @__PURE__ */ jsx(Select.Content, { children: /* @__PURE__ */ jsx(Select.Item, { value: currentCustomer.value, children: currentCustomer.label }) })
12628
- ] })
12629
- ] }),
12630
- /* @__PURE__ */ jsx(
12631
- CustomerField,
12632
- {
12633
- control: form.control,
12634
- currentCustomerId: order.customer_id
12635
- }
12636
- )
12637
- ] }),
12638
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
12639
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { variant: "secondary", size: "small", children: "Cancel" }) }),
12640
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
12641
- ] }) })
12642
- ]
12643
- }
12644
- ) });
12645
- };
12646
- const CustomerField = ({ control, currentCustomerId }) => {
12647
- const customers = useComboboxData({
12648
- queryFn: async (params) => {
12649
- return await sdk.admin.customer.list({
12650
- ...params,
12651
- id: currentCustomerId ? { $nin: [currentCustomerId] } : void 0
12652
- });
12653
- },
12654
- queryKey: ["customers"],
12655
- getOptions: (data) => {
12656
- return data.customers.map((customer) => {
12657
- const name = [customer.first_name, customer.last_name].filter(Boolean).join(" ");
12658
- return {
12659
- label: name ? `${name} (${customer.email})` : customer.email,
12660
- value: customer.id
12661
- };
12662
- });
12663
- }
12664
- });
12665
- return /* @__PURE__ */ jsx(
12666
- Form$2.Field,
12667
- {
12668
- name: "customer_id",
12669
- control,
12670
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { className: "space-y-3", children: [
12671
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12672
- /* @__PURE__ */ jsx(Form$2.Label, { children: "New customer" }),
12673
- /* @__PURE__ */ jsx(Form$2.Hint, { children: "The customer to transfer this draft order to." })
12674
- ] }),
12675
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12676
- Combobox,
12677
- {
12678
- options: customers.options,
12679
- fetchNextPage: customers.fetchNextPage,
12680
- isFetchingNextPage: customers.isFetchingNextPage,
12681
- searchValue: customers.searchValue,
12682
- onSearchValueChange: customers.onSearchValueChange,
12683
- placeholder: "Select customer",
12684
- ...field
12685
- }
12686
- ) }),
12687
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12688
- ] })
12689
- }
12690
- );
12691
- };
12692
- const Illustration = () => {
12693
- return /* @__PURE__ */ jsxs(
12694
- "svg",
12695
- {
12696
- width: "280",
12697
- height: "180",
12698
- viewBox: "0 0 280 180",
12699
- fill: "none",
12700
- xmlns: "http://www.w3.org/2000/svg",
11699
+ width: "280",
11700
+ height: "180",
11701
+ viewBox: "0 0 280 180",
11702
+ fill: "none",
11703
+ xmlns: "http://www.w3.org/2000/svg",
12701
11704
  children: [
12702
11705
  /* @__PURE__ */ jsx(
12703
11706
  "rect",
@@ -12980,65 +11983,1062 @@ const Illustration = () => {
12980
11983
  /* @__PURE__ */ jsx("clipPath", { id: "clip0_20915_38670", children: /* @__PURE__ */ jsx(
12981
11984
  "rect",
12982
11985
  {
12983
- width: "12",
12984
- height: "12",
12985
- fill: "white",
12986
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 138.36 74.6508)"
11986
+ width: "12",
11987
+ height: "12",
11988
+ fill: "white",
11989
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 138.36 74.6508)"
11990
+ }
11991
+ ) }),
11992
+ /* @__PURE__ */ jsx("clipPath", { id: "clip1_20915_38670", children: /* @__PURE__ */ jsx(
11993
+ "rect",
11994
+ {
11995
+ width: "12",
11996
+ height: "12",
11997
+ fill: "white",
11998
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 148.75 80.6541)"
11999
+ }
12000
+ ) }),
12001
+ /* @__PURE__ */ jsx("clipPath", { id: "clip2_20915_38670", children: /* @__PURE__ */ jsx(
12002
+ "rect",
12003
+ {
12004
+ width: "12",
12005
+ height: "12",
12006
+ fill: "white",
12007
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 159.141 86.6575)"
12008
+ }
12009
+ ) }),
12010
+ /* @__PURE__ */ jsx("clipPath", { id: "clip3_20915_38670", children: /* @__PURE__ */ jsx(
12011
+ "rect",
12012
+ {
12013
+ width: "12",
12014
+ height: "12",
12015
+ fill: "white",
12016
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 120.928 84.4561)"
12017
+ }
12018
+ ) }),
12019
+ /* @__PURE__ */ jsx("clipPath", { id: "clip4_20915_38670", children: /* @__PURE__ */ jsx(
12020
+ "rect",
12021
+ {
12022
+ width: "12",
12023
+ height: "12",
12024
+ fill: "white",
12025
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 131.318 90.4594)"
12026
+ }
12027
+ ) }),
12028
+ /* @__PURE__ */ jsx("clipPath", { id: "clip5_20915_38670", children: /* @__PURE__ */ jsx(
12029
+ "rect",
12030
+ {
12031
+ width: "12",
12032
+ height: "12",
12033
+ fill: "white",
12034
+ transform: "matrix(0.865865 0.500278 -0.871576 0.490261 141.709 96.4627)"
12035
+ }
12036
+ ) })
12037
+ ] })
12038
+ ]
12039
+ }
12040
+ );
12041
+ };
12042
+ const schema$1 = objectType({
12043
+ customer_id: stringType().min(1)
12044
+ });
12045
+ const STACKED_FOCUS_MODAL_ID = "shipping-form";
12046
+ const Shipping = () => {
12047
+ var _a;
12048
+ const { id } = useParams();
12049
+ const { order, isPending, isError, error } = useOrder(id, {
12050
+ fields: "+items.*,+items.variant.*,+items.variant.product.*,+items.variant.product.shipping_profile.*,+currency_code"
12051
+ });
12052
+ const {
12053
+ order: preview,
12054
+ isPending: isPreviewPending,
12055
+ isError: isPreviewError,
12056
+ error: previewError
12057
+ } = useOrderPreview(id);
12058
+ useInitiateOrderEdit({ preview });
12059
+ const { onCancel } = useCancelOrderEdit({ preview });
12060
+ if (isError) {
12061
+ throw error;
12062
+ }
12063
+ if (isPreviewError) {
12064
+ throw previewError;
12065
+ }
12066
+ const orderHasItems = (((_a = order == null ? void 0 : order.items) == null ? void 0 : _a.length) || 0) > 0;
12067
+ const isReady = preview && !isPreviewPending && order && !isPending;
12068
+ return /* @__PURE__ */ jsx(RouteFocusModal, { onClose: onCancel, children: !orderHasItems ? /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden ", children: [
12069
+ /* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
12070
+ /* @__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: [
12071
+ /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
12072
+ /* @__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." }) })
12073
+ ] }) }) }),
12074
+ /* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }) })
12075
+ ] }) : isReady ? /* @__PURE__ */ jsx(ShippingForm, { preview, order }) : /* @__PURE__ */ jsxs("div", { children: [
12076
+ /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit Shipping" }) }),
12077
+ /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Loading data for the draft order, please wait..." }) })
12078
+ ] }) });
12079
+ };
12080
+ const ShippingForm = ({ preview, order }) => {
12081
+ var _a;
12082
+ const { setIsOpen } = useStackedModal();
12083
+ const [isSubmitting, setIsSubmitting] = useState(false);
12084
+ const [data, setData] = useState(null);
12085
+ const appliedShippingOptionIds = (_a = preview.shipping_methods) == null ? void 0 : _a.map((method) => method.shipping_option_id).filter(Boolean);
12086
+ const { shipping_options } = useShippingOptions(
12087
+ {
12088
+ id: appliedShippingOptionIds,
12089
+ fields: "+service_zone.*,+service_zone.fulfillment_set.*,+service_zone.fulfillment_set.location.*"
12090
+ },
12091
+ {
12092
+ enabled: appliedShippingOptionIds.length > 0
12093
+ }
12094
+ );
12095
+ const uniqueShippingProfiles = useMemo(() => {
12096
+ const profiles = /* @__PURE__ */ new Map();
12097
+ getUniqueShippingProfiles(order.items).forEach((profile) => {
12098
+ profiles.set(profile.id, profile);
12099
+ });
12100
+ shipping_options == null ? void 0 : shipping_options.forEach((option) => {
12101
+ profiles.set(option.shipping_profile_id, option.shipping_profile);
12102
+ });
12103
+ return Array.from(profiles.values());
12104
+ }, [order.items, shipping_options]);
12105
+ const { handleSuccess } = useRouteModal();
12106
+ const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
12107
+ const { mutateAsync: requestOrderEdit } = useDraftOrderRequestEdit(preview.id);
12108
+ const { mutateAsync: removeShippingMethod } = useDraftOrderRemoveShippingMethod(preview.id);
12109
+ const { mutateAsync: removeActionShippingMethod } = useDraftOrderRemoveActionShippingMethod(preview.id);
12110
+ const onSubmit = async () => {
12111
+ setIsSubmitting(true);
12112
+ let requestSucceeded = false;
12113
+ await requestOrderEdit(void 0, {
12114
+ onError: (e) => {
12115
+ toast.error(`Failed to request order edit: ${e.message}`);
12116
+ },
12117
+ onSuccess: () => {
12118
+ requestSucceeded = true;
12119
+ }
12120
+ });
12121
+ if (!requestSucceeded) {
12122
+ setIsSubmitting(false);
12123
+ return;
12124
+ }
12125
+ await confirmOrderEdit(void 0, {
12126
+ onError: (e) => {
12127
+ toast.error(`Failed to confirm order edit: ${e.message}`);
12128
+ },
12129
+ onSuccess: () => {
12130
+ handleSuccess();
12131
+ },
12132
+ onSettled: () => {
12133
+ setIsSubmitting(false);
12134
+ }
12135
+ });
12136
+ };
12137
+ const onKeydown = useCallback(
12138
+ (e) => {
12139
+ if (e.key === "Enter" && (e.ctrlKey || e.metaKey)) {
12140
+ if (data || isSubmitting) {
12141
+ return;
12142
+ }
12143
+ onSubmit();
12144
+ }
12145
+ },
12146
+ [data, isSubmitting, onSubmit]
12147
+ );
12148
+ useEffect(() => {
12149
+ document.addEventListener("keydown", onKeydown);
12150
+ return () => {
12151
+ document.removeEventListener("keydown", onKeydown);
12152
+ };
12153
+ }, [onKeydown]);
12154
+ return /* @__PURE__ */ jsxs("div", { className: "flex h-full flex-col overflow-hidden", children: [
12155
+ /* @__PURE__ */ jsx(RouteFocusModal.Header, {}),
12156
+ /* @__PURE__ */ jsxs(RouteFocusModal.Body, { className: "flex flex-1 flex-col overflow-hidden", children: [
12157
+ /* @__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: [
12158
+ /* @__PURE__ */ jsxs("div", { children: [
12159
+ /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
12160
+ /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Choose which shipping method(s) to use for the items in the order." }) })
12161
+ ] }),
12162
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12163
+ /* @__PURE__ */ jsx(Accordion.Root, { type: "multiple", children: /* @__PURE__ */ jsxs("div", { className: "bg-ui-bg-subtle rounded-xl shadow-elevation-card-rest", children: [
12164
+ /* @__PURE__ */ jsxs("div", { className: "px-4 py-2 flex items-center justify-between", children: [
12165
+ /* @__PURE__ */ jsx(
12166
+ Text,
12167
+ {
12168
+ size: "xsmall",
12169
+ weight: "plus",
12170
+ className: "text-ui-fg-muted",
12171
+ children: "Shipping profile"
12172
+ }
12173
+ ),
12174
+ /* @__PURE__ */ jsx(
12175
+ Text,
12176
+ {
12177
+ size: "xsmall",
12178
+ weight: "plus",
12179
+ className: "text-ui-fg-muted",
12180
+ children: "Action"
12181
+ }
12182
+ )
12183
+ ] }),
12184
+ /* @__PURE__ */ jsx("div", { className: "px-[5px] pb-[5px]", children: uniqueShippingProfiles.map((profile) => {
12185
+ var _a2, _b, _c, _d, _e, _f, _g;
12186
+ const items = getItemsWithShippingProfile(
12187
+ profile.id,
12188
+ order.items
12189
+ );
12190
+ const hasItems = items.length > 0;
12191
+ const shippingOption = shipping_options == null ? void 0 : shipping_options.find(
12192
+ (option) => option.shipping_profile_id === profile.id
12193
+ );
12194
+ const shippingMethod = preview.shipping_methods.find(
12195
+ (method) => method.shipping_option_id === (shippingOption == null ? void 0 : shippingOption.id)
12196
+ );
12197
+ const addShippingMethodAction = (_a2 = shippingMethod == null ? void 0 : shippingMethod.actions) == null ? void 0 : _a2.find(
12198
+ (action) => action.action === "SHIPPING_ADD"
12199
+ );
12200
+ return /* @__PURE__ */ jsxs(
12201
+ Accordion.Item,
12202
+ {
12203
+ value: profile.id,
12204
+ className: "bg-ui-bg-base shadow-elevation-card-rest rounded-lg",
12205
+ children: [
12206
+ /* @__PURE__ */ jsxs("div", { className: "px-3 py-2 flex items-center justify-between gap-3", children: [
12207
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3 w-full overflow-hidden", children: [
12208
+ /* @__PURE__ */ jsx(Accordion.Trigger, { asChild: true, children: /* @__PURE__ */ jsx(
12209
+ IconButton,
12210
+ {
12211
+ size: "2xsmall",
12212
+ variant: "transparent",
12213
+ className: "group/trigger",
12214
+ disabled: !hasItems,
12215
+ children: /* @__PURE__ */ jsx(TriangleRightMini, { className: "group-data-[state=open]/trigger:rotate-90 transition-transform" })
12216
+ }
12217
+ ) }),
12218
+ !shippingOption ? /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3", children: [
12219
+ /* @__PURE__ */ jsx("div", { className: "size-7 rounded-md shadow-borders-base flex items-center justify-center", children: /* @__PURE__ */ jsx("div", { className: "size-6 rounded bg-ui-bg-component-hover flex items-center justify-center", children: /* @__PURE__ */ jsx(Shopping, { className: "text-ui-fg-subtle" }) }) }),
12220
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col flex-1", children: [
12221
+ /* @__PURE__ */ jsx(
12222
+ Text,
12223
+ {
12224
+ size: "small",
12225
+ weight: "plus",
12226
+ leading: "compact",
12227
+ children: profile.name
12228
+ }
12229
+ ),
12230
+ /* @__PURE__ */ jsxs(
12231
+ Text,
12232
+ {
12233
+ size: "small",
12234
+ leading: "compact",
12235
+ className: "text-ui-fg-subtle",
12236
+ children: [
12237
+ items.length,
12238
+ " ",
12239
+ pluralize(items.length, "items", "item")
12240
+ ]
12241
+ }
12242
+ )
12243
+ ] })
12244
+ ] }) : /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-[5px] max-sm:flex-col max-sm:items-start flex-1 w-full overflow-hidden", children: [
12245
+ /* @__PURE__ */ jsx(
12246
+ Tooltip,
12247
+ {
12248
+ content: /* @__PURE__ */ jsx("ul", { children: items.map((item) => {
12249
+ var _a3, _b2, _c2;
12250
+ return /* @__PURE__ */ jsx(
12251
+ "li",
12252
+ {
12253
+ children: `${item.quantity}x ${(_b2 = (_a3 = item.variant) == null ? void 0 : _a3.product) == null ? void 0 : _b2.title} (${(_c2 = item.variant) == null ? void 0 : _c2.title})`
12254
+ },
12255
+ item.id
12256
+ );
12257
+ }) }),
12258
+ children: /* @__PURE__ */ jsxs(
12259
+ Badge,
12260
+ {
12261
+ className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
12262
+ size: "xsmall",
12263
+ children: [
12264
+ /* @__PURE__ */ jsx(Shopping, { className: "shrink-0" }),
12265
+ /* @__PURE__ */ jsxs("span", { className: "truncate", children: [
12266
+ items.reduce(
12267
+ (acc, item) => acc + item.quantity,
12268
+ 0
12269
+ ),
12270
+ "x",
12271
+ " ",
12272
+ pluralize(items.length, "items", "item")
12273
+ ] })
12274
+ ]
12275
+ }
12276
+ )
12277
+ }
12278
+ ),
12279
+ /* @__PURE__ */ jsx(
12280
+ Tooltip,
12281
+ {
12282
+ content: (_d = (_c = (_b = shippingOption.service_zone) == null ? void 0 : _b.fulfillment_set) == null ? void 0 : _c.location) == null ? void 0 : _d.name,
12283
+ children: /* @__PURE__ */ jsxs(
12284
+ Badge,
12285
+ {
12286
+ className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
12287
+ size: "xsmall",
12288
+ children: [
12289
+ /* @__PURE__ */ jsx(Buildings, { className: "shrink-0" }),
12290
+ /* @__PURE__ */ jsx("span", { className: "truncate", children: (_g = (_f = (_e = shippingOption.service_zone) == null ? void 0 : _e.fulfillment_set) == null ? void 0 : _f.location) == null ? void 0 : _g.name })
12291
+ ]
12292
+ }
12293
+ )
12294
+ }
12295
+ ),
12296
+ /* @__PURE__ */ jsx(Tooltip, { content: shippingOption.name, children: /* @__PURE__ */ jsxs(
12297
+ Badge,
12298
+ {
12299
+ className: "flex items-center gap-x-[3px] overflow-hidden cursor-default",
12300
+ size: "xsmall",
12301
+ children: [
12302
+ /* @__PURE__ */ jsx(TruckFast, { className: "shrink-0" }),
12303
+ /* @__PURE__ */ jsx("span", { className: "truncate", children: shippingOption.name })
12304
+ ]
12305
+ }
12306
+ ) })
12307
+ ] })
12308
+ ] }),
12309
+ shippingOption ? /* @__PURE__ */ jsx(
12310
+ ActionMenu,
12311
+ {
12312
+ groups: [
12313
+ {
12314
+ actions: [
12315
+ hasItems ? {
12316
+ label: "Edit shipping option",
12317
+ icon: /* @__PURE__ */ jsx(Channels, {}),
12318
+ onClick: () => {
12319
+ setIsOpen(
12320
+ STACKED_FOCUS_MODAL_ID,
12321
+ true
12322
+ );
12323
+ setData({
12324
+ shippingProfileId: profile.id,
12325
+ shippingOption,
12326
+ shippingMethod
12327
+ });
12328
+ }
12329
+ } : void 0,
12330
+ {
12331
+ label: "Remove shipping option",
12332
+ icon: /* @__PURE__ */ jsx(Trash, {}),
12333
+ onClick: () => {
12334
+ if (shippingMethod) {
12335
+ if (addShippingMethodAction) {
12336
+ removeActionShippingMethod(
12337
+ addShippingMethodAction.id
12338
+ );
12339
+ } else {
12340
+ removeShippingMethod(
12341
+ shippingMethod.id
12342
+ );
12343
+ }
12344
+ }
12345
+ }
12346
+ }
12347
+ ].filter(Boolean)
12348
+ }
12349
+ ]
12350
+ }
12351
+ ) : /* @__PURE__ */ jsx(
12352
+ StackedModalTrigger,
12353
+ {
12354
+ shippingProfileId: profile.id,
12355
+ shippingOption,
12356
+ shippingMethod,
12357
+ setData,
12358
+ children: "Add shipping option"
12359
+ }
12360
+ )
12361
+ ] }),
12362
+ /* @__PURE__ */ jsxs(Accordion.Content, { children: [
12363
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12364
+ items.map((item, idx) => {
12365
+ var _a3, _b2, _c2, _d2, _e2;
12366
+ return /* @__PURE__ */ jsxs("div", { children: [
12367
+ /* @__PURE__ */ jsxs(
12368
+ "div",
12369
+ {
12370
+ className: "px-3 flex items-center gap-x-3",
12371
+ children: [
12372
+ /* @__PURE__ */ jsx("div", { className: "w-5 h-[56px] flex flex-col justify-center items-center", children: /* @__PURE__ */ jsx(
12373
+ Divider,
12374
+ {
12375
+ variant: "dashed",
12376
+ orientation: "vertical"
12377
+ }
12378
+ ) }),
12379
+ /* @__PURE__ */ jsxs("div", { className: "py-2 flex items-center gap-x-3", children: [
12380
+ /* @__PURE__ */ jsx("div", { className: "size-7 flex items-center justify-center tabular-nums", children: /* @__PURE__ */ jsxs(
12381
+ Text,
12382
+ {
12383
+ size: "small",
12384
+ leading: "compact",
12385
+ className: "text-ui-fg-subtle",
12386
+ children: [
12387
+ item.quantity,
12388
+ "x"
12389
+ ]
12390
+ }
12391
+ ) }),
12392
+ /* @__PURE__ */ jsx(Thumbnail, { thumbnail: item.thumbnail }),
12393
+ /* @__PURE__ */ jsxs("div", { children: [
12394
+ /* @__PURE__ */ jsxs(
12395
+ Text,
12396
+ {
12397
+ size: "small",
12398
+ leading: "compact",
12399
+ weight: "plus",
12400
+ children: [
12401
+ (_b2 = (_a3 = item.variant) == null ? void 0 : _a3.product) == null ? void 0 : _b2.title,
12402
+ " (",
12403
+ (_c2 = item.variant) == null ? void 0 : _c2.title,
12404
+ ")"
12405
+ ]
12406
+ }
12407
+ ),
12408
+ /* @__PURE__ */ jsx(
12409
+ Text,
12410
+ {
12411
+ size: "small",
12412
+ leading: "compact",
12413
+ className: "text-ui-fg-subtle",
12414
+ children: (_e2 = (_d2 = item.variant) == null ? void 0 : _d2.options) == null ? void 0 : _e2.map((option) => option.value).join(" · ")
12415
+ }
12416
+ )
12417
+ ] })
12418
+ ] })
12419
+ ]
12420
+ },
12421
+ item.id
12422
+ ),
12423
+ idx !== items.length - 1 && /* @__PURE__ */ jsx(Divider, { variant: "dashed" })
12424
+ ] }, item.id);
12425
+ })
12426
+ ] })
12427
+ ]
12428
+ },
12429
+ profile.id
12430
+ );
12431
+ }) })
12432
+ ] }) })
12433
+ ] }) }),
12434
+ /* @__PURE__ */ jsx(
12435
+ StackedFocusModal,
12436
+ {
12437
+ id: STACKED_FOCUS_MODAL_ID,
12438
+ onOpenChangeCallback: (open) => {
12439
+ if (!open) {
12440
+ setData(null);
12441
+ }
12442
+ return open;
12443
+ },
12444
+ children: data && /* @__PURE__ */ jsx(ShippingProfileForm, { data, order, preview })
12445
+ }
12446
+ )
12447
+ ] }),
12448
+ /* @__PURE__ */ jsx(RouteFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-x-2", children: [
12449
+ /* @__PURE__ */ jsx(RouteFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
12450
+ /* @__PURE__ */ jsx(
12451
+ Button,
12452
+ {
12453
+ size: "small",
12454
+ type: "button",
12455
+ isLoading: isSubmitting,
12456
+ onClick: onSubmit,
12457
+ children: "Save"
12458
+ }
12459
+ )
12460
+ ] }) })
12461
+ ] });
12462
+ };
12463
+ const StackedModalTrigger = ({
12464
+ shippingProfileId,
12465
+ shippingOption,
12466
+ shippingMethod,
12467
+ setData,
12468
+ children
12469
+ }) => {
12470
+ const { setIsOpen, getIsOpen } = useStackedModal();
12471
+ const isOpen = getIsOpen(STACKED_FOCUS_MODAL_ID);
12472
+ const onToggle = () => {
12473
+ if (isOpen) {
12474
+ setIsOpen(STACKED_FOCUS_MODAL_ID, false);
12475
+ setData(null);
12476
+ } else {
12477
+ setIsOpen(STACKED_FOCUS_MODAL_ID, true);
12478
+ setData({
12479
+ shippingProfileId,
12480
+ shippingOption,
12481
+ shippingMethod
12482
+ });
12483
+ }
12484
+ };
12485
+ return /* @__PURE__ */ jsx(
12486
+ Button,
12487
+ {
12488
+ size: "small",
12489
+ variant: "secondary",
12490
+ onClick: onToggle,
12491
+ className: "text-ui-fg-primary shrink-0",
12492
+ children
12493
+ }
12494
+ );
12495
+ };
12496
+ const ShippingProfileForm = ({
12497
+ data,
12498
+ order,
12499
+ preview
12500
+ }) => {
12501
+ var _a, _b, _c, _d, _e, _f;
12502
+ const { setIsOpen } = useStackedModal();
12503
+ const form = useForm({
12504
+ resolver: zodResolver(shippingMethodSchema),
12505
+ defaultValues: {
12506
+ location_id: (_d = (_c = (_b = (_a = data.shippingOption) == null ? void 0 : _a.service_zone) == null ? void 0 : _b.fulfillment_set) == null ? void 0 : _c.location) == null ? void 0 : _d.id,
12507
+ shipping_option_id: (_e = data.shippingOption) == null ? void 0 : _e.id,
12508
+ custom_amount: (_f = data.shippingMethod) == null ? void 0 : _f.amount
12509
+ }
12510
+ });
12511
+ const { mutateAsync: addShippingMethod, isPending } = useDraftOrderAddShippingMethod(order.id);
12512
+ const {
12513
+ mutateAsync: updateShippingMethod,
12514
+ isPending: isUpdatingShippingMethod
12515
+ } = useDraftOrderUpdateShippingMethod(order.id);
12516
+ const onSubmit = form.handleSubmit(async (values) => {
12517
+ if (isEqual(values, form.formState.defaultValues)) {
12518
+ setIsOpen(STACKED_FOCUS_MODAL_ID, false);
12519
+ return;
12520
+ }
12521
+ if (data.shippingMethod) {
12522
+ await updateShippingMethod(
12523
+ {
12524
+ method_id: data.shippingMethod.id,
12525
+ shipping_option_id: values.shipping_option_id,
12526
+ custom_amount: values.custom_amount ? convertNumber(values.custom_amount) : void 0
12527
+ },
12528
+ {
12529
+ onError: (e) => {
12530
+ toast.error(e.message);
12531
+ },
12532
+ onSuccess: () => {
12533
+ setIsOpen(STACKED_FOCUS_MODAL_ID, false);
12534
+ }
12535
+ }
12536
+ );
12537
+ return;
12538
+ }
12539
+ await addShippingMethod(
12540
+ {
12541
+ shipping_option_id: values.shipping_option_id,
12542
+ custom_amount: values.custom_amount ? convertNumber(values.custom_amount) : void 0
12543
+ },
12544
+ {
12545
+ onError: (e) => {
12546
+ toast.error(e.message);
12547
+ },
12548
+ onSuccess: () => {
12549
+ setIsOpen(STACKED_FOCUS_MODAL_ID, false);
12550
+ }
12551
+ }
12552
+ );
12553
+ });
12554
+ return /* @__PURE__ */ jsx(StackedFocusModal.Content, { children: /* @__PURE__ */ jsx(Form$2, { ...form, children: /* @__PURE__ */ jsxs(
12555
+ KeyboundForm,
12556
+ {
12557
+ className: "flex h-full flex-col overflow-hidden",
12558
+ onSubmit,
12559
+ children: [
12560
+ /* @__PURE__ */ jsx(StackedFocusModal.Header, {}),
12561
+ /* @__PURE__ */ jsx(StackedFocusModal.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: [
12562
+ /* @__PURE__ */ jsxs("div", { children: [
12563
+ /* @__PURE__ */ jsx(RouteFocusModal.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Shipping" }) }),
12564
+ /* @__PURE__ */ jsx(RouteFocusModal.Description, { asChild: true, children: /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Add a shipping method for the selected shipping profile. You can see the items that will be shipped using this method in the preview below." }) })
12565
+ ] }),
12566
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12567
+ /* @__PURE__ */ jsx(
12568
+ LocationField,
12569
+ {
12570
+ control: form.control,
12571
+ setValue: form.setValue
12572
+ }
12573
+ ),
12574
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12575
+ /* @__PURE__ */ jsx(
12576
+ ShippingOptionField,
12577
+ {
12578
+ shippingProfileId: data.shippingProfileId,
12579
+ preview,
12580
+ control: form.control
12581
+ }
12582
+ ),
12583
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12584
+ /* @__PURE__ */ jsx(
12585
+ CustomAmountField,
12586
+ {
12587
+ control: form.control,
12588
+ currencyCode: order.currency_code
12589
+ }
12590
+ ),
12591
+ /* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
12592
+ /* @__PURE__ */ jsx(
12593
+ ItemsPreview,
12594
+ {
12595
+ order,
12596
+ shippingProfileId: data.shippingProfileId
12597
+ }
12598
+ )
12599
+ ] }) }) }),
12600
+ /* @__PURE__ */ jsx(StackedFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-x-2", children: [
12601
+ /* @__PURE__ */ jsx(StackedFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
12602
+ /* @__PURE__ */ jsx(
12603
+ Button,
12604
+ {
12605
+ size: "small",
12606
+ type: "submit",
12607
+ isLoading: isPending || isUpdatingShippingMethod,
12608
+ children: data.shippingMethod ? "Update" : "Add"
12609
+ }
12610
+ )
12611
+ ] }) })
12612
+ ]
12613
+ }
12614
+ ) }) });
12615
+ };
12616
+ const shippingMethodSchema = objectType({
12617
+ location_id: stringType(),
12618
+ shipping_option_id: stringType(),
12619
+ custom_amount: unionType([numberType(), stringType()]).optional()
12620
+ });
12621
+ const ItemsPreview = ({ order, shippingProfileId }) => {
12622
+ const matches = order.items.filter(
12623
+ (item) => {
12624
+ var _a, _b, _c;
12625
+ return ((_c = (_b = (_a = item.variant) == null ? void 0 : _a.product) == null ? void 0 : _b.shipping_profile) == null ? void 0 : _c.id) === shippingProfileId;
12626
+ }
12627
+ );
12628
+ return /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-6", children: [
12629
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 items-center gap-3", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12630
+ /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: "Items to ship" }),
12631
+ /* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Items with the selected shipping profile." })
12632
+ ] }) }),
12633
+ /* @__PURE__ */ jsxs("div", { className: "bg-ui-bg-subtle shadow-elevation-card-rest rounded-xl", children: [
12634
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-3 px-4 py-2 text-ui-fg-muted", children: [
12635
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: "Item" }) }),
12636
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: "Quantity" }) })
12637
+ ] }),
12638
+ /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-y-1.5 px-[5px] pb-[5px]", children: matches.length > 0 ? matches == null ? void 0 : matches.map((item) => /* @__PURE__ */ jsxs(
12639
+ "div",
12640
+ {
12641
+ className: "grid grid-cols-2 gap-3 px-4 py-2 bg-ui-bg-base shadow-elevation-card-rest rounded-lg items-center",
12642
+ children: [
12643
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-3", children: [
12644
+ /* @__PURE__ */ jsx(
12645
+ Thumbnail,
12646
+ {
12647
+ thumbnail: item.thumbnail,
12648
+ alt: item.product_title ?? void 0
12649
+ }
12650
+ ),
12651
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12652
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-1", children: [
12653
+ /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: item.product_title }),
12654
+ /* @__PURE__ */ jsxs(
12655
+ Text,
12656
+ {
12657
+ size: "small",
12658
+ leading: "compact",
12659
+ className: "text-ui-fg-subtle",
12660
+ children: [
12661
+ "(",
12662
+ item.variant_title,
12663
+ ")"
12664
+ ]
12665
+ }
12666
+ )
12667
+ ] }),
12668
+ /* @__PURE__ */ jsx(
12669
+ Text,
12670
+ {
12671
+ size: "small",
12672
+ leading: "compact",
12673
+ className: "text-ui-fg-subtle",
12674
+ children: item.variant_sku
12675
+ }
12676
+ )
12677
+ ] })
12678
+ ] }),
12679
+ /* @__PURE__ */ jsxs(
12680
+ Text,
12681
+ {
12682
+ size: "small",
12683
+ leading: "compact",
12684
+ className: "text-ui-fg-subtle",
12685
+ children: [
12686
+ item.quantity,
12687
+ "x"
12688
+ ]
12689
+ }
12690
+ )
12691
+ ]
12692
+ },
12693
+ item.id
12694
+ )) : /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center gap-x-3 bg-ui-bg-base rounded-lg p-4 shadow-elevation-card-rest flex-col gap-1", children: [
12695
+ /* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", leading: "compact", children: "No items found" }),
12696
+ /* @__PURE__ */ jsxs(Text, { size: "small", className: "text-ui-fg-subtle", children: [
12697
+ 'No items found for "',
12698
+ query,
12699
+ '".'
12700
+ ] })
12701
+ ] }) })
12702
+ ] })
12703
+ ] });
12704
+ };
12705
+ const LocationField = ({ control, setValue }) => {
12706
+ const locations = useComboboxData({
12707
+ queryKey: ["locations"],
12708
+ queryFn: async (params) => {
12709
+ return await sdk.admin.stockLocation.list(params);
12710
+ },
12711
+ getOptions: (data) => {
12712
+ return data.stock_locations.map((location) => ({
12713
+ label: location.name,
12714
+ value: location.id
12715
+ }));
12716
+ }
12717
+ });
12718
+ return /* @__PURE__ */ jsx(
12719
+ Form$2.Field,
12720
+ {
12721
+ control,
12722
+ name: "location_id",
12723
+ render: ({ field: { onChange, ...field } }) => {
12724
+ return /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12725
+ /* @__PURE__ */ jsxs("div", { children: [
12726
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Location" }),
12727
+ /* @__PURE__ */ jsx(Form$2.Hint, { children: "Choose where you want to ship the items from." })
12728
+ ] }),
12729
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12730
+ Combobox,
12731
+ {
12732
+ options: locations.options,
12733
+ fetchNextPage: locations.fetchNextPage,
12734
+ isFetchingNextPage: locations.isFetchingNextPage,
12735
+ searchValue: locations.searchValue,
12736
+ onSearchValueChange: locations.onSearchValueChange,
12737
+ placeholder: "Select location",
12738
+ onChange: (value) => {
12739
+ setValue("shipping_option_id", "", {
12740
+ shouldDirty: true,
12741
+ shouldTouch: true
12742
+ });
12743
+ onChange(value);
12744
+ },
12745
+ ...field
12746
+ }
12747
+ ) })
12748
+ ] }) });
12749
+ }
12750
+ }
12751
+ );
12752
+ };
12753
+ const ShippingOptionField = ({
12754
+ shippingProfileId,
12755
+ preview,
12756
+ control
12757
+ }) => {
12758
+ var _a;
12759
+ const locationId = useWatch({ control, name: "location_id" });
12760
+ const shippingOptions = useComboboxData({
12761
+ queryKey: ["shipping_options", locationId, shippingProfileId],
12762
+ queryFn: async (params) => {
12763
+ return await sdk.admin.shippingOption.list({
12764
+ ...params,
12765
+ stock_location_id: locationId,
12766
+ shipping_profile_id: shippingProfileId
12767
+ });
12768
+ },
12769
+ getOptions: (data) => {
12770
+ return data.shipping_options.map((option) => {
12771
+ var _a2;
12772
+ if ((_a2 = option.rules) == null ? void 0 : _a2.find(
12773
+ (r) => r.attribute === "is_return" && r.value === "true"
12774
+ )) {
12775
+ return void 0;
12776
+ }
12777
+ return {
12778
+ label: option.name,
12779
+ value: option.id
12780
+ };
12781
+ }).filter(Boolean);
12782
+ },
12783
+ enabled: !!locationId && !!shippingProfileId,
12784
+ defaultValue: ((_a = preview.shipping_methods[0]) == null ? void 0 : _a.shipping_option_id) || void 0
12785
+ });
12786
+ const tooltipContent = !locationId && !shippingProfileId ? "Choose a location and shipping profile first." : !locationId ? "Choose a location first." : "Choose a shipping profile first.";
12787
+ return /* @__PURE__ */ jsx(
12788
+ Form$2.Field,
12789
+ {
12790
+ control,
12791
+ name: "shipping_option_id",
12792
+ render: ({ field }) => {
12793
+ return /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12794
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12795
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Shipping option" }),
12796
+ /* @__PURE__ */ jsx(Form$2.Hint, { children: "Choose the shipping option to use." })
12797
+ ] }),
12798
+ /* @__PURE__ */ jsx(
12799
+ ConditionalTooltip,
12800
+ {
12801
+ content: tooltipContent,
12802
+ showTooltip: !locationId || !shippingProfileId,
12803
+ children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12804
+ Combobox,
12805
+ {
12806
+ options: shippingOptions.options,
12807
+ fetchNextPage: shippingOptions.fetchNextPage,
12808
+ isFetchingNextPage: shippingOptions.isFetchingNextPage,
12809
+ searchValue: shippingOptions.searchValue,
12810
+ onSearchValueChange: shippingOptions.onSearchValueChange,
12811
+ placeholder: "Select shipping option",
12812
+ ...field,
12813
+ disabled: !locationId || !shippingProfileId
12814
+ }
12815
+ ) }) })
12816
+ }
12817
+ )
12818
+ ] }) });
12819
+ }
12820
+ }
12821
+ );
12822
+ };
12823
+ const CustomAmountField = ({
12824
+ control,
12825
+ currencyCode
12826
+ }) => {
12827
+ return /* @__PURE__ */ jsx(
12828
+ Form$2.Field,
12829
+ {
12830
+ control,
12831
+ name: "custom_amount",
12832
+ render: ({ field: { onChange, ...field } }) => {
12833
+ return /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
12834
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
12835
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Custom amount" }),
12836
+ /* @__PURE__ */ jsx(Form$2.Hint, { children: "Set a custom amount for the shipping option." })
12837
+ ] }),
12838
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
12839
+ CurrencyInput,
12840
+ {
12841
+ ...field,
12842
+ onValueChange: (value) => onChange(value),
12843
+ symbol: getNativeSymbol(currencyCode),
12844
+ code: currencyCode
12987
12845
  }
12988
- ) }),
12989
- /* @__PURE__ */ jsx("clipPath", { id: "clip1_20915_38670", children: /* @__PURE__ */ jsx(
12990
- "rect",
12846
+ ) })
12847
+ ] });
12848
+ }
12849
+ }
12850
+ );
12851
+ };
12852
+ const BillingAddress = () => {
12853
+ const { id } = useParams();
12854
+ const { order, isPending, isError, error } = useOrder(id, {
12855
+ fields: "+billing_address"
12856
+ });
12857
+ if (isError) {
12858
+ throw error;
12859
+ }
12860
+ const isReady = !isPending && !!order;
12861
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
12862
+ /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
12863
+ /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
12864
+ /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
12865
+ ] }),
12866
+ isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
12867
+ ] });
12868
+ };
12869
+ const BillingAddressForm = ({ order }) => {
12870
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
12871
+ const form = useForm({
12872
+ defaultValues: {
12873
+ first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
12874
+ last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
12875
+ company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
12876
+ address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
12877
+ address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
12878
+ city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
12879
+ province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
12880
+ country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
12881
+ postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
12882
+ phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
12883
+ },
12884
+ resolver: zodResolver(schema)
12885
+ });
12886
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12887
+ const { handleSuccess } = useRouteModal();
12888
+ const onSubmit = form.handleSubmit(async (data) => {
12889
+ await mutateAsync(
12890
+ { billing_address: data },
12891
+ {
12892
+ onSuccess: () => {
12893
+ handleSuccess();
12894
+ },
12895
+ onError: (error) => {
12896
+ toast.error(error.message);
12897
+ }
12898
+ }
12899
+ );
12900
+ });
12901
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
12902
+ KeyboundForm,
12903
+ {
12904
+ className: "flex flex-1 flex-col overflow-hidden",
12905
+ onSubmit,
12906
+ children: [
12907
+ /* @__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: [
12908
+ /* @__PURE__ */ jsx(
12909
+ Form$2.Field,
12991
12910
  {
12992
- width: "12",
12993
- height: "12",
12994
- fill: "white",
12995
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 148.75 80.6541)"
12911
+ control: form.control,
12912
+ name: "country_code",
12913
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12914
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
12915
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
12916
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12917
+ ] })
12996
12918
  }
12997
- ) }),
12998
- /* @__PURE__ */ jsx("clipPath", { id: "clip2_20915_38670", children: /* @__PURE__ */ jsx(
12999
- "rect",
12919
+ ),
12920
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
12921
+ /* @__PURE__ */ jsx(
12922
+ Form$2.Field,
12923
+ {
12924
+ control: form.control,
12925
+ name: "first_name",
12926
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12927
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
12928
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12929
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12930
+ ] })
12931
+ }
12932
+ ),
12933
+ /* @__PURE__ */ jsx(
12934
+ Form$2.Field,
12935
+ {
12936
+ control: form.control,
12937
+ name: "last_name",
12938
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12939
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
12940
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12941
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12942
+ ] })
12943
+ }
12944
+ )
12945
+ ] }),
12946
+ /* @__PURE__ */ jsx(
12947
+ Form$2.Field,
13000
12948
  {
13001
- width: "12",
13002
- height: "12",
13003
- fill: "white",
13004
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 159.141 86.6575)"
12949
+ control: form.control,
12950
+ name: "company",
12951
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12952
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
12953
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12954
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12955
+ ] })
13005
12956
  }
13006
- ) }),
13007
- /* @__PURE__ */ jsx("clipPath", { id: "clip3_20915_38670", children: /* @__PURE__ */ jsx(
13008
- "rect",
12957
+ ),
12958
+ /* @__PURE__ */ jsx(
12959
+ Form$2.Field,
13009
12960
  {
13010
- width: "12",
13011
- height: "12",
13012
- fill: "white",
13013
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 120.928 84.4561)"
12961
+ control: form.control,
12962
+ name: "address_1",
12963
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12964
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
12965
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12966
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12967
+ ] })
13014
12968
  }
13015
- ) }),
13016
- /* @__PURE__ */ jsx("clipPath", { id: "clip4_20915_38670", children: /* @__PURE__ */ jsx(
13017
- "rect",
12969
+ ),
12970
+ /* @__PURE__ */ jsx(
12971
+ Form$2.Field,
13018
12972
  {
13019
- width: "12",
13020
- height: "12",
13021
- fill: "white",
13022
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 131.318 90.4594)"
12973
+ control: form.control,
12974
+ name: "address_2",
12975
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12976
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
12977
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12978
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12979
+ ] })
13023
12980
  }
13024
- ) }),
13025
- /* @__PURE__ */ jsx("clipPath", { id: "clip5_20915_38670", children: /* @__PURE__ */ jsx(
13026
- "rect",
12981
+ ),
12982
+ /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
12983
+ /* @__PURE__ */ jsx(
12984
+ Form$2.Field,
12985
+ {
12986
+ control: form.control,
12987
+ name: "postal_code",
12988
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
12989
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
12990
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
12991
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
12992
+ ] })
12993
+ }
12994
+ ),
12995
+ /* @__PURE__ */ jsx(
12996
+ Form$2.Field,
12997
+ {
12998
+ control: form.control,
12999
+ name: "city",
13000
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
13001
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
13002
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
13003
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
13004
+ ] })
13005
+ }
13006
+ )
13007
+ ] }),
13008
+ /* @__PURE__ */ jsx(
13009
+ Form$2.Field,
13027
13010
  {
13028
- width: "12",
13029
- height: "12",
13030
- fill: "white",
13031
- transform: "matrix(0.865865 0.500278 -0.871576 0.490261 141.709 96.4627)"
13011
+ control: form.control,
13012
+ name: "province",
13013
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
13014
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
13015
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
13016
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
13017
+ ] })
13032
13018
  }
13033
- ) })
13034
- ] })
13019
+ ),
13020
+ /* @__PURE__ */ jsx(
13021
+ Form$2.Field,
13022
+ {
13023
+ control: form.control,
13024
+ name: "phone",
13025
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
13026
+ /* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
13027
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
13028
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
13029
+ ] })
13030
+ }
13031
+ )
13032
+ ] }) }),
13033
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
13034
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
13035
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
13036
+ ] }) })
13035
13037
  ]
13036
13038
  }
13037
- );
13039
+ ) });
13038
13040
  };
13039
- const schema = objectType({
13040
- customer_id: stringType().min(1)
13041
- });
13041
+ const schema = addressSchema;
13042
13042
  const widgetModule = { widgets: [] };
13043
13043
  const routeModule = {
13044
13044
  routes: [
@@ -13060,17 +13060,13 @@ const routeModule = {
13060
13060
  loader,
13061
13061
  children: [
13062
13062
  {
13063
- Component: BillingAddress,
13064
- path: "/draft-orders/:id/billing-address"
13063
+ Component: CustomItems,
13064
+ path: "/draft-orders/:id/custom-items"
13065
13065
  },
13066
13066
  {
13067
13067
  Component: Email,
13068
13068
  path: "/draft-orders/:id/email"
13069
13069
  },
13070
- {
13071
- Component: CustomItems,
13072
- path: "/draft-orders/:id/custom-items"
13073
- },
13074
13070
  {
13075
13071
  Component: Items,
13076
13072
  path: "/draft-orders/:id/items"
@@ -13083,10 +13079,6 @@ const routeModule = {
13083
13079
  Component: Promotions,
13084
13080
  path: "/draft-orders/:id/promotions"
13085
13081
  },
13086
- {
13087
- Component: Shipping,
13088
- path: "/draft-orders/:id/shipping"
13089
- },
13090
13082
  {
13091
13083
  Component: SalesChannel,
13092
13084
  path: "/draft-orders/:id/sales-channel"
@@ -13098,6 +13090,14 @@ const routeModule = {
13098
13090
  {
13099
13091
  Component: TransferOwnership,
13100
13092
  path: "/draft-orders/:id/transfer-ownership"
13093
+ },
13094
+ {
13095
+ Component: Shipping,
13096
+ path: "/draft-orders/:id/shipping"
13097
+ },
13098
+ {
13099
+ Component: BillingAddress,
13100
+ path: "/draft-orders/:id/billing-address"
13101
13101
  }
13102
13102
  ]
13103
13103
  }