@medusajs/draft-order 2.10.0-preview-20250828120155 → 2.10.0-preview-20250828135607
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.medusa/server/src/admin/index.js +588 -588
- package/.medusa/server/src/admin/index.mjs +588 -588
- package/package.json +16 -18
|
@@ -9554,6 +9554,196 @@ const ID = () => {
|
|
|
9554
9554
|
/* @__PURE__ */ jsx(Outlet, {})
|
|
9555
9555
|
] });
|
|
9556
9556
|
};
|
|
9557
|
+
const BillingAddress = () => {
|
|
9558
|
+
const { id } = useParams();
|
|
9559
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9560
|
+
fields: "+billing_address"
|
|
9561
|
+
});
|
|
9562
|
+
if (isError) {
|
|
9563
|
+
throw error;
|
|
9564
|
+
}
|
|
9565
|
+
const isReady = !isPending && !!order;
|
|
9566
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9567
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9568
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
|
|
9569
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
9570
|
+
] }),
|
|
9571
|
+
isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
|
|
9572
|
+
] });
|
|
9573
|
+
};
|
|
9574
|
+
const BillingAddressForm = ({ order }) => {
|
|
9575
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
9576
|
+
const form = useForm({
|
|
9577
|
+
defaultValues: {
|
|
9578
|
+
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
9579
|
+
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
9580
|
+
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
9581
|
+
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
9582
|
+
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
9583
|
+
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
9584
|
+
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
9585
|
+
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
9586
|
+
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
9587
|
+
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
9588
|
+
},
|
|
9589
|
+
resolver: zodResolver(schema$5)
|
|
9590
|
+
});
|
|
9591
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9592
|
+
const { handleSuccess } = useRouteModal();
|
|
9593
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9594
|
+
await mutateAsync(
|
|
9595
|
+
{ billing_address: data },
|
|
9596
|
+
{
|
|
9597
|
+
onSuccess: () => {
|
|
9598
|
+
handleSuccess();
|
|
9599
|
+
},
|
|
9600
|
+
onError: (error) => {
|
|
9601
|
+
toast.error(error.message);
|
|
9602
|
+
}
|
|
9603
|
+
}
|
|
9604
|
+
);
|
|
9605
|
+
});
|
|
9606
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9607
|
+
KeyboundForm,
|
|
9608
|
+
{
|
|
9609
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9610
|
+
onSubmit,
|
|
9611
|
+
children: [
|
|
9612
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
9613
|
+
/* @__PURE__ */ jsx(
|
|
9614
|
+
Form$2.Field,
|
|
9615
|
+
{
|
|
9616
|
+
control: form.control,
|
|
9617
|
+
name: "country_code",
|
|
9618
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9619
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
9620
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
9621
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9622
|
+
] })
|
|
9623
|
+
}
|
|
9624
|
+
),
|
|
9625
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9626
|
+
/* @__PURE__ */ jsx(
|
|
9627
|
+
Form$2.Field,
|
|
9628
|
+
{
|
|
9629
|
+
control: form.control,
|
|
9630
|
+
name: "first_name",
|
|
9631
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9632
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
9633
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9634
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9635
|
+
] })
|
|
9636
|
+
}
|
|
9637
|
+
),
|
|
9638
|
+
/* @__PURE__ */ jsx(
|
|
9639
|
+
Form$2.Field,
|
|
9640
|
+
{
|
|
9641
|
+
control: form.control,
|
|
9642
|
+
name: "last_name",
|
|
9643
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9644
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
9645
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9646
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9647
|
+
] })
|
|
9648
|
+
}
|
|
9649
|
+
)
|
|
9650
|
+
] }),
|
|
9651
|
+
/* @__PURE__ */ jsx(
|
|
9652
|
+
Form$2.Field,
|
|
9653
|
+
{
|
|
9654
|
+
control: form.control,
|
|
9655
|
+
name: "company",
|
|
9656
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9657
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
9658
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9659
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9660
|
+
] })
|
|
9661
|
+
}
|
|
9662
|
+
),
|
|
9663
|
+
/* @__PURE__ */ jsx(
|
|
9664
|
+
Form$2.Field,
|
|
9665
|
+
{
|
|
9666
|
+
control: form.control,
|
|
9667
|
+
name: "address_1",
|
|
9668
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9669
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
9670
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9671
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9672
|
+
] })
|
|
9673
|
+
}
|
|
9674
|
+
),
|
|
9675
|
+
/* @__PURE__ */ jsx(
|
|
9676
|
+
Form$2.Field,
|
|
9677
|
+
{
|
|
9678
|
+
control: form.control,
|
|
9679
|
+
name: "address_2",
|
|
9680
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9681
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
9682
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9683
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9684
|
+
] })
|
|
9685
|
+
}
|
|
9686
|
+
),
|
|
9687
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
9688
|
+
/* @__PURE__ */ jsx(
|
|
9689
|
+
Form$2.Field,
|
|
9690
|
+
{
|
|
9691
|
+
control: form.control,
|
|
9692
|
+
name: "postal_code",
|
|
9693
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9694
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
9695
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9696
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9697
|
+
] })
|
|
9698
|
+
}
|
|
9699
|
+
),
|
|
9700
|
+
/* @__PURE__ */ jsx(
|
|
9701
|
+
Form$2.Field,
|
|
9702
|
+
{
|
|
9703
|
+
control: form.control,
|
|
9704
|
+
name: "city",
|
|
9705
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9706
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
9707
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9708
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9709
|
+
] })
|
|
9710
|
+
}
|
|
9711
|
+
)
|
|
9712
|
+
] }),
|
|
9713
|
+
/* @__PURE__ */ jsx(
|
|
9714
|
+
Form$2.Field,
|
|
9715
|
+
{
|
|
9716
|
+
control: form.control,
|
|
9717
|
+
name: "province",
|
|
9718
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9719
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
9720
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9721
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9722
|
+
] })
|
|
9723
|
+
}
|
|
9724
|
+
),
|
|
9725
|
+
/* @__PURE__ */ jsx(
|
|
9726
|
+
Form$2.Field,
|
|
9727
|
+
{
|
|
9728
|
+
control: form.control,
|
|
9729
|
+
name: "phone",
|
|
9730
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9731
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
9732
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9733
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9734
|
+
] })
|
|
9735
|
+
}
|
|
9736
|
+
)
|
|
9737
|
+
] }) }),
|
|
9738
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9739
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9740
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9741
|
+
] }) })
|
|
9742
|
+
]
|
|
9743
|
+
}
|
|
9744
|
+
) });
|
|
9745
|
+
};
|
|
9746
|
+
const schema$5 = addressSchema;
|
|
9557
9747
|
const CustomItems = () => {
|
|
9558
9748
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9559
9749
|
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
@@ -9562,7 +9752,7 @@ const CustomItems = () => {
|
|
|
9562
9752
|
};
|
|
9563
9753
|
const CustomItemsForm = () => {
|
|
9564
9754
|
const form = useForm({
|
|
9565
|
-
resolver: zodResolver(schema$
|
|
9755
|
+
resolver: zodResolver(schema$4)
|
|
9566
9756
|
});
|
|
9567
9757
|
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9568
9758
|
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
@@ -9572,45 +9762,113 @@ const CustomItemsForm = () => {
|
|
|
9572
9762
|
] }) })
|
|
9573
9763
|
] }) });
|
|
9574
9764
|
};
|
|
9575
|
-
const schema$
|
|
9765
|
+
const schema$4 = objectType({
|
|
9576
9766
|
email: stringType().email()
|
|
9577
9767
|
});
|
|
9578
|
-
const
|
|
9579
|
-
(
|
|
9580
|
-
|
|
9581
|
-
|
|
9582
|
-
|
|
9583
|
-
|
|
9584
|
-
|
|
9585
|
-
|
|
9586
|
-
|
|
9587
|
-
|
|
9588
|
-
|
|
9589
|
-
|
|
9590
|
-
|
|
9591
|
-
|
|
9592
|
-
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9606
|
-
}
|
|
9607
|
-
};
|
|
9608
|
-
return /* @__PURE__ */ jsxs(
|
|
9609
|
-
"div",
|
|
9768
|
+
const Email = () => {
|
|
9769
|
+
const { id } = useParams();
|
|
9770
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9771
|
+
fields: "+email"
|
|
9772
|
+
});
|
|
9773
|
+
if (isError) {
|
|
9774
|
+
throw error;
|
|
9775
|
+
}
|
|
9776
|
+
const isReady = !isPending && !!order;
|
|
9777
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9778
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9779
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
9780
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
9781
|
+
] }),
|
|
9782
|
+
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
9783
|
+
] });
|
|
9784
|
+
};
|
|
9785
|
+
const EmailForm = ({ order }) => {
|
|
9786
|
+
const form = useForm({
|
|
9787
|
+
defaultValues: {
|
|
9788
|
+
email: order.email ?? ""
|
|
9789
|
+
},
|
|
9790
|
+
resolver: zodResolver(schema$3)
|
|
9791
|
+
});
|
|
9792
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9793
|
+
const { handleSuccess } = useRouteModal();
|
|
9794
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9795
|
+
await mutateAsync(
|
|
9796
|
+
{ email: data.email },
|
|
9610
9797
|
{
|
|
9611
|
-
|
|
9612
|
-
|
|
9613
|
-
|
|
9798
|
+
onSuccess: () => {
|
|
9799
|
+
handleSuccess();
|
|
9800
|
+
},
|
|
9801
|
+
onError: (error) => {
|
|
9802
|
+
toast.error(error.message);
|
|
9803
|
+
}
|
|
9804
|
+
}
|
|
9805
|
+
);
|
|
9806
|
+
});
|
|
9807
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9808
|
+
KeyboundForm,
|
|
9809
|
+
{
|
|
9810
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9811
|
+
onSubmit,
|
|
9812
|
+
children: [
|
|
9813
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
9814
|
+
Form$2.Field,
|
|
9815
|
+
{
|
|
9816
|
+
control: form.control,
|
|
9817
|
+
name: "email",
|
|
9818
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9819
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
9820
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9821
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9822
|
+
] })
|
|
9823
|
+
}
|
|
9824
|
+
) }),
|
|
9825
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9826
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9827
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9828
|
+
] }) })
|
|
9829
|
+
]
|
|
9830
|
+
}
|
|
9831
|
+
) });
|
|
9832
|
+
};
|
|
9833
|
+
const schema$3 = objectType({
|
|
9834
|
+
email: stringType().email()
|
|
9835
|
+
});
|
|
9836
|
+
const NumberInput = forwardRef(
|
|
9837
|
+
({
|
|
9838
|
+
value,
|
|
9839
|
+
onChange,
|
|
9840
|
+
size = "base",
|
|
9841
|
+
min = 0,
|
|
9842
|
+
max = 100,
|
|
9843
|
+
step = 1,
|
|
9844
|
+
className,
|
|
9845
|
+
disabled,
|
|
9846
|
+
...props
|
|
9847
|
+
}, ref) => {
|
|
9848
|
+
const handleChange = (event) => {
|
|
9849
|
+
const newValue = event.target.value === "" ? min : Number(event.target.value);
|
|
9850
|
+
if (!isNaN(newValue) && (max === void 0 || newValue <= max) && (min === void 0 || newValue >= min)) {
|
|
9851
|
+
onChange(newValue);
|
|
9852
|
+
}
|
|
9853
|
+
};
|
|
9854
|
+
const handleIncrement = () => {
|
|
9855
|
+
const newValue = value + step;
|
|
9856
|
+
if (max === void 0 || newValue <= max) {
|
|
9857
|
+
onChange(newValue);
|
|
9858
|
+
}
|
|
9859
|
+
};
|
|
9860
|
+
const handleDecrement = () => {
|
|
9861
|
+
const newValue = value - step;
|
|
9862
|
+
if (min === void 0 || newValue >= min) {
|
|
9863
|
+
onChange(newValue);
|
|
9864
|
+
}
|
|
9865
|
+
};
|
|
9866
|
+
return /* @__PURE__ */ jsxs(
|
|
9867
|
+
"div",
|
|
9868
|
+
{
|
|
9869
|
+
className: clx(
|
|
9870
|
+
"inline-flex rounded-md bg-ui-bg-field shadow-borders-base overflow-hidden divide-x transition-fg",
|
|
9871
|
+
"[&:has(input:focus)]:shadow-borders-interactive-with-active",
|
|
9614
9872
|
{
|
|
9615
9873
|
"h-7": size === "small",
|
|
9616
9874
|
"h-8": size === "base"
|
|
@@ -10478,335 +10736,77 @@ const CustomItemForm = ({ orderId, currencyCode }) => {
|
|
|
10478
10736
|
/* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
|
|
10479
10737
|
/* @__PURE__ */ jsx(
|
|
10480
10738
|
Form$2.Field,
|
|
10481
|
-
{
|
|
10482
|
-
control: form.control,
|
|
10483
|
-
name: "title",
|
|
10484
|
-
render: ({ field }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10485
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
10486
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Title" }),
|
|
10487
|
-
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the title of the item" })
|
|
10488
|
-
] }),
|
|
10489
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
10490
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10491
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10492
|
-
] })
|
|
10493
|
-
] }) })
|
|
10494
|
-
}
|
|
10495
|
-
),
|
|
10496
|
-
/* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
|
|
10497
|
-
/* @__PURE__ */ jsx(
|
|
10498
|
-
Form$2.Field,
|
|
10499
|
-
{
|
|
10500
|
-
control: form.control,
|
|
10501
|
-
name: "unit_price",
|
|
10502
|
-
render: ({ field: { onChange, ...field } }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10503
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
10504
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Unit price" }),
|
|
10505
|
-
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the unit price of the item" })
|
|
10506
|
-
] }),
|
|
10507
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
10508
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
10509
|
-
CurrencyInput,
|
|
10510
|
-
{
|
|
10511
|
-
symbol: getNativeSymbol(currencyCode),
|
|
10512
|
-
code: currencyCode,
|
|
10513
|
-
onValueChange: (_value, _name, values) => onChange(values == null ? void 0 : values.value),
|
|
10514
|
-
...field
|
|
10515
|
-
}
|
|
10516
|
-
) }),
|
|
10517
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10518
|
-
] })
|
|
10519
|
-
] }) })
|
|
10520
|
-
}
|
|
10521
|
-
),
|
|
10522
|
-
/* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
|
|
10523
|
-
/* @__PURE__ */ jsx(
|
|
10524
|
-
Form$2.Field,
|
|
10525
|
-
{
|
|
10526
|
-
control: form.control,
|
|
10527
|
-
name: "quantity",
|
|
10528
|
-
render: ({ field }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10529
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
10530
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Quantity" }),
|
|
10531
|
-
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the quantity of the item" })
|
|
10532
|
-
] }),
|
|
10533
|
-
/* @__PURE__ */ jsxs("div", { className: "flex-1 w-full", children: [
|
|
10534
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx("div", { className: "flex-1 w-full", children: /* @__PURE__ */ jsx(NumberInput, { ...field, className: "w-full" }) }) }),
|
|
10535
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10536
|
-
] })
|
|
10537
|
-
] }) })
|
|
10538
|
-
}
|
|
10539
|
-
)
|
|
10540
|
-
] }) }) }),
|
|
10541
|
-
/* @__PURE__ */ jsx(StackedFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-2 justify-end", children: [
|
|
10542
|
-
/* @__PURE__ */ jsx(StackedFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
|
|
10543
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "button", onClick: onSubmit, children: "Add item" })
|
|
10544
|
-
] }) })
|
|
10545
|
-
] }) }) });
|
|
10546
|
-
};
|
|
10547
|
-
const customItemSchema = objectType({
|
|
10548
|
-
title: stringType().min(1),
|
|
10549
|
-
quantity: numberType(),
|
|
10550
|
-
unit_price: unionType([numberType(), stringType()])
|
|
10551
|
-
});
|
|
10552
|
-
const Email = () => {
|
|
10553
|
-
const { id } = useParams();
|
|
10554
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
10555
|
-
fields: "+email"
|
|
10556
|
-
});
|
|
10557
|
-
if (isError) {
|
|
10558
|
-
throw error;
|
|
10559
|
-
}
|
|
10560
|
-
const isReady = !isPending && !!order;
|
|
10561
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
10562
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
10563
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
10564
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
10565
|
-
] }),
|
|
10566
|
-
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
10567
|
-
] });
|
|
10568
|
-
};
|
|
10569
|
-
const EmailForm = ({ order }) => {
|
|
10570
|
-
const form = useForm({
|
|
10571
|
-
defaultValues: {
|
|
10572
|
-
email: order.email ?? ""
|
|
10573
|
-
},
|
|
10574
|
-
resolver: zodResolver(schema$4)
|
|
10575
|
-
});
|
|
10576
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
10577
|
-
const { handleSuccess } = useRouteModal();
|
|
10578
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
10579
|
-
await mutateAsync(
|
|
10580
|
-
{ email: data.email },
|
|
10581
|
-
{
|
|
10582
|
-
onSuccess: () => {
|
|
10583
|
-
handleSuccess();
|
|
10584
|
-
},
|
|
10585
|
-
onError: (error) => {
|
|
10586
|
-
toast.error(error.message);
|
|
10587
|
-
}
|
|
10588
|
-
}
|
|
10589
|
-
);
|
|
10590
|
-
});
|
|
10591
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
10592
|
-
KeyboundForm,
|
|
10593
|
-
{
|
|
10594
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
10595
|
-
onSubmit,
|
|
10596
|
-
children: [
|
|
10597
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
10598
|
-
Form$2.Field,
|
|
10599
|
-
{
|
|
10600
|
-
control: form.control,
|
|
10601
|
-
name: "email",
|
|
10602
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10603
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
10604
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10605
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10606
|
-
] })
|
|
10607
|
-
}
|
|
10608
|
-
) }),
|
|
10609
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
10610
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
10611
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
10612
|
-
] }) })
|
|
10613
|
-
]
|
|
10614
|
-
}
|
|
10615
|
-
) });
|
|
10616
|
-
};
|
|
10617
|
-
const schema$4 = objectType({
|
|
10618
|
-
email: stringType().email()
|
|
10619
|
-
});
|
|
10620
|
-
const BillingAddress = () => {
|
|
10621
|
-
const { id } = useParams();
|
|
10622
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
10623
|
-
fields: "+billing_address"
|
|
10624
|
-
});
|
|
10625
|
-
if (isError) {
|
|
10626
|
-
throw error;
|
|
10627
|
-
}
|
|
10628
|
-
const isReady = !isPending && !!order;
|
|
10629
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
10630
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
10631
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Billing Address" }) }),
|
|
10632
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the billing address for the draft order" }) })
|
|
10633
|
-
] }),
|
|
10634
|
-
isReady && /* @__PURE__ */ jsx(BillingAddressForm, { order })
|
|
10635
|
-
] });
|
|
10636
|
-
};
|
|
10637
|
-
const BillingAddressForm = ({ order }) => {
|
|
10638
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
10639
|
-
const form = useForm({
|
|
10640
|
-
defaultValues: {
|
|
10641
|
-
first_name: ((_a = order.billing_address) == null ? void 0 : _a.first_name) ?? "",
|
|
10642
|
-
last_name: ((_b = order.billing_address) == null ? void 0 : _b.last_name) ?? "",
|
|
10643
|
-
company: ((_c = order.billing_address) == null ? void 0 : _c.company) ?? "",
|
|
10644
|
-
address_1: ((_d = order.billing_address) == null ? void 0 : _d.address_1) ?? "",
|
|
10645
|
-
address_2: ((_e = order.billing_address) == null ? void 0 : _e.address_2) ?? "",
|
|
10646
|
-
city: ((_f = order.billing_address) == null ? void 0 : _f.city) ?? "",
|
|
10647
|
-
province: ((_g = order.billing_address) == null ? void 0 : _g.province) ?? "",
|
|
10648
|
-
country_code: ((_h = order.billing_address) == null ? void 0 : _h.country_code) ?? "",
|
|
10649
|
-
postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
10650
|
-
phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
|
|
10651
|
-
},
|
|
10652
|
-
resolver: zodResolver(schema$3)
|
|
10653
|
-
});
|
|
10654
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
10655
|
-
const { handleSuccess } = useRouteModal();
|
|
10656
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
10657
|
-
await mutateAsync(
|
|
10658
|
-
{ billing_address: data },
|
|
10659
|
-
{
|
|
10660
|
-
onSuccess: () => {
|
|
10661
|
-
handleSuccess();
|
|
10662
|
-
},
|
|
10663
|
-
onError: (error) => {
|
|
10664
|
-
toast.error(error.message);
|
|
10665
|
-
}
|
|
10666
|
-
}
|
|
10667
|
-
);
|
|
10668
|
-
});
|
|
10669
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
10670
|
-
KeyboundForm,
|
|
10671
|
-
{
|
|
10672
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
10673
|
-
onSubmit,
|
|
10674
|
-
children: [
|
|
10675
|
-
/* @__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: [
|
|
10676
|
-
/* @__PURE__ */ jsx(
|
|
10677
|
-
Form$2.Field,
|
|
10678
|
-
{
|
|
10679
|
-
control: form.control,
|
|
10680
|
-
name: "country_code",
|
|
10681
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10682
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
10683
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
10684
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10685
|
-
] })
|
|
10686
|
-
}
|
|
10687
|
-
),
|
|
10688
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
10689
|
-
/* @__PURE__ */ jsx(
|
|
10690
|
-
Form$2.Field,
|
|
10691
|
-
{
|
|
10692
|
-
control: form.control,
|
|
10693
|
-
name: "first_name",
|
|
10694
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10695
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
10696
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10697
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10698
|
-
] })
|
|
10699
|
-
}
|
|
10700
|
-
),
|
|
10701
|
-
/* @__PURE__ */ jsx(
|
|
10702
|
-
Form$2.Field,
|
|
10703
|
-
{
|
|
10704
|
-
control: form.control,
|
|
10705
|
-
name: "last_name",
|
|
10706
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10707
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
10708
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10709
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10710
|
-
] })
|
|
10711
|
-
}
|
|
10712
|
-
)
|
|
10713
|
-
] }),
|
|
10714
|
-
/* @__PURE__ */ jsx(
|
|
10715
|
-
Form$2.Field,
|
|
10716
|
-
{
|
|
10717
|
-
control: form.control,
|
|
10718
|
-
name: "company",
|
|
10719
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10720
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
10721
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10722
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10723
|
-
] })
|
|
10724
|
-
}
|
|
10725
|
-
),
|
|
10726
|
-
/* @__PURE__ */ jsx(
|
|
10727
|
-
Form$2.Field,
|
|
10728
|
-
{
|
|
10729
|
-
control: form.control,
|
|
10730
|
-
name: "address_1",
|
|
10731
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10732
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
10733
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10734
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10735
|
-
] })
|
|
10736
|
-
}
|
|
10737
|
-
),
|
|
10738
|
-
/* @__PURE__ */ jsx(
|
|
10739
|
-
Form$2.Field,
|
|
10740
|
-
{
|
|
10741
|
-
control: form.control,
|
|
10742
|
-
name: "address_2",
|
|
10743
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10744
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
10745
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10746
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10747
|
-
] })
|
|
10748
|
-
}
|
|
10749
|
-
),
|
|
10750
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
10751
|
-
/* @__PURE__ */ jsx(
|
|
10752
|
-
Form$2.Field,
|
|
10753
|
-
{
|
|
10754
|
-
control: form.control,
|
|
10755
|
-
name: "postal_code",
|
|
10756
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10757
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
10758
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10759
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10760
|
-
] })
|
|
10761
|
-
}
|
|
10762
|
-
),
|
|
10763
|
-
/* @__PURE__ */ jsx(
|
|
10764
|
-
Form$2.Field,
|
|
10765
|
-
{
|
|
10766
|
-
control: form.control,
|
|
10767
|
-
name: "city",
|
|
10768
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10769
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
10770
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10771
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10772
|
-
] })
|
|
10773
|
-
}
|
|
10774
|
-
)
|
|
10775
|
-
] }),
|
|
10776
|
-
/* @__PURE__ */ jsx(
|
|
10777
|
-
Form$2.Field,
|
|
10778
|
-
{
|
|
10779
|
-
control: form.control,
|
|
10780
|
-
name: "province",
|
|
10781
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10782
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
10783
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10784
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10785
|
-
] })
|
|
10786
|
-
}
|
|
10787
|
-
),
|
|
10788
|
-
/* @__PURE__ */ jsx(
|
|
10789
|
-
Form$2.Field,
|
|
10790
|
-
{
|
|
10791
|
-
control: form.control,
|
|
10792
|
-
name: "phone",
|
|
10793
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10794
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
10795
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10796
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10797
|
-
] })
|
|
10798
|
-
}
|
|
10799
|
-
)
|
|
10800
|
-
] }) }),
|
|
10801
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
10802
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
10803
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
10804
|
-
] }) })
|
|
10805
|
-
]
|
|
10806
|
-
}
|
|
10807
|
-
) });
|
|
10739
|
+
{
|
|
10740
|
+
control: form.control,
|
|
10741
|
+
name: "title",
|
|
10742
|
+
render: ({ field }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10743
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
10744
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Title" }),
|
|
10745
|
+
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the title of the item" })
|
|
10746
|
+
] }),
|
|
10747
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
10748
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10749
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10750
|
+
] })
|
|
10751
|
+
] }) })
|
|
10752
|
+
}
|
|
10753
|
+
),
|
|
10754
|
+
/* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
|
|
10755
|
+
/* @__PURE__ */ jsx(
|
|
10756
|
+
Form$2.Field,
|
|
10757
|
+
{
|
|
10758
|
+
control: form.control,
|
|
10759
|
+
name: "unit_price",
|
|
10760
|
+
render: ({ field: { onChange, ...field } }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10761
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
10762
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Unit price" }),
|
|
10763
|
+
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the unit price of the item" })
|
|
10764
|
+
] }),
|
|
10765
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
10766
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
10767
|
+
CurrencyInput,
|
|
10768
|
+
{
|
|
10769
|
+
symbol: getNativeSymbol(currencyCode),
|
|
10770
|
+
code: currencyCode,
|
|
10771
|
+
onValueChange: (_value, _name, values) => onChange(values == null ? void 0 : values.value),
|
|
10772
|
+
...field
|
|
10773
|
+
}
|
|
10774
|
+
) }),
|
|
10775
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10776
|
+
] })
|
|
10777
|
+
] }) })
|
|
10778
|
+
}
|
|
10779
|
+
),
|
|
10780
|
+
/* @__PURE__ */ jsx(Divider, { variant: "dashed" }),
|
|
10781
|
+
/* @__PURE__ */ jsx(
|
|
10782
|
+
Form$2.Field,
|
|
10783
|
+
{
|
|
10784
|
+
control: form.control,
|
|
10785
|
+
name: "quantity",
|
|
10786
|
+
render: ({ field }) => /* @__PURE__ */ jsx(Form$2.Item, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-x-3", children: [
|
|
10787
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
10788
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Quantity" }),
|
|
10789
|
+
/* @__PURE__ */ jsx(Form$2.Hint, { children: "Enter the quantity of the item" })
|
|
10790
|
+
] }),
|
|
10791
|
+
/* @__PURE__ */ jsxs("div", { className: "flex-1 w-full", children: [
|
|
10792
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx("div", { className: "flex-1 w-full", children: /* @__PURE__ */ jsx(NumberInput, { ...field, className: "w-full" }) }) }),
|
|
10793
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10794
|
+
] })
|
|
10795
|
+
] }) })
|
|
10796
|
+
}
|
|
10797
|
+
)
|
|
10798
|
+
] }) }) }),
|
|
10799
|
+
/* @__PURE__ */ jsx(StackedFocusModal.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-x-2 justify-end", children: [
|
|
10800
|
+
/* @__PURE__ */ jsx(StackedFocusModal.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", type: "button", children: "Cancel" }) }),
|
|
10801
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "button", onClick: onSubmit, children: "Add item" })
|
|
10802
|
+
] }) })
|
|
10803
|
+
] }) }) });
|
|
10808
10804
|
};
|
|
10809
|
-
const
|
|
10805
|
+
const customItemSchema = objectType({
|
|
10806
|
+
title: stringType().min(1),
|
|
10807
|
+
quantity: numberType(),
|
|
10808
|
+
unit_price: unionType([numberType(), stringType()])
|
|
10809
|
+
});
|
|
10810
10810
|
const InlineTip = forwardRef(
|
|
10811
10811
|
({ variant = "tip", label, className, children, ...props }, ref) => {
|
|
10812
10812
|
const labelValue = label || (variant === "warning" ? "Warning" : "Tip");
|
|
@@ -12336,17 +12336,220 @@ const CustomAmountField = ({
|
|
|
12336
12336
|
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(
|
|
12337
12337
|
CurrencyInput,
|
|
12338
12338
|
{
|
|
12339
|
-
...field,
|
|
12340
|
-
onValueChange: (value) => onChange(value),
|
|
12341
|
-
symbol: getNativeSymbol(currencyCode),
|
|
12342
|
-
code: currencyCode
|
|
12339
|
+
...field,
|
|
12340
|
+
onValueChange: (value) => onChange(value),
|
|
12341
|
+
symbol: getNativeSymbol(currencyCode),
|
|
12342
|
+
code: currencyCode
|
|
12343
|
+
}
|
|
12344
|
+
) })
|
|
12345
|
+
] });
|
|
12346
|
+
}
|
|
12347
|
+
}
|
|
12348
|
+
);
|
|
12349
|
+
};
|
|
12350
|
+
const ShippingAddress = () => {
|
|
12351
|
+
const { id } = useParams();
|
|
12352
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12353
|
+
fields: "+shipping_address"
|
|
12354
|
+
});
|
|
12355
|
+
if (isError) {
|
|
12356
|
+
throw error;
|
|
12357
|
+
}
|
|
12358
|
+
const isReady = !isPending && !!order;
|
|
12359
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12360
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12361
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Shipping Address" }) }),
|
|
12362
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12363
|
+
] }),
|
|
12364
|
+
isReady && /* @__PURE__ */ jsx(ShippingAddressForm, { order })
|
|
12365
|
+
] });
|
|
12366
|
+
};
|
|
12367
|
+
const ShippingAddressForm = ({ order }) => {
|
|
12368
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12369
|
+
const form = useForm({
|
|
12370
|
+
defaultValues: {
|
|
12371
|
+
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12372
|
+
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12373
|
+
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12374
|
+
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12375
|
+
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12376
|
+
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12377
|
+
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12378
|
+
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12379
|
+
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12380
|
+
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12381
|
+
},
|
|
12382
|
+
resolver: zodResolver(schema$1)
|
|
12383
|
+
});
|
|
12384
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12385
|
+
const { handleSuccess } = useRouteModal();
|
|
12386
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
12387
|
+
await mutateAsync(
|
|
12388
|
+
{
|
|
12389
|
+
shipping_address: {
|
|
12390
|
+
first_name: data.first_name,
|
|
12391
|
+
last_name: data.last_name,
|
|
12392
|
+
company: data.company,
|
|
12393
|
+
address_1: data.address_1,
|
|
12394
|
+
address_2: data.address_2,
|
|
12395
|
+
city: data.city,
|
|
12396
|
+
province: data.province,
|
|
12397
|
+
country_code: data.country_code,
|
|
12398
|
+
postal_code: data.postal_code,
|
|
12399
|
+
phone: data.phone
|
|
12400
|
+
}
|
|
12401
|
+
},
|
|
12402
|
+
{
|
|
12403
|
+
onSuccess: () => {
|
|
12404
|
+
handleSuccess();
|
|
12405
|
+
},
|
|
12406
|
+
onError: (error) => {
|
|
12407
|
+
toast.error(error.message);
|
|
12408
|
+
}
|
|
12409
|
+
}
|
|
12410
|
+
);
|
|
12411
|
+
});
|
|
12412
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12413
|
+
KeyboundForm,
|
|
12414
|
+
{
|
|
12415
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
12416
|
+
onSubmit,
|
|
12417
|
+
children: [
|
|
12418
|
+
/* @__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: [
|
|
12419
|
+
/* @__PURE__ */ jsx(
|
|
12420
|
+
Form$2.Field,
|
|
12421
|
+
{
|
|
12422
|
+
control: form.control,
|
|
12423
|
+
name: "country_code",
|
|
12424
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12425
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
12426
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
12427
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12428
|
+
] })
|
|
12429
|
+
}
|
|
12430
|
+
),
|
|
12431
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12432
|
+
/* @__PURE__ */ jsx(
|
|
12433
|
+
Form$2.Field,
|
|
12434
|
+
{
|
|
12435
|
+
control: form.control,
|
|
12436
|
+
name: "first_name",
|
|
12437
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12438
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12439
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12440
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12441
|
+
] })
|
|
12442
|
+
}
|
|
12443
|
+
),
|
|
12444
|
+
/* @__PURE__ */ jsx(
|
|
12445
|
+
Form$2.Field,
|
|
12446
|
+
{
|
|
12447
|
+
control: form.control,
|
|
12448
|
+
name: "last_name",
|
|
12449
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12450
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12451
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12452
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12453
|
+
] })
|
|
12454
|
+
}
|
|
12455
|
+
)
|
|
12456
|
+
] }),
|
|
12457
|
+
/* @__PURE__ */ jsx(
|
|
12458
|
+
Form$2.Field,
|
|
12459
|
+
{
|
|
12460
|
+
control: form.control,
|
|
12461
|
+
name: "company",
|
|
12462
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12463
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12464
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12465
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12466
|
+
] })
|
|
12467
|
+
}
|
|
12468
|
+
),
|
|
12469
|
+
/* @__PURE__ */ jsx(
|
|
12470
|
+
Form$2.Field,
|
|
12471
|
+
{
|
|
12472
|
+
control: form.control,
|
|
12473
|
+
name: "address_1",
|
|
12474
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12475
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12476
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12477
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12478
|
+
] })
|
|
12479
|
+
}
|
|
12480
|
+
),
|
|
12481
|
+
/* @__PURE__ */ jsx(
|
|
12482
|
+
Form$2.Field,
|
|
12483
|
+
{
|
|
12484
|
+
control: form.control,
|
|
12485
|
+
name: "address_2",
|
|
12486
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12487
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12488
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12489
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12490
|
+
] })
|
|
12491
|
+
}
|
|
12492
|
+
),
|
|
12493
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12494
|
+
/* @__PURE__ */ jsx(
|
|
12495
|
+
Form$2.Field,
|
|
12496
|
+
{
|
|
12497
|
+
control: form.control,
|
|
12498
|
+
name: "postal_code",
|
|
12499
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12500
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12501
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12502
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12503
|
+
] })
|
|
12504
|
+
}
|
|
12505
|
+
),
|
|
12506
|
+
/* @__PURE__ */ jsx(
|
|
12507
|
+
Form$2.Field,
|
|
12508
|
+
{
|
|
12509
|
+
control: form.control,
|
|
12510
|
+
name: "city",
|
|
12511
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12512
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
12513
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12514
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12515
|
+
] })
|
|
12516
|
+
}
|
|
12517
|
+
)
|
|
12518
|
+
] }),
|
|
12519
|
+
/* @__PURE__ */ jsx(
|
|
12520
|
+
Form$2.Field,
|
|
12521
|
+
{
|
|
12522
|
+
control: form.control,
|
|
12523
|
+
name: "province",
|
|
12524
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12525
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
12526
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12527
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12528
|
+
] })
|
|
12529
|
+
}
|
|
12530
|
+
),
|
|
12531
|
+
/* @__PURE__ */ jsx(
|
|
12532
|
+
Form$2.Field,
|
|
12533
|
+
{
|
|
12534
|
+
control: form.control,
|
|
12535
|
+
name: "phone",
|
|
12536
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12537
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
12538
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12539
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12540
|
+
] })
|
|
12343
12541
|
}
|
|
12344
|
-
)
|
|
12345
|
-
] })
|
|
12346
|
-
|
|
12542
|
+
)
|
|
12543
|
+
] }) }),
|
|
12544
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12545
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12546
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12547
|
+
] }) })
|
|
12548
|
+
]
|
|
12347
12549
|
}
|
|
12348
|
-
);
|
|
12550
|
+
) });
|
|
12349
12551
|
};
|
|
12552
|
+
const schema$1 = addressSchema;
|
|
12350
12553
|
const TransferOwnership = () => {
|
|
12351
12554
|
const { id } = useParams();
|
|
12352
12555
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12370,7 +12573,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12370
12573
|
defaultValues: {
|
|
12371
12574
|
customer_id: order.customer_id || ""
|
|
12372
12575
|
},
|
|
12373
|
-
resolver: zodResolver(schema
|
|
12576
|
+
resolver: zodResolver(schema)
|
|
12374
12577
|
});
|
|
12375
12578
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12376
12579
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12820,212 +13023,9 @@ const Illustration = () => {
|
|
|
12820
13023
|
}
|
|
12821
13024
|
);
|
|
12822
13025
|
};
|
|
12823
|
-
const schema
|
|
13026
|
+
const schema = objectType({
|
|
12824
13027
|
customer_id: stringType().min(1)
|
|
12825
13028
|
});
|
|
12826
|
-
const ShippingAddress = () => {
|
|
12827
|
-
const { id } = useParams();
|
|
12828
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
12829
|
-
fields: "+shipping_address"
|
|
12830
|
-
});
|
|
12831
|
-
if (isError) {
|
|
12832
|
-
throw error;
|
|
12833
|
-
}
|
|
12834
|
-
const isReady = !isPending && !!order;
|
|
12835
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12836
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12837
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Shipping Address" }) }),
|
|
12838
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12839
|
-
] }),
|
|
12840
|
-
isReady && /* @__PURE__ */ jsx(ShippingAddressForm, { order })
|
|
12841
|
-
] });
|
|
12842
|
-
};
|
|
12843
|
-
const ShippingAddressForm = ({ order }) => {
|
|
12844
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12845
|
-
const form = useForm({
|
|
12846
|
-
defaultValues: {
|
|
12847
|
-
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12848
|
-
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12849
|
-
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12850
|
-
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12851
|
-
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12852
|
-
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12853
|
-
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12854
|
-
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12855
|
-
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12856
|
-
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12857
|
-
},
|
|
12858
|
-
resolver: zodResolver(schema)
|
|
12859
|
-
});
|
|
12860
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12861
|
-
const { handleSuccess } = useRouteModal();
|
|
12862
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12863
|
-
await mutateAsync(
|
|
12864
|
-
{
|
|
12865
|
-
shipping_address: {
|
|
12866
|
-
first_name: data.first_name,
|
|
12867
|
-
last_name: data.last_name,
|
|
12868
|
-
company: data.company,
|
|
12869
|
-
address_1: data.address_1,
|
|
12870
|
-
address_2: data.address_2,
|
|
12871
|
-
city: data.city,
|
|
12872
|
-
province: data.province,
|
|
12873
|
-
country_code: data.country_code,
|
|
12874
|
-
postal_code: data.postal_code,
|
|
12875
|
-
phone: data.phone
|
|
12876
|
-
}
|
|
12877
|
-
},
|
|
12878
|
-
{
|
|
12879
|
-
onSuccess: () => {
|
|
12880
|
-
handleSuccess();
|
|
12881
|
-
},
|
|
12882
|
-
onError: (error) => {
|
|
12883
|
-
toast.error(error.message);
|
|
12884
|
-
}
|
|
12885
|
-
}
|
|
12886
|
-
);
|
|
12887
|
-
});
|
|
12888
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12889
|
-
KeyboundForm,
|
|
12890
|
-
{
|
|
12891
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12892
|
-
onSubmit,
|
|
12893
|
-
children: [
|
|
12894
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
12895
|
-
/* @__PURE__ */ jsx(
|
|
12896
|
-
Form$2.Field,
|
|
12897
|
-
{
|
|
12898
|
-
control: form.control,
|
|
12899
|
-
name: "country_code",
|
|
12900
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12901
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
12902
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
12903
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12904
|
-
] })
|
|
12905
|
-
}
|
|
12906
|
-
),
|
|
12907
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12908
|
-
/* @__PURE__ */ jsx(
|
|
12909
|
-
Form$2.Field,
|
|
12910
|
-
{
|
|
12911
|
-
control: form.control,
|
|
12912
|
-
name: "first_name",
|
|
12913
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12914
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12915
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12916
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12917
|
-
] })
|
|
12918
|
-
}
|
|
12919
|
-
),
|
|
12920
|
-
/* @__PURE__ */ jsx(
|
|
12921
|
-
Form$2.Field,
|
|
12922
|
-
{
|
|
12923
|
-
control: form.control,
|
|
12924
|
-
name: "last_name",
|
|
12925
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12926
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12927
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12928
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12929
|
-
] })
|
|
12930
|
-
}
|
|
12931
|
-
)
|
|
12932
|
-
] }),
|
|
12933
|
-
/* @__PURE__ */ jsx(
|
|
12934
|
-
Form$2.Field,
|
|
12935
|
-
{
|
|
12936
|
-
control: form.control,
|
|
12937
|
-
name: "company",
|
|
12938
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12939
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12940
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12941
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12942
|
-
] })
|
|
12943
|
-
}
|
|
12944
|
-
),
|
|
12945
|
-
/* @__PURE__ */ jsx(
|
|
12946
|
-
Form$2.Field,
|
|
12947
|
-
{
|
|
12948
|
-
control: form.control,
|
|
12949
|
-
name: "address_1",
|
|
12950
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12951
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12952
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12953
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12954
|
-
] })
|
|
12955
|
-
}
|
|
12956
|
-
),
|
|
12957
|
-
/* @__PURE__ */ jsx(
|
|
12958
|
-
Form$2.Field,
|
|
12959
|
-
{
|
|
12960
|
-
control: form.control,
|
|
12961
|
-
name: "address_2",
|
|
12962
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12963
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12964
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12965
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12966
|
-
] })
|
|
12967
|
-
}
|
|
12968
|
-
),
|
|
12969
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12970
|
-
/* @__PURE__ */ jsx(
|
|
12971
|
-
Form$2.Field,
|
|
12972
|
-
{
|
|
12973
|
-
control: form.control,
|
|
12974
|
-
name: "postal_code",
|
|
12975
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12976
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12977
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12978
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12979
|
-
] })
|
|
12980
|
-
}
|
|
12981
|
-
),
|
|
12982
|
-
/* @__PURE__ */ jsx(
|
|
12983
|
-
Form$2.Field,
|
|
12984
|
-
{
|
|
12985
|
-
control: form.control,
|
|
12986
|
-
name: "city",
|
|
12987
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12988
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
12989
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12990
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12991
|
-
] })
|
|
12992
|
-
}
|
|
12993
|
-
)
|
|
12994
|
-
] }),
|
|
12995
|
-
/* @__PURE__ */ jsx(
|
|
12996
|
-
Form$2.Field,
|
|
12997
|
-
{
|
|
12998
|
-
control: form.control,
|
|
12999
|
-
name: "province",
|
|
13000
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13001
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
13002
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13003
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13004
|
-
] })
|
|
13005
|
-
}
|
|
13006
|
-
),
|
|
13007
|
-
/* @__PURE__ */ jsx(
|
|
13008
|
-
Form$2.Field,
|
|
13009
|
-
{
|
|
13010
|
-
control: form.control,
|
|
13011
|
-
name: "phone",
|
|
13012
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13013
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
13014
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13015
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13016
|
-
] })
|
|
13017
|
-
}
|
|
13018
|
-
)
|
|
13019
|
-
] }) }),
|
|
13020
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13021
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13022
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
13023
|
-
] }) })
|
|
13024
|
-
]
|
|
13025
|
-
}
|
|
13026
|
-
) });
|
|
13027
|
-
};
|
|
13028
|
-
const schema = addressSchema;
|
|
13029
13029
|
const widgetModule = { widgets: [] };
|
|
13030
13030
|
const routeModule = {
|
|
13031
13031
|
routes: [
|
|
@@ -13047,20 +13047,20 @@ const routeModule = {
|
|
|
13047
13047
|
loader,
|
|
13048
13048
|
children: [
|
|
13049
13049
|
{
|
|
13050
|
-
Component:
|
|
13051
|
-
path: "/draft-orders/:id/
|
|
13050
|
+
Component: BillingAddress,
|
|
13051
|
+
path: "/draft-orders/:id/billing-address"
|
|
13052
13052
|
},
|
|
13053
13053
|
{
|
|
13054
|
-
Component:
|
|
13055
|
-
path: "/draft-orders/:id/items"
|
|
13054
|
+
Component: CustomItems,
|
|
13055
|
+
path: "/draft-orders/:id/custom-items"
|
|
13056
13056
|
},
|
|
13057
13057
|
{
|
|
13058
13058
|
Component: Email,
|
|
13059
13059
|
path: "/draft-orders/:id/email"
|
|
13060
13060
|
},
|
|
13061
13061
|
{
|
|
13062
|
-
Component:
|
|
13063
|
-
path: "/draft-orders/:id/
|
|
13062
|
+
Component: Items,
|
|
13063
|
+
path: "/draft-orders/:id/items"
|
|
13064
13064
|
},
|
|
13065
13065
|
{
|
|
13066
13066
|
Component: Metadata,
|
|
@@ -13078,13 +13078,13 @@ const routeModule = {
|
|
|
13078
13078
|
Component: Shipping,
|
|
13079
13079
|
path: "/draft-orders/:id/shipping"
|
|
13080
13080
|
},
|
|
13081
|
-
{
|
|
13082
|
-
Component: TransferOwnership,
|
|
13083
|
-
path: "/draft-orders/:id/transfer-ownership"
|
|
13084
|
-
},
|
|
13085
13081
|
{
|
|
13086
13082
|
Component: ShippingAddress,
|
|
13087
13083
|
path: "/draft-orders/:id/shipping-address"
|
|
13084
|
+
},
|
|
13085
|
+
{
|
|
13086
|
+
Component: TransferOwnership,
|
|
13087
|
+
path: "/draft-orders/:id/transfer-ownership"
|
|
13088
13088
|
}
|
|
13089
13089
|
]
|
|
13090
13090
|
}
|