@medusajs/draft-order 2.10.2-preview-20250909090202 → 2.10.2-preview-20250909120201

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.
@@ -9763,27 +9763,6 @@ const BillingAddressForm = ({ order }) => {
9763
9763
  ) });
9764
9764
  };
9765
9765
  const schema$5 = addressSchema;
9766
- const CustomItems = () => {
9767
- return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
9768
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
9769
- /* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
9770
- ] });
9771
- };
9772
- const CustomItemsForm = () => {
9773
- const form = reactHookForm.useForm({
9774
- resolver: zod.zodResolver(schema$4)
9775
- });
9776
- return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9777
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
9778
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
9779
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9780
- /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
9781
- ] }) })
9782
- ] }) });
9783
- };
9784
- const schema$4 = objectType({
9785
- email: stringType().email()
9786
- });
9787
9766
  const Email = () => {
9788
9767
  const { id } = reactRouterDom.useParams();
9789
9768
  const { order, isPending, isError, error } = useOrder(id, {
@@ -9806,7 +9785,7 @@ const EmailForm = ({ order }) => {
9806
9785
  defaultValues: {
9807
9786
  email: order.email ?? ""
9808
9787
  },
9809
- resolver: zod.zodResolver(schema$3)
9788
+ resolver: zod.zodResolver(schema$4)
9810
9789
  });
9811
9790
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9812
9791
  const { handleSuccess } = useRouteModal();
@@ -9849,7 +9828,7 @@ const EmailForm = ({ order }) => {
9849
9828
  }
9850
9829
  ) });
9851
9830
  };
9852
- const schema$3 = objectType({
9831
+ const schema$4 = objectType({
9853
9832
  email: stringType().email()
9854
9833
  });
9855
9834
  const NumberInput = React.forwardRef(
@@ -10826,283 +10805,6 @@ const customItemSchema = objectType({
10826
10805
  quantity: numberType(),
10827
10806
  unit_price: unionType([numberType(), stringType()])
10828
10807
  });
10829
- const PROMOTION_QUERY_KEY = "promotions";
10830
- const promotionsQueryKeys = {
10831
- list: (query2) => [
10832
- PROMOTION_QUERY_KEY,
10833
- query2 ? query2 : void 0
10834
- ],
10835
- detail: (id, query2) => [
10836
- PROMOTION_QUERY_KEY,
10837
- id,
10838
- query2 ? query2 : void 0
10839
- ]
10840
- };
10841
- const usePromotions = (query2, options) => {
10842
- const { data, ...rest } = reactQuery.useQuery({
10843
- queryKey: promotionsQueryKeys.list(query2),
10844
- queryFn: async () => sdk.admin.promotion.list(query2),
10845
- ...options
10846
- });
10847
- return { ...data, ...rest };
10848
- };
10849
- const Promotions = () => {
10850
- const { id } = reactRouterDom.useParams();
10851
- const {
10852
- order: preview,
10853
- isError: isPreviewError,
10854
- error: previewError
10855
- } = useOrderPreview(id, void 0);
10856
- useInitiateOrderEdit({ preview });
10857
- const { onCancel } = useCancelOrderEdit({ preview });
10858
- if (isPreviewError) {
10859
- throw previewError;
10860
- }
10861
- const isReady = !!preview;
10862
- return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { onClose: onCancel, children: [
10863
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Promotions" }) }) }),
10864
- isReady && /* @__PURE__ */ jsxRuntime.jsx(PromotionForm, { preview })
10865
- ] });
10866
- };
10867
- const PromotionForm = ({ preview }) => {
10868
- const { items, shipping_methods } = preview;
10869
- const [isSubmitting, setIsSubmitting] = React.useState(false);
10870
- const [comboboxValue, setComboboxValue] = React.useState("");
10871
- const { handleSuccess } = useRouteModal();
10872
- const { mutateAsync: addPromotions, isPending: isAddingPromotions } = useDraftOrderAddPromotions(preview.id);
10873
- const promoIds = getPromotionIds(items, shipping_methods);
10874
- const { promotions, isPending, isError, error } = usePromotions(
10875
- {
10876
- id: promoIds
10877
- },
10878
- {
10879
- enabled: !!promoIds.length
10880
- }
10881
- );
10882
- const comboboxData = useComboboxData({
10883
- queryKey: ["promotions", "combobox", promoIds],
10884
- queryFn: async (params) => {
10885
- return await sdk.admin.promotion.list({
10886
- ...params,
10887
- id: {
10888
- $nin: promoIds
10889
- }
10890
- });
10891
- },
10892
- getOptions: (data) => {
10893
- return data.promotions.map((promotion) => ({
10894
- label: promotion.code,
10895
- value: promotion.code
10896
- }));
10897
- }
10898
- });
10899
- const add = async (value) => {
10900
- if (!value) {
10901
- return;
10902
- }
10903
- addPromotions(
10904
- {
10905
- promo_codes: [value]
10906
- },
10907
- {
10908
- onError: (e) => {
10909
- ui.toast.error(e.message);
10910
- comboboxData.onSearchValueChange("");
10911
- setComboboxValue("");
10912
- },
10913
- onSuccess: () => {
10914
- comboboxData.onSearchValueChange("");
10915
- setComboboxValue("");
10916
- }
10917
- }
10918
- );
10919
- };
10920
- const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
10921
- const { mutateAsync: requestOrderEdit } = useOrderEditRequest(preview.id);
10922
- const onSubmit = async () => {
10923
- setIsSubmitting(true);
10924
- let requestSucceeded = false;
10925
- await requestOrderEdit(void 0, {
10926
- onError: (e) => {
10927
- ui.toast.error(e.message);
10928
- },
10929
- onSuccess: () => {
10930
- requestSucceeded = true;
10931
- }
10932
- });
10933
- if (!requestSucceeded) {
10934
- setIsSubmitting(false);
10935
- return;
10936
- }
10937
- await confirmOrderEdit(void 0, {
10938
- onError: (e) => {
10939
- ui.toast.error(e.message);
10940
- },
10941
- onSuccess: () => {
10942
- handleSuccess();
10943
- },
10944
- onSettled: () => {
10945
- setIsSubmitting(false);
10946
- }
10947
- });
10948
- };
10949
- if (isError) {
10950
- throw error;
10951
- }
10952
- return /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", onSubmit, children: [
10953
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
10954
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-3", children: [
10955
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
10956
- /* @__PURE__ */ jsxRuntime.jsx(ui.Label, { size: "small", weight: "plus", htmlFor: "promotion-combobox", children: "Apply promotions" }),
10957
- /* @__PURE__ */ jsxRuntime.jsx(ui.Hint, { id: "promotion-combobox-hint", children: "Manage promotions that should be applied to the order." })
10958
- ] }),
10959
- /* @__PURE__ */ jsxRuntime.jsx(
10960
- Combobox,
10961
- {
10962
- id: "promotion-combobox",
10963
- "aria-describedby": "promotion-combobox-hint",
10964
- isFetchingNextPage: comboboxData.isFetchingNextPage,
10965
- fetchNextPage: comboboxData.fetchNextPage,
10966
- options: comboboxData.options,
10967
- onSearchValueChange: comboboxData.onSearchValueChange,
10968
- searchValue: comboboxData.searchValue,
10969
- disabled: comboboxData.disabled || isAddingPromotions,
10970
- onChange: add,
10971
- value: comboboxValue
10972
- }
10973
- )
10974
- ] }),
10975
- /* @__PURE__ */ jsxRuntime.jsx(ui.Divider, { variant: "dashed" }),
10976
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-2", children: promotions == null ? void 0 : promotions.map((promotion) => /* @__PURE__ */ jsxRuntime.jsx(
10977
- PromotionItem,
10978
- {
10979
- promotion,
10980
- orderId: preview.id,
10981
- isLoading: isPending
10982
- },
10983
- promotion.id
10984
- )) })
10985
- ] }) }),
10986
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
10987
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
10988
- /* @__PURE__ */ jsxRuntime.jsx(
10989
- ui.Button,
10990
- {
10991
- size: "small",
10992
- type: "submit",
10993
- isLoading: isSubmitting || isAddingPromotions,
10994
- children: "Save"
10995
- }
10996
- )
10997
- ] }) })
10998
- ] });
10999
- };
11000
- const PromotionItem = ({
11001
- promotion,
11002
- orderId,
11003
- isLoading
11004
- }) => {
11005
- var _a;
11006
- const { mutateAsync: removePromotions, isPending } = useDraftOrderRemovePromotions(orderId);
11007
- const onRemove = async () => {
11008
- removePromotions(
11009
- {
11010
- promo_codes: [promotion.code]
11011
- },
11012
- {
11013
- onError: (e) => {
11014
- ui.toast.error(e.message);
11015
- }
11016
- }
11017
- );
11018
- };
11019
- const displayValue = getDisplayValue(promotion);
11020
- return /* @__PURE__ */ jsxRuntime.jsxs(
11021
- "div",
11022
- {
11023
- className: ui.clx(
11024
- "bg-ui-bg-component shadow-elevation-card-rest flex items-center justify-between rounded-lg px-3 py-2",
11025
- {
11026
- "animate-pulse": isLoading
11027
- }
11028
- ),
11029
- children: [
11030
- /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
11031
- /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", leading: "compact", children: promotion.code }),
11032
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-ui-fg-subtle flex items-center gap-1.5", children: [
11033
- displayValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1.5", children: [
11034
- /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: displayValue }),
11035
- /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: "·" })
11036
- ] }),
11037
- /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", className: "capitalize", children: (_a = promotion.application_method) == null ? void 0 : _a.allocation })
11038
- ] })
11039
- ] }),
11040
- /* @__PURE__ */ jsxRuntime.jsx(
11041
- ui.IconButton,
11042
- {
11043
- size: "small",
11044
- type: "button",
11045
- variant: "transparent",
11046
- onClick: onRemove,
11047
- isLoading: isPending || isLoading,
11048
- children: /* @__PURE__ */ jsxRuntime.jsx(icons.XMark, {})
11049
- }
11050
- )
11051
- ]
11052
- },
11053
- promotion.id
11054
- );
11055
- };
11056
- function getDisplayValue(promotion) {
11057
- var _a, _b, _c, _d;
11058
- const value = (_a = promotion.application_method) == null ? void 0 : _a.value;
11059
- if (!value) {
11060
- return null;
11061
- }
11062
- if (((_b = promotion.application_method) == null ? void 0 : _b.type) === "fixed") {
11063
- const currency = (_c = promotion.application_method) == null ? void 0 : _c.currency_code;
11064
- if (!currency) {
11065
- return null;
11066
- }
11067
- return getLocaleAmount(value, currency);
11068
- } else if (((_d = promotion.application_method) == null ? void 0 : _d.type) === "percentage") {
11069
- return formatPercentage(value);
11070
- }
11071
- return null;
11072
- }
11073
- const formatter = new Intl.NumberFormat([], {
11074
- style: "percent",
11075
- minimumFractionDigits: 2
11076
- });
11077
- const formatPercentage = (value, isPercentageValue = false) => {
11078
- let val = value || 0;
11079
- if (!isPercentageValue) {
11080
- val = val / 100;
11081
- }
11082
- return formatter.format(val);
11083
- };
11084
- function getPromotionIds(items, shippingMethods) {
11085
- const promotionIds = /* @__PURE__ */ new Set();
11086
- for (const item of items) {
11087
- if (item.adjustments) {
11088
- for (const adjustment of item.adjustments) {
11089
- if (adjustment.promotion_id) {
11090
- promotionIds.add(adjustment.promotion_id);
11091
- }
11092
- }
11093
- }
11094
- }
11095
- for (const shippingMethod of shippingMethods) {
11096
- if (shippingMethod.adjustments) {
11097
- for (const adjustment of shippingMethod.adjustments) {
11098
- if (adjustment.promotion_id) {
11099
- promotionIds.add(adjustment.promotion_id);
11100
- }
11101
- }
11102
- }
11103
- }
11104
- return Array.from(promotionIds);
11105
- }
11106
10808
  const InlineTip = React.forwardRef(
11107
10809
  ({ variant = "tip", label, className, children, ...props }, ref) => {
11108
10810
  const labelValue = label || (variant === "warning" ? "Warning" : "Tip");
@@ -11367,91 +11069,368 @@ const GridInput = React.forwardRef(({ className, ...props }, ref) => {
11367
11069
  "txt-compact-small text-ui-fg-base placeholder:text-ui-fg-muted disabled:text-ui-fg-disabled disabled:bg-ui-bg-base bg-transparent px-2 py-1.5 outline-none",
11368
11070
  className
11369
11071
  )
11370
- }
11371
- );
11372
- });
11373
- GridInput.displayName = "MetadataForm.GridInput";
11374
- const PlaceholderInner = () => {
11375
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col overflow-hidden", children: [
11376
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-[148ox] w-full rounded-lg" }) }),
11377
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
11378
- /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" }),
11379
- /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" })
11072
+ }
11073
+ );
11074
+ });
11075
+ GridInput.displayName = "MetadataForm.GridInput";
11076
+ const PlaceholderInner = () => {
11077
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col overflow-hidden", children: [
11078
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-[148ox] w-full rounded-lg" }) }),
11079
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
11080
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" }),
11081
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" })
11082
+ ] }) })
11083
+ ] });
11084
+ };
11085
+ const EDITABLE_TYPES = ["string", "number", "boolean"];
11086
+ function getDefaultValues(metadata) {
11087
+ if (!metadata || !Object.keys(metadata).length) {
11088
+ return [
11089
+ {
11090
+ key: "",
11091
+ value: "",
11092
+ disabled: false
11093
+ }
11094
+ ];
11095
+ }
11096
+ return Object.entries(metadata).map(([key, value]) => {
11097
+ if (!EDITABLE_TYPES.includes(typeof value)) {
11098
+ return {
11099
+ key,
11100
+ value,
11101
+ disabled: true
11102
+ };
11103
+ }
11104
+ let stringValue = value;
11105
+ if (typeof value !== "string") {
11106
+ stringValue = JSON.stringify(value);
11107
+ }
11108
+ return {
11109
+ key,
11110
+ value: stringValue,
11111
+ original_key: key
11112
+ };
11113
+ });
11114
+ }
11115
+ function parseValues(values) {
11116
+ const metadata = values.metadata;
11117
+ const isEmpty = !metadata.length || metadata.length === 1 && !metadata[0].key && !metadata[0].value;
11118
+ if (isEmpty) {
11119
+ return null;
11120
+ }
11121
+ const update = {};
11122
+ metadata.forEach((field) => {
11123
+ let key = field.key;
11124
+ let value = field.value;
11125
+ const disabled = field.disabled;
11126
+ if (!key || !value) {
11127
+ return;
11128
+ }
11129
+ if (disabled) {
11130
+ update[key] = value;
11131
+ return;
11132
+ }
11133
+ key = key.trim();
11134
+ value = value.trim();
11135
+ if (value === "true") {
11136
+ update[key] = true;
11137
+ } else if (value === "false") {
11138
+ update[key] = false;
11139
+ } else {
11140
+ const parsedNumber = parseFloat(value);
11141
+ if (!isNaN(parsedNumber)) {
11142
+ update[key] = parsedNumber;
11143
+ } else {
11144
+ update[key] = value;
11145
+ }
11146
+ }
11147
+ });
11148
+ return update;
11149
+ }
11150
+ function getHasUneditableRows(metadata) {
11151
+ if (!metadata) {
11152
+ return false;
11153
+ }
11154
+ return Object.values(metadata).some(
11155
+ (value) => !EDITABLE_TYPES.includes(typeof value)
11156
+ );
11157
+ }
11158
+ const PROMOTION_QUERY_KEY = "promotions";
11159
+ const promotionsQueryKeys = {
11160
+ list: (query2) => [
11161
+ PROMOTION_QUERY_KEY,
11162
+ query2 ? query2 : void 0
11163
+ ],
11164
+ detail: (id, query2) => [
11165
+ PROMOTION_QUERY_KEY,
11166
+ id,
11167
+ query2 ? query2 : void 0
11168
+ ]
11169
+ };
11170
+ const usePromotions = (query2, options) => {
11171
+ const { data, ...rest } = reactQuery.useQuery({
11172
+ queryKey: promotionsQueryKeys.list(query2),
11173
+ queryFn: async () => sdk.admin.promotion.list(query2),
11174
+ ...options
11175
+ });
11176
+ return { ...data, ...rest };
11177
+ };
11178
+ const Promotions = () => {
11179
+ const { id } = reactRouterDom.useParams();
11180
+ const {
11181
+ order: preview,
11182
+ isError: isPreviewError,
11183
+ error: previewError
11184
+ } = useOrderPreview(id, void 0);
11185
+ useInitiateOrderEdit({ preview });
11186
+ const { onCancel } = useCancelOrderEdit({ preview });
11187
+ if (isPreviewError) {
11188
+ throw previewError;
11189
+ }
11190
+ const isReady = !!preview;
11191
+ return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { onClose: onCancel, children: [
11192
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Promotions" }) }) }),
11193
+ isReady && /* @__PURE__ */ jsxRuntime.jsx(PromotionForm, { preview })
11194
+ ] });
11195
+ };
11196
+ const PromotionForm = ({ preview }) => {
11197
+ const { items, shipping_methods } = preview;
11198
+ const [isSubmitting, setIsSubmitting] = React.useState(false);
11199
+ const [comboboxValue, setComboboxValue] = React.useState("");
11200
+ const { handleSuccess } = useRouteModal();
11201
+ const { mutateAsync: addPromotions, isPending: isAddingPromotions } = useDraftOrderAddPromotions(preview.id);
11202
+ const promoIds = getPromotionIds(items, shipping_methods);
11203
+ const { promotions, isPending, isError, error } = usePromotions(
11204
+ {
11205
+ id: promoIds
11206
+ },
11207
+ {
11208
+ enabled: !!promoIds.length
11209
+ }
11210
+ );
11211
+ const comboboxData = useComboboxData({
11212
+ queryKey: ["promotions", "combobox", promoIds],
11213
+ queryFn: async (params) => {
11214
+ return await sdk.admin.promotion.list({
11215
+ ...params,
11216
+ id: {
11217
+ $nin: promoIds
11218
+ }
11219
+ });
11220
+ },
11221
+ getOptions: (data) => {
11222
+ return data.promotions.map((promotion) => ({
11223
+ label: promotion.code,
11224
+ value: promotion.code
11225
+ }));
11226
+ }
11227
+ });
11228
+ const add = async (value) => {
11229
+ if (!value) {
11230
+ return;
11231
+ }
11232
+ addPromotions(
11233
+ {
11234
+ promo_codes: [value]
11235
+ },
11236
+ {
11237
+ onError: (e) => {
11238
+ ui.toast.error(e.message);
11239
+ comboboxData.onSearchValueChange("");
11240
+ setComboboxValue("");
11241
+ },
11242
+ onSuccess: () => {
11243
+ comboboxData.onSearchValueChange("");
11244
+ setComboboxValue("");
11245
+ }
11246
+ }
11247
+ );
11248
+ };
11249
+ const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
11250
+ const { mutateAsync: requestOrderEdit } = useOrderEditRequest(preview.id);
11251
+ const onSubmit = async () => {
11252
+ setIsSubmitting(true);
11253
+ let requestSucceeded = false;
11254
+ await requestOrderEdit(void 0, {
11255
+ onError: (e) => {
11256
+ ui.toast.error(e.message);
11257
+ },
11258
+ onSuccess: () => {
11259
+ requestSucceeded = true;
11260
+ }
11261
+ });
11262
+ if (!requestSucceeded) {
11263
+ setIsSubmitting(false);
11264
+ return;
11265
+ }
11266
+ await confirmOrderEdit(void 0, {
11267
+ onError: (e) => {
11268
+ ui.toast.error(e.message);
11269
+ },
11270
+ onSuccess: () => {
11271
+ handleSuccess();
11272
+ },
11273
+ onSettled: () => {
11274
+ setIsSubmitting(false);
11275
+ }
11276
+ });
11277
+ };
11278
+ if (isError) {
11279
+ throw error;
11280
+ }
11281
+ return /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", onSubmit, children: [
11282
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
11283
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-3", children: [
11284
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
11285
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Label, { size: "small", weight: "plus", htmlFor: "promotion-combobox", children: "Apply promotions" }),
11286
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Hint, { id: "promotion-combobox-hint", children: "Manage promotions that should be applied to the order." })
11287
+ ] }),
11288
+ /* @__PURE__ */ jsxRuntime.jsx(
11289
+ Combobox,
11290
+ {
11291
+ id: "promotion-combobox",
11292
+ "aria-describedby": "promotion-combobox-hint",
11293
+ isFetchingNextPage: comboboxData.isFetchingNextPage,
11294
+ fetchNextPage: comboboxData.fetchNextPage,
11295
+ options: comboboxData.options,
11296
+ onSearchValueChange: comboboxData.onSearchValueChange,
11297
+ searchValue: comboboxData.searchValue,
11298
+ disabled: comboboxData.disabled || isAddingPromotions,
11299
+ onChange: add,
11300
+ value: comboboxValue
11301
+ }
11302
+ )
11303
+ ] }),
11304
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Divider, { variant: "dashed" }),
11305
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-2", children: promotions == null ? void 0 : promotions.map((promotion) => /* @__PURE__ */ jsxRuntime.jsx(
11306
+ PromotionItem,
11307
+ {
11308
+ promotion,
11309
+ orderId: preview.id,
11310
+ isLoading: isPending
11311
+ },
11312
+ promotion.id
11313
+ )) })
11314
+ ] }) }),
11315
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
11316
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
11317
+ /* @__PURE__ */ jsxRuntime.jsx(
11318
+ ui.Button,
11319
+ {
11320
+ size: "small",
11321
+ type: "submit",
11322
+ isLoading: isSubmitting || isAddingPromotions,
11323
+ children: "Save"
11324
+ }
11325
+ )
11380
11326
  ] }) })
11381
11327
  ] });
11382
11328
  };
11383
- const EDITABLE_TYPES = ["string", "number", "boolean"];
11384
- function getDefaultValues(metadata) {
11385
- if (!metadata || !Object.keys(metadata).length) {
11386
- return [
11329
+ const PromotionItem = ({
11330
+ promotion,
11331
+ orderId,
11332
+ isLoading
11333
+ }) => {
11334
+ var _a;
11335
+ const { mutateAsync: removePromotions, isPending } = useDraftOrderRemovePromotions(orderId);
11336
+ const onRemove = async () => {
11337
+ removePromotions(
11387
11338
  {
11388
- key: "",
11389
- value: "",
11390
- disabled: false
11339
+ promo_codes: [promotion.code]
11340
+ },
11341
+ {
11342
+ onError: (e) => {
11343
+ ui.toast.error(e.message);
11344
+ }
11391
11345
  }
11392
- ];
11346
+ );
11347
+ };
11348
+ const displayValue = getDisplayValue(promotion);
11349
+ return /* @__PURE__ */ jsxRuntime.jsxs(
11350
+ "div",
11351
+ {
11352
+ className: ui.clx(
11353
+ "bg-ui-bg-component shadow-elevation-card-rest flex items-center justify-between rounded-lg px-3 py-2",
11354
+ {
11355
+ "animate-pulse": isLoading
11356
+ }
11357
+ ),
11358
+ children: [
11359
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
11360
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", leading: "compact", children: promotion.code }),
11361
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-ui-fg-subtle flex items-center gap-1.5", children: [
11362
+ displayValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1.5", children: [
11363
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: displayValue }),
11364
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: "·" })
11365
+ ] }),
11366
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", className: "capitalize", children: (_a = promotion.application_method) == null ? void 0 : _a.allocation })
11367
+ ] })
11368
+ ] }),
11369
+ /* @__PURE__ */ jsxRuntime.jsx(
11370
+ ui.IconButton,
11371
+ {
11372
+ size: "small",
11373
+ type: "button",
11374
+ variant: "transparent",
11375
+ onClick: onRemove,
11376
+ isLoading: isPending || isLoading,
11377
+ children: /* @__PURE__ */ jsxRuntime.jsx(icons.XMark, {})
11378
+ }
11379
+ )
11380
+ ]
11381
+ },
11382
+ promotion.id
11383
+ );
11384
+ };
11385
+ function getDisplayValue(promotion) {
11386
+ var _a, _b, _c, _d;
11387
+ const value = (_a = promotion.application_method) == null ? void 0 : _a.value;
11388
+ if (!value) {
11389
+ return null;
11393
11390
  }
11394
- return Object.entries(metadata).map(([key, value]) => {
11395
- if (!EDITABLE_TYPES.includes(typeof value)) {
11396
- return {
11397
- key,
11398
- value,
11399
- disabled: true
11400
- };
11401
- }
11402
- let stringValue = value;
11403
- if (typeof value !== "string") {
11404
- stringValue = JSON.stringify(value);
11391
+ if (((_b = promotion.application_method) == null ? void 0 : _b.type) === "fixed") {
11392
+ const currency = (_c = promotion.application_method) == null ? void 0 : _c.currency_code;
11393
+ if (!currency) {
11394
+ return null;
11405
11395
  }
11406
- return {
11407
- key,
11408
- value: stringValue,
11409
- original_key: key
11410
- };
11411
- });
11396
+ return getLocaleAmount(value, currency);
11397
+ } else if (((_d = promotion.application_method) == null ? void 0 : _d.type) === "percentage") {
11398
+ return formatPercentage(value);
11399
+ }
11400
+ return null;
11412
11401
  }
11413
- function parseValues(values) {
11414
- const metadata = values.metadata;
11415
- const isEmpty = !metadata.length || metadata.length === 1 && !metadata[0].key && !metadata[0].value;
11416
- if (isEmpty) {
11417
- return null;
11402
+ const formatter = new Intl.NumberFormat([], {
11403
+ style: "percent",
11404
+ minimumFractionDigits: 2
11405
+ });
11406
+ const formatPercentage = (value, isPercentageValue = false) => {
11407
+ let val = value || 0;
11408
+ if (!isPercentageValue) {
11409
+ val = val / 100;
11418
11410
  }
11419
- const update = {};
11420
- metadata.forEach((field) => {
11421
- let key = field.key;
11422
- let value = field.value;
11423
- const disabled = field.disabled;
11424
- if (!key || !value) {
11425
- return;
11426
- }
11427
- if (disabled) {
11428
- update[key] = value;
11429
- return;
11411
+ return formatter.format(val);
11412
+ };
11413
+ function getPromotionIds(items, shippingMethods) {
11414
+ const promotionIds = /* @__PURE__ */ new Set();
11415
+ for (const item of items) {
11416
+ if (item.adjustments) {
11417
+ for (const adjustment of item.adjustments) {
11418
+ if (adjustment.promotion_id) {
11419
+ promotionIds.add(adjustment.promotion_id);
11420
+ }
11421
+ }
11430
11422
  }
11431
- key = key.trim();
11432
- value = value.trim();
11433
- if (value === "true") {
11434
- update[key] = true;
11435
- } else if (value === "false") {
11436
- update[key] = false;
11437
- } else {
11438
- const parsedNumber = parseFloat(value);
11439
- if (!isNaN(parsedNumber)) {
11440
- update[key] = parsedNumber;
11441
- } else {
11442
- update[key] = value;
11423
+ }
11424
+ for (const shippingMethod of shippingMethods) {
11425
+ if (shippingMethod.adjustments) {
11426
+ for (const adjustment of shippingMethod.adjustments) {
11427
+ if (adjustment.promotion_id) {
11428
+ promotionIds.add(adjustment.promotion_id);
11429
+ }
11443
11430
  }
11444
11431
  }
11445
- });
11446
- return update;
11447
- }
11448
- function getHasUneditableRows(metadata) {
11449
- if (!metadata) {
11450
- return false;
11451
11432
  }
11452
- return Object.values(metadata).some(
11453
- (value) => !EDITABLE_TYPES.includes(typeof value)
11454
- );
11433
+ return Array.from(promotionIds);
11455
11434
  }
11456
11435
  const SalesChannel = () => {
11457
11436
  const { id } = reactRouterDom.useParams();
@@ -11481,7 +11460,7 @@ const SalesChannelForm = ({ order }) => {
11481
11460
  defaultValues: {
11482
11461
  sales_channel_id: order.sales_channel_id || ""
11483
11462
  },
11484
- resolver: zod.zodResolver(schema$2)
11463
+ resolver: zod.zodResolver(schema$3)
11485
11464
  });
11486
11465
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
11487
11466
  const { handleSuccess } = useRouteModal();
@@ -11556,7 +11535,7 @@ const SalesChannelField = ({ control, order }) => {
11556
11535
  }
11557
11536
  );
11558
11537
  };
11559
- const schema$2 = objectType({
11538
+ const schema$3 = objectType({
11560
11539
  sales_channel_id: stringType().min(1)
11561
11540
  });
11562
11541
  const STACKED_FOCUS_MODAL_ID = "shipping-form";
@@ -12389,7 +12368,7 @@ const TransferOwnershipForm = ({ order }) => {
12389
12368
  defaultValues: {
12390
12369
  customer_id: order.customer_id || ""
12391
12370
  },
12392
- resolver: zod.zodResolver(schema$1)
12371
+ resolver: zod.zodResolver(schema$2)
12393
12372
  });
12394
12373
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12395
12374
  const { handleSuccess } = useRouteModal();
@@ -12839,7 +12818,7 @@ const Illustration = () => {
12839
12818
  }
12840
12819
  );
12841
12820
  };
12842
- const schema$1 = objectType({
12821
+ const schema$2 = objectType({
12843
12822
  customer_id: stringType().min(1)
12844
12823
  });
12845
12824
  const ShippingAddress = () => {
@@ -12874,7 +12853,7 @@ const ShippingAddressForm = ({ order }) => {
12874
12853
  postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
12875
12854
  phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
12876
12855
  },
12877
- resolver: zod.zodResolver(schema)
12856
+ resolver: zod.zodResolver(schema$1)
12878
12857
  });
12879
12858
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
12880
12859
  const { handleSuccess } = useRouteModal();
@@ -13044,7 +13023,28 @@ const ShippingAddressForm = ({ order }) => {
13044
13023
  }
13045
13024
  ) });
13046
13025
  };
13047
- const schema = addressSchema;
13026
+ const schema$1 = addressSchema;
13027
+ const CustomItems = () => {
13028
+ return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
13029
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
13030
+ /* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
13031
+ ] });
13032
+ };
13033
+ const CustomItemsForm = () => {
13034
+ const form = reactHookForm.useForm({
13035
+ resolver: zod.zodResolver(schema)
13036
+ });
13037
+ return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
13038
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
13039
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
13040
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
13041
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
13042
+ ] }) })
13043
+ ] }) });
13044
+ };
13045
+ const schema = objectType({
13046
+ email: stringType().email()
13047
+ });
13048
13048
  const widgetModule = { widgets: [] };
13049
13049
  const routeModule = {
13050
13050
  routes: [
@@ -13069,10 +13069,6 @@ const routeModule = {
13069
13069
  Component: BillingAddress,
13070
13070
  path: "/draft-orders/:id/billing-address"
13071
13071
  },
13072
- {
13073
- Component: CustomItems,
13074
- path: "/draft-orders/:id/custom-items"
13075
- },
13076
13072
  {
13077
13073
  Component: Email,
13078
13074
  path: "/draft-orders/:id/email"
@@ -13081,14 +13077,14 @@ const routeModule = {
13081
13077
  Component: Items,
13082
13078
  path: "/draft-orders/:id/items"
13083
13079
  },
13084
- {
13085
- Component: Promotions,
13086
- path: "/draft-orders/:id/promotions"
13087
- },
13088
13080
  {
13089
13081
  Component: Metadata,
13090
13082
  path: "/draft-orders/:id/metadata"
13091
13083
  },
13084
+ {
13085
+ Component: Promotions,
13086
+ path: "/draft-orders/:id/promotions"
13087
+ },
13092
13088
  {
13093
13089
  Component: SalesChannel,
13094
13090
  path: "/draft-orders/:id/sales-channel"
@@ -13104,6 +13100,10 @@ const routeModule = {
13104
13100
  {
13105
13101
  Component: ShippingAddress,
13106
13102
  path: "/draft-orders/:id/shipping-address"
13103
+ },
13104
+ {
13105
+ Component: CustomItems,
13106
+ path: "/draft-orders/:id/custom-items"
13107
13107
  }
13108
13108
  ]
13109
13109
  }