@medusajs/draft-order 2.11.4-preview-20251109000311 → 2.11.4-preview-20251109060124
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 +365 -365
- package/.medusa/server/src/admin/index.mjs +365 -365
- package/package.json +16 -16
|
@@ -10821,283 +10821,6 @@ const customItemSchema = objectType({
|
|
|
10821
10821
|
quantity: numberType(),
|
|
10822
10822
|
unit_price: unionType([numberType(), stringType()])
|
|
10823
10823
|
});
|
|
10824
|
-
const PROMOTION_QUERY_KEY = "promotions";
|
|
10825
|
-
const promotionsQueryKeys = {
|
|
10826
|
-
list: (query2) => [
|
|
10827
|
-
PROMOTION_QUERY_KEY,
|
|
10828
|
-
query2 ? query2 : void 0
|
|
10829
|
-
],
|
|
10830
|
-
detail: (id, query2) => [
|
|
10831
|
-
PROMOTION_QUERY_KEY,
|
|
10832
|
-
id,
|
|
10833
|
-
query2 ? query2 : void 0
|
|
10834
|
-
]
|
|
10835
|
-
};
|
|
10836
|
-
const usePromotions = (query2, options) => {
|
|
10837
|
-
const { data, ...rest } = reactQuery.useQuery({
|
|
10838
|
-
queryKey: promotionsQueryKeys.list(query2),
|
|
10839
|
-
queryFn: async () => sdk.admin.promotion.list(query2),
|
|
10840
|
-
...options
|
|
10841
|
-
});
|
|
10842
|
-
return { ...data, ...rest };
|
|
10843
|
-
};
|
|
10844
|
-
const Promotions = () => {
|
|
10845
|
-
const { id } = reactRouterDom.useParams();
|
|
10846
|
-
const {
|
|
10847
|
-
order: preview,
|
|
10848
|
-
isError: isPreviewError,
|
|
10849
|
-
error: previewError
|
|
10850
|
-
} = useOrderPreview(id, void 0);
|
|
10851
|
-
useInitiateOrderEdit({ preview });
|
|
10852
|
-
const { onCancel } = useCancelOrderEdit({ preview });
|
|
10853
|
-
if (isPreviewError) {
|
|
10854
|
-
throw previewError;
|
|
10855
|
-
}
|
|
10856
|
-
const isReady = !!preview;
|
|
10857
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { onClose: onCancel, children: [
|
|
10858
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Promotions" }) }) }),
|
|
10859
|
-
isReady && /* @__PURE__ */ jsxRuntime.jsx(PromotionForm, { preview })
|
|
10860
|
-
] });
|
|
10861
|
-
};
|
|
10862
|
-
const PromotionForm = ({ preview }) => {
|
|
10863
|
-
const { items, shipping_methods } = preview;
|
|
10864
|
-
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
|
10865
|
-
const [comboboxValue, setComboboxValue] = React.useState("");
|
|
10866
|
-
const { handleSuccess } = useRouteModal();
|
|
10867
|
-
const { mutateAsync: addPromotions, isPending: isAddingPromotions } = useDraftOrderAddPromotions(preview.id);
|
|
10868
|
-
const promoIds = getPromotionIds(items, shipping_methods);
|
|
10869
|
-
const { promotions, isPending, isError, error } = usePromotions(
|
|
10870
|
-
{
|
|
10871
|
-
id: promoIds
|
|
10872
|
-
},
|
|
10873
|
-
{
|
|
10874
|
-
enabled: !!promoIds.length
|
|
10875
|
-
}
|
|
10876
|
-
);
|
|
10877
|
-
const comboboxData = useComboboxData({
|
|
10878
|
-
queryKey: ["promotions", "combobox", promoIds],
|
|
10879
|
-
queryFn: async (params) => {
|
|
10880
|
-
return await sdk.admin.promotion.list({
|
|
10881
|
-
...params,
|
|
10882
|
-
id: {
|
|
10883
|
-
$nin: promoIds
|
|
10884
|
-
}
|
|
10885
|
-
});
|
|
10886
|
-
},
|
|
10887
|
-
getOptions: (data) => {
|
|
10888
|
-
return data.promotions.map((promotion) => ({
|
|
10889
|
-
label: promotion.code,
|
|
10890
|
-
value: promotion.code
|
|
10891
|
-
}));
|
|
10892
|
-
}
|
|
10893
|
-
});
|
|
10894
|
-
const add = async (value) => {
|
|
10895
|
-
if (!value) {
|
|
10896
|
-
return;
|
|
10897
|
-
}
|
|
10898
|
-
addPromotions(
|
|
10899
|
-
{
|
|
10900
|
-
promo_codes: [value]
|
|
10901
|
-
},
|
|
10902
|
-
{
|
|
10903
|
-
onError: (e) => {
|
|
10904
|
-
ui.toast.error(e.message);
|
|
10905
|
-
comboboxData.onSearchValueChange("");
|
|
10906
|
-
setComboboxValue("");
|
|
10907
|
-
},
|
|
10908
|
-
onSuccess: () => {
|
|
10909
|
-
comboboxData.onSearchValueChange("");
|
|
10910
|
-
setComboboxValue("");
|
|
10911
|
-
}
|
|
10912
|
-
}
|
|
10913
|
-
);
|
|
10914
|
-
};
|
|
10915
|
-
const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
|
|
10916
|
-
const { mutateAsync: requestOrderEdit } = useOrderEditRequest(preview.id);
|
|
10917
|
-
const onSubmit = async () => {
|
|
10918
|
-
setIsSubmitting(true);
|
|
10919
|
-
let requestSucceeded = false;
|
|
10920
|
-
await requestOrderEdit(void 0, {
|
|
10921
|
-
onError: (e) => {
|
|
10922
|
-
ui.toast.error(e.message);
|
|
10923
|
-
},
|
|
10924
|
-
onSuccess: () => {
|
|
10925
|
-
requestSucceeded = true;
|
|
10926
|
-
}
|
|
10927
|
-
});
|
|
10928
|
-
if (!requestSucceeded) {
|
|
10929
|
-
setIsSubmitting(false);
|
|
10930
|
-
return;
|
|
10931
|
-
}
|
|
10932
|
-
await confirmOrderEdit(void 0, {
|
|
10933
|
-
onError: (e) => {
|
|
10934
|
-
ui.toast.error(e.message);
|
|
10935
|
-
},
|
|
10936
|
-
onSuccess: () => {
|
|
10937
|
-
handleSuccess();
|
|
10938
|
-
},
|
|
10939
|
-
onSettled: () => {
|
|
10940
|
-
setIsSubmitting(false);
|
|
10941
|
-
}
|
|
10942
|
-
});
|
|
10943
|
-
};
|
|
10944
|
-
if (isError) {
|
|
10945
|
-
throw error;
|
|
10946
|
-
}
|
|
10947
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", onSubmit, children: [
|
|
10948
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
|
|
10949
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-3", children: [
|
|
10950
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
10951
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Label, { size: "small", weight: "plus", htmlFor: "promotion-combobox", children: "Apply promotions" }),
|
|
10952
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Hint, { id: "promotion-combobox-hint", children: "Manage promotions that should be applied to the order." })
|
|
10953
|
-
] }),
|
|
10954
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10955
|
-
Combobox,
|
|
10956
|
-
{
|
|
10957
|
-
id: "promotion-combobox",
|
|
10958
|
-
"aria-describedby": "promotion-combobox-hint",
|
|
10959
|
-
isFetchingNextPage: comboboxData.isFetchingNextPage,
|
|
10960
|
-
fetchNextPage: comboboxData.fetchNextPage,
|
|
10961
|
-
options: comboboxData.options,
|
|
10962
|
-
onSearchValueChange: comboboxData.onSearchValueChange,
|
|
10963
|
-
searchValue: comboboxData.searchValue,
|
|
10964
|
-
disabled: comboboxData.disabled || isAddingPromotions,
|
|
10965
|
-
onChange: add,
|
|
10966
|
-
value: comboboxValue
|
|
10967
|
-
}
|
|
10968
|
-
)
|
|
10969
|
-
] }),
|
|
10970
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Divider, { variant: "dashed" }),
|
|
10971
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-2", children: promotions == null ? void 0 : promotions.map((promotion) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
10972
|
-
PromotionItem,
|
|
10973
|
-
{
|
|
10974
|
-
promotion,
|
|
10975
|
-
orderId: preview.id,
|
|
10976
|
-
isLoading: isPending
|
|
10977
|
-
},
|
|
10978
|
-
promotion.id
|
|
10979
|
-
)) })
|
|
10980
|
-
] }) }),
|
|
10981
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
10982
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
10983
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10984
|
-
ui.Button,
|
|
10985
|
-
{
|
|
10986
|
-
size: "small",
|
|
10987
|
-
type: "submit",
|
|
10988
|
-
isLoading: isSubmitting || isAddingPromotions,
|
|
10989
|
-
children: "Save"
|
|
10990
|
-
}
|
|
10991
|
-
)
|
|
10992
|
-
] }) })
|
|
10993
|
-
] });
|
|
10994
|
-
};
|
|
10995
|
-
const PromotionItem = ({
|
|
10996
|
-
promotion,
|
|
10997
|
-
orderId,
|
|
10998
|
-
isLoading
|
|
10999
|
-
}) => {
|
|
11000
|
-
var _a;
|
|
11001
|
-
const { mutateAsync: removePromotions, isPending } = useDraftOrderRemovePromotions(orderId);
|
|
11002
|
-
const onRemove = async () => {
|
|
11003
|
-
removePromotions(
|
|
11004
|
-
{
|
|
11005
|
-
promo_codes: [promotion.code]
|
|
11006
|
-
},
|
|
11007
|
-
{
|
|
11008
|
-
onError: (e) => {
|
|
11009
|
-
ui.toast.error(e.message);
|
|
11010
|
-
}
|
|
11011
|
-
}
|
|
11012
|
-
);
|
|
11013
|
-
};
|
|
11014
|
-
const displayValue = getDisplayValue(promotion);
|
|
11015
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11016
|
-
"div",
|
|
11017
|
-
{
|
|
11018
|
-
className: ui.clx(
|
|
11019
|
-
"bg-ui-bg-component shadow-elevation-card-rest flex items-center justify-between rounded-lg px-3 py-2",
|
|
11020
|
-
{
|
|
11021
|
-
"animate-pulse": isLoading
|
|
11022
|
-
}
|
|
11023
|
-
),
|
|
11024
|
-
children: [
|
|
11025
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
11026
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", leading: "compact", children: promotion.code }),
|
|
11027
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-ui-fg-subtle flex items-center gap-1.5", children: [
|
|
11028
|
-
displayValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1.5", children: [
|
|
11029
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: displayValue }),
|
|
11030
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: "·" })
|
|
11031
|
-
] }),
|
|
11032
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", className: "capitalize", children: (_a = promotion.application_method) == null ? void 0 : _a.allocation })
|
|
11033
|
-
] })
|
|
11034
|
-
] }),
|
|
11035
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11036
|
-
ui.IconButton,
|
|
11037
|
-
{
|
|
11038
|
-
size: "small",
|
|
11039
|
-
type: "button",
|
|
11040
|
-
variant: "transparent",
|
|
11041
|
-
onClick: onRemove,
|
|
11042
|
-
isLoading: isPending || isLoading,
|
|
11043
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(icons.XMark, {})
|
|
11044
|
-
}
|
|
11045
|
-
)
|
|
11046
|
-
]
|
|
11047
|
-
},
|
|
11048
|
-
promotion.id
|
|
11049
|
-
);
|
|
11050
|
-
};
|
|
11051
|
-
function getDisplayValue(promotion) {
|
|
11052
|
-
var _a, _b, _c, _d;
|
|
11053
|
-
const value = (_a = promotion.application_method) == null ? void 0 : _a.value;
|
|
11054
|
-
if (!value) {
|
|
11055
|
-
return null;
|
|
11056
|
-
}
|
|
11057
|
-
if (((_b = promotion.application_method) == null ? void 0 : _b.type) === "fixed") {
|
|
11058
|
-
const currency = (_c = promotion.application_method) == null ? void 0 : _c.currency_code;
|
|
11059
|
-
if (!currency) {
|
|
11060
|
-
return null;
|
|
11061
|
-
}
|
|
11062
|
-
return getLocaleAmount(value, currency);
|
|
11063
|
-
} else if (((_d = promotion.application_method) == null ? void 0 : _d.type) === "percentage") {
|
|
11064
|
-
return formatPercentage(value);
|
|
11065
|
-
}
|
|
11066
|
-
return null;
|
|
11067
|
-
}
|
|
11068
|
-
const formatter = new Intl.NumberFormat([], {
|
|
11069
|
-
style: "percent",
|
|
11070
|
-
minimumFractionDigits: 2
|
|
11071
|
-
});
|
|
11072
|
-
const formatPercentage = (value, isPercentageValue = false) => {
|
|
11073
|
-
let val = value || 0;
|
|
11074
|
-
if (!isPercentageValue) {
|
|
11075
|
-
val = val / 100;
|
|
11076
|
-
}
|
|
11077
|
-
return formatter.format(val);
|
|
11078
|
-
};
|
|
11079
|
-
function getPromotionIds(items, shippingMethods) {
|
|
11080
|
-
const promotionIds = /* @__PURE__ */ new Set();
|
|
11081
|
-
for (const item of items) {
|
|
11082
|
-
if (item.adjustments) {
|
|
11083
|
-
for (const adjustment of item.adjustments) {
|
|
11084
|
-
if (adjustment.promotion_id) {
|
|
11085
|
-
promotionIds.add(adjustment.promotion_id);
|
|
11086
|
-
}
|
|
11087
|
-
}
|
|
11088
|
-
}
|
|
11089
|
-
}
|
|
11090
|
-
for (const shippingMethod of shippingMethods) {
|
|
11091
|
-
if (shippingMethod.adjustments) {
|
|
11092
|
-
for (const adjustment of shippingMethod.adjustments) {
|
|
11093
|
-
if (adjustment.promotion_id) {
|
|
11094
|
-
promotionIds.add(adjustment.promotion_id);
|
|
11095
|
-
}
|
|
11096
|
-
}
|
|
11097
|
-
}
|
|
11098
|
-
}
|
|
11099
|
-
return Array.from(promotionIds);
|
|
11100
|
-
}
|
|
11101
10824
|
const InlineTip = React.forwardRef(
|
|
11102
10825
|
({ variant = "tip", label, className, children, ...props }, ref) => {
|
|
11103
10826
|
const labelValue = label || (variant === "warning" ? "Warning" : "Tip");
|
|
@@ -11349,104 +11072,381 @@ const MetadataForm = ({ orderId, metadata }) => {
|
|
|
11349
11072
|
] }) })
|
|
11350
11073
|
]
|
|
11351
11074
|
}
|
|
11352
|
-
) });
|
|
11353
|
-
};
|
|
11354
|
-
const GridInput = React.forwardRef(({ className, ...props }, ref) => {
|
|
11355
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
11356
|
-
"input",
|
|
11357
|
-
{
|
|
11358
|
-
ref,
|
|
11359
|
-
...props,
|
|
11360
|
-
autoComplete: "off",
|
|
11361
|
-
className: ui.clx(
|
|
11362
|
-
"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",
|
|
11363
|
-
className
|
|
11075
|
+
) });
|
|
11076
|
+
};
|
|
11077
|
+
const GridInput = React.forwardRef(({ className, ...props }, ref) => {
|
|
11078
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
11079
|
+
"input",
|
|
11080
|
+
{
|
|
11081
|
+
ref,
|
|
11082
|
+
...props,
|
|
11083
|
+
autoComplete: "off",
|
|
11084
|
+
className: ui.clx(
|
|
11085
|
+
"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",
|
|
11086
|
+
className
|
|
11087
|
+
)
|
|
11088
|
+
}
|
|
11089
|
+
);
|
|
11090
|
+
});
|
|
11091
|
+
GridInput.displayName = "MetadataForm.GridInput";
|
|
11092
|
+
const PlaceholderInner = () => {
|
|
11093
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col overflow-hidden", children: [
|
|
11094
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-[148ox] w-full rounded-lg" }) }),
|
|
11095
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
|
|
11096
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" }),
|
|
11097
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" })
|
|
11098
|
+
] }) })
|
|
11099
|
+
] });
|
|
11100
|
+
};
|
|
11101
|
+
const EDITABLE_TYPES = ["string", "number", "boolean"];
|
|
11102
|
+
function getDefaultValues(metadata) {
|
|
11103
|
+
if (!metadata || !Object.keys(metadata).length) {
|
|
11104
|
+
return [
|
|
11105
|
+
{
|
|
11106
|
+
key: "",
|
|
11107
|
+
value: "",
|
|
11108
|
+
disabled: false
|
|
11109
|
+
}
|
|
11110
|
+
];
|
|
11111
|
+
}
|
|
11112
|
+
return Object.entries(metadata).map(([key, value]) => {
|
|
11113
|
+
if (!EDITABLE_TYPES.includes(typeof value)) {
|
|
11114
|
+
return {
|
|
11115
|
+
key,
|
|
11116
|
+
value,
|
|
11117
|
+
disabled: true
|
|
11118
|
+
};
|
|
11119
|
+
}
|
|
11120
|
+
let stringValue = value;
|
|
11121
|
+
if (typeof value !== "string") {
|
|
11122
|
+
stringValue = JSON.stringify(value);
|
|
11123
|
+
}
|
|
11124
|
+
return {
|
|
11125
|
+
key,
|
|
11126
|
+
value: stringValue,
|
|
11127
|
+
original_key: key
|
|
11128
|
+
};
|
|
11129
|
+
});
|
|
11130
|
+
}
|
|
11131
|
+
function parseValues(values) {
|
|
11132
|
+
const metadata = values.metadata;
|
|
11133
|
+
const isEmpty = !metadata.length || metadata.length === 1 && !metadata[0].key && !metadata[0].value;
|
|
11134
|
+
if (isEmpty) {
|
|
11135
|
+
return null;
|
|
11136
|
+
}
|
|
11137
|
+
const update = {};
|
|
11138
|
+
metadata.forEach((field) => {
|
|
11139
|
+
let key = field.key;
|
|
11140
|
+
let value = field.value;
|
|
11141
|
+
const disabled = field.disabled;
|
|
11142
|
+
if (!key || !value) {
|
|
11143
|
+
return;
|
|
11144
|
+
}
|
|
11145
|
+
if (disabled) {
|
|
11146
|
+
update[key] = value;
|
|
11147
|
+
return;
|
|
11148
|
+
}
|
|
11149
|
+
key = key.trim();
|
|
11150
|
+
value = value.trim();
|
|
11151
|
+
if (value === "true") {
|
|
11152
|
+
update[key] = true;
|
|
11153
|
+
} else if (value === "false") {
|
|
11154
|
+
update[key] = false;
|
|
11155
|
+
} else {
|
|
11156
|
+
const parsedNumber = parseFloat(value);
|
|
11157
|
+
if (!isNaN(parsedNumber)) {
|
|
11158
|
+
update[key] = parsedNumber;
|
|
11159
|
+
} else {
|
|
11160
|
+
update[key] = value;
|
|
11161
|
+
}
|
|
11162
|
+
}
|
|
11163
|
+
});
|
|
11164
|
+
return update;
|
|
11165
|
+
}
|
|
11166
|
+
function getHasUneditableRows(metadata) {
|
|
11167
|
+
if (!metadata) {
|
|
11168
|
+
return false;
|
|
11169
|
+
}
|
|
11170
|
+
return Object.values(metadata).some(
|
|
11171
|
+
(value) => !EDITABLE_TYPES.includes(typeof value)
|
|
11172
|
+
);
|
|
11173
|
+
}
|
|
11174
|
+
const PROMOTION_QUERY_KEY = "promotions";
|
|
11175
|
+
const promotionsQueryKeys = {
|
|
11176
|
+
list: (query2) => [
|
|
11177
|
+
PROMOTION_QUERY_KEY,
|
|
11178
|
+
query2 ? query2 : void 0
|
|
11179
|
+
],
|
|
11180
|
+
detail: (id, query2) => [
|
|
11181
|
+
PROMOTION_QUERY_KEY,
|
|
11182
|
+
id,
|
|
11183
|
+
query2 ? query2 : void 0
|
|
11184
|
+
]
|
|
11185
|
+
};
|
|
11186
|
+
const usePromotions = (query2, options) => {
|
|
11187
|
+
const { data, ...rest } = reactQuery.useQuery({
|
|
11188
|
+
queryKey: promotionsQueryKeys.list(query2),
|
|
11189
|
+
queryFn: async () => sdk.admin.promotion.list(query2),
|
|
11190
|
+
...options
|
|
11191
|
+
});
|
|
11192
|
+
return { ...data, ...rest };
|
|
11193
|
+
};
|
|
11194
|
+
const Promotions = () => {
|
|
11195
|
+
const { id } = reactRouterDom.useParams();
|
|
11196
|
+
const {
|
|
11197
|
+
order: preview,
|
|
11198
|
+
isError: isPreviewError,
|
|
11199
|
+
error: previewError
|
|
11200
|
+
} = useOrderPreview(id, void 0);
|
|
11201
|
+
useInitiateOrderEdit({ preview });
|
|
11202
|
+
const { onCancel } = useCancelOrderEdit({ preview });
|
|
11203
|
+
if (isPreviewError) {
|
|
11204
|
+
throw previewError;
|
|
11205
|
+
}
|
|
11206
|
+
const isReady = !!preview;
|
|
11207
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { onClose: onCancel, children: [
|
|
11208
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Promotions" }) }) }),
|
|
11209
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(PromotionForm, { preview })
|
|
11210
|
+
] });
|
|
11211
|
+
};
|
|
11212
|
+
const PromotionForm = ({ preview }) => {
|
|
11213
|
+
const { items, shipping_methods } = preview;
|
|
11214
|
+
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
|
11215
|
+
const [comboboxValue, setComboboxValue] = React.useState("");
|
|
11216
|
+
const { handleSuccess } = useRouteModal();
|
|
11217
|
+
const { mutateAsync: addPromotions, isPending: isAddingPromotions } = useDraftOrderAddPromotions(preview.id);
|
|
11218
|
+
const promoIds = getPromotionIds(items, shipping_methods);
|
|
11219
|
+
const { promotions, isPending, isError, error } = usePromotions(
|
|
11220
|
+
{
|
|
11221
|
+
id: promoIds
|
|
11222
|
+
},
|
|
11223
|
+
{
|
|
11224
|
+
enabled: !!promoIds.length
|
|
11225
|
+
}
|
|
11226
|
+
);
|
|
11227
|
+
const comboboxData = useComboboxData({
|
|
11228
|
+
queryKey: ["promotions", "combobox", promoIds],
|
|
11229
|
+
queryFn: async (params) => {
|
|
11230
|
+
return await sdk.admin.promotion.list({
|
|
11231
|
+
...params,
|
|
11232
|
+
id: {
|
|
11233
|
+
$nin: promoIds
|
|
11234
|
+
}
|
|
11235
|
+
});
|
|
11236
|
+
},
|
|
11237
|
+
getOptions: (data) => {
|
|
11238
|
+
return data.promotions.map((promotion) => ({
|
|
11239
|
+
label: promotion.code,
|
|
11240
|
+
value: promotion.code
|
|
11241
|
+
}));
|
|
11242
|
+
}
|
|
11243
|
+
});
|
|
11244
|
+
const add = async (value) => {
|
|
11245
|
+
if (!value) {
|
|
11246
|
+
return;
|
|
11247
|
+
}
|
|
11248
|
+
addPromotions(
|
|
11249
|
+
{
|
|
11250
|
+
promo_codes: [value]
|
|
11251
|
+
},
|
|
11252
|
+
{
|
|
11253
|
+
onError: (e) => {
|
|
11254
|
+
ui.toast.error(e.message);
|
|
11255
|
+
comboboxData.onSearchValueChange("");
|
|
11256
|
+
setComboboxValue("");
|
|
11257
|
+
},
|
|
11258
|
+
onSuccess: () => {
|
|
11259
|
+
comboboxData.onSearchValueChange("");
|
|
11260
|
+
setComboboxValue("");
|
|
11261
|
+
}
|
|
11262
|
+
}
|
|
11263
|
+
);
|
|
11264
|
+
};
|
|
11265
|
+
const { mutateAsync: confirmOrderEdit } = useDraftOrderConfirmEdit(preview.id);
|
|
11266
|
+
const { mutateAsync: requestOrderEdit } = useOrderEditRequest(preview.id);
|
|
11267
|
+
const onSubmit = async () => {
|
|
11268
|
+
setIsSubmitting(true);
|
|
11269
|
+
let requestSucceeded = false;
|
|
11270
|
+
await requestOrderEdit(void 0, {
|
|
11271
|
+
onError: (e) => {
|
|
11272
|
+
ui.toast.error(e.message);
|
|
11273
|
+
},
|
|
11274
|
+
onSuccess: () => {
|
|
11275
|
+
requestSucceeded = true;
|
|
11276
|
+
}
|
|
11277
|
+
});
|
|
11278
|
+
if (!requestSucceeded) {
|
|
11279
|
+
setIsSubmitting(false);
|
|
11280
|
+
return;
|
|
11281
|
+
}
|
|
11282
|
+
await confirmOrderEdit(void 0, {
|
|
11283
|
+
onError: (e) => {
|
|
11284
|
+
ui.toast.error(e.message);
|
|
11285
|
+
},
|
|
11286
|
+
onSuccess: () => {
|
|
11287
|
+
handleSuccess();
|
|
11288
|
+
},
|
|
11289
|
+
onSettled: () => {
|
|
11290
|
+
setIsSubmitting(false);
|
|
11291
|
+
}
|
|
11292
|
+
});
|
|
11293
|
+
};
|
|
11294
|
+
if (isError) {
|
|
11295
|
+
throw error;
|
|
11296
|
+
}
|
|
11297
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", onSubmit, children: [
|
|
11298
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-4", children: [
|
|
11299
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-3", children: [
|
|
11300
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
11301
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Label, { size: "small", weight: "plus", htmlFor: "promotion-combobox", children: "Apply promotions" }),
|
|
11302
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Hint, { id: "promotion-combobox-hint", children: "Manage promotions that should be applied to the order." })
|
|
11303
|
+
] }),
|
|
11304
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11305
|
+
Combobox,
|
|
11306
|
+
{
|
|
11307
|
+
id: "promotion-combobox",
|
|
11308
|
+
"aria-describedby": "promotion-combobox-hint",
|
|
11309
|
+
isFetchingNextPage: comboboxData.isFetchingNextPage,
|
|
11310
|
+
fetchNextPage: comboboxData.fetchNextPage,
|
|
11311
|
+
options: comboboxData.options,
|
|
11312
|
+
onSearchValueChange: comboboxData.onSearchValueChange,
|
|
11313
|
+
searchValue: comboboxData.searchValue,
|
|
11314
|
+
disabled: comboboxData.disabled || isAddingPromotions,
|
|
11315
|
+
onChange: add,
|
|
11316
|
+
value: comboboxValue
|
|
11317
|
+
}
|
|
11318
|
+
)
|
|
11319
|
+
] }),
|
|
11320
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Divider, { variant: "dashed" }),
|
|
11321
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-2", children: promotions == null ? void 0 : promotions.map((promotion) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
11322
|
+
PromotionItem,
|
|
11323
|
+
{
|
|
11324
|
+
promotion,
|
|
11325
|
+
orderId: preview.id,
|
|
11326
|
+
isLoading: isPending
|
|
11327
|
+
},
|
|
11328
|
+
promotion.id
|
|
11329
|
+
)) })
|
|
11330
|
+
] }) }),
|
|
11331
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
11332
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
11333
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11334
|
+
ui.Button,
|
|
11335
|
+
{
|
|
11336
|
+
size: "small",
|
|
11337
|
+
type: "submit",
|
|
11338
|
+
isLoading: isSubmitting || isAddingPromotions,
|
|
11339
|
+
children: "Save"
|
|
11340
|
+
}
|
|
11364
11341
|
)
|
|
11365
|
-
}
|
|
11366
|
-
);
|
|
11367
|
-
});
|
|
11368
|
-
GridInput.displayName = "MetadataForm.GridInput";
|
|
11369
|
-
const PlaceholderInner = () => {
|
|
11370
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-1 flex-col overflow-hidden", children: [
|
|
11371
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-[148ox] w-full rounded-lg" }) }),
|
|
11372
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-x-2", children: [
|
|
11373
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" }),
|
|
11374
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Skeleton, { className: "h-7 w-12 rounded-md" })
|
|
11375
11342
|
] }) })
|
|
11376
11343
|
] });
|
|
11377
11344
|
};
|
|
11378
|
-
const
|
|
11379
|
-
|
|
11380
|
-
|
|
11381
|
-
|
|
11345
|
+
const PromotionItem = ({
|
|
11346
|
+
promotion,
|
|
11347
|
+
orderId,
|
|
11348
|
+
isLoading
|
|
11349
|
+
}) => {
|
|
11350
|
+
var _a;
|
|
11351
|
+
const { mutateAsync: removePromotions, isPending } = useDraftOrderRemovePromotions(orderId);
|
|
11352
|
+
const onRemove = async () => {
|
|
11353
|
+
removePromotions(
|
|
11382
11354
|
{
|
|
11383
|
-
|
|
11384
|
-
|
|
11385
|
-
|
|
11355
|
+
promo_codes: [promotion.code]
|
|
11356
|
+
},
|
|
11357
|
+
{
|
|
11358
|
+
onError: (e) => {
|
|
11359
|
+
ui.toast.error(e.message);
|
|
11360
|
+
}
|
|
11386
11361
|
}
|
|
11387
|
-
|
|
11362
|
+
);
|
|
11363
|
+
};
|
|
11364
|
+
const displayValue = getDisplayValue(promotion);
|
|
11365
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11366
|
+
"div",
|
|
11367
|
+
{
|
|
11368
|
+
className: ui.clx(
|
|
11369
|
+
"bg-ui-bg-component shadow-elevation-card-rest flex items-center justify-between rounded-lg px-3 py-2",
|
|
11370
|
+
{
|
|
11371
|
+
"animate-pulse": isLoading
|
|
11372
|
+
}
|
|
11373
|
+
),
|
|
11374
|
+
children: [
|
|
11375
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
11376
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", weight: "plus", leading: "compact", children: promotion.code }),
|
|
11377
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-ui-fg-subtle flex items-center gap-1.5", children: [
|
|
11378
|
+
displayValue && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1.5", children: [
|
|
11379
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: displayValue }),
|
|
11380
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", children: "·" })
|
|
11381
|
+
] }),
|
|
11382
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Text, { size: "small", leading: "compact", className: "capitalize", children: (_a = promotion.application_method) == null ? void 0 : _a.allocation })
|
|
11383
|
+
] })
|
|
11384
|
+
] }),
|
|
11385
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11386
|
+
ui.IconButton,
|
|
11387
|
+
{
|
|
11388
|
+
size: "small",
|
|
11389
|
+
type: "button",
|
|
11390
|
+
variant: "transparent",
|
|
11391
|
+
onClick: onRemove,
|
|
11392
|
+
isLoading: isPending || isLoading,
|
|
11393
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(icons.XMark, {})
|
|
11394
|
+
}
|
|
11395
|
+
)
|
|
11396
|
+
]
|
|
11397
|
+
},
|
|
11398
|
+
promotion.id
|
|
11399
|
+
);
|
|
11400
|
+
};
|
|
11401
|
+
function getDisplayValue(promotion) {
|
|
11402
|
+
var _a, _b, _c, _d;
|
|
11403
|
+
const value = (_a = promotion.application_method) == null ? void 0 : _a.value;
|
|
11404
|
+
if (!value) {
|
|
11405
|
+
return null;
|
|
11388
11406
|
}
|
|
11389
|
-
|
|
11390
|
-
|
|
11391
|
-
|
|
11392
|
-
|
|
11393
|
-
value,
|
|
11394
|
-
disabled: true
|
|
11395
|
-
};
|
|
11396
|
-
}
|
|
11397
|
-
let stringValue = value;
|
|
11398
|
-
if (typeof value !== "string") {
|
|
11399
|
-
stringValue = JSON.stringify(value);
|
|
11407
|
+
if (((_b = promotion.application_method) == null ? void 0 : _b.type) === "fixed") {
|
|
11408
|
+
const currency = (_c = promotion.application_method) == null ? void 0 : _c.currency_code;
|
|
11409
|
+
if (!currency) {
|
|
11410
|
+
return null;
|
|
11400
11411
|
}
|
|
11401
|
-
return
|
|
11402
|
-
|
|
11403
|
-
|
|
11404
|
-
|
|
11405
|
-
|
|
11406
|
-
});
|
|
11412
|
+
return getLocaleAmount(value, currency);
|
|
11413
|
+
} else if (((_d = promotion.application_method) == null ? void 0 : _d.type) === "percentage") {
|
|
11414
|
+
return formatPercentage(value);
|
|
11415
|
+
}
|
|
11416
|
+
return null;
|
|
11407
11417
|
}
|
|
11408
|
-
|
|
11409
|
-
|
|
11410
|
-
|
|
11411
|
-
|
|
11412
|
-
|
|
11418
|
+
const formatter = new Intl.NumberFormat([], {
|
|
11419
|
+
style: "percent",
|
|
11420
|
+
minimumFractionDigits: 2
|
|
11421
|
+
});
|
|
11422
|
+
const formatPercentage = (value, isPercentageValue = false) => {
|
|
11423
|
+
let val = value || 0;
|
|
11424
|
+
if (!isPercentageValue) {
|
|
11425
|
+
val = val / 100;
|
|
11413
11426
|
}
|
|
11414
|
-
|
|
11415
|
-
|
|
11416
|
-
|
|
11417
|
-
|
|
11418
|
-
|
|
11419
|
-
if (
|
|
11420
|
-
|
|
11421
|
-
|
|
11422
|
-
|
|
11423
|
-
|
|
11424
|
-
|
|
11427
|
+
return formatter.format(val);
|
|
11428
|
+
};
|
|
11429
|
+
function getPromotionIds(items, shippingMethods) {
|
|
11430
|
+
const promotionIds = /* @__PURE__ */ new Set();
|
|
11431
|
+
for (const item of items) {
|
|
11432
|
+
if (item.adjustments) {
|
|
11433
|
+
for (const adjustment of item.adjustments) {
|
|
11434
|
+
if (adjustment.promotion_id) {
|
|
11435
|
+
promotionIds.add(adjustment.promotion_id);
|
|
11436
|
+
}
|
|
11437
|
+
}
|
|
11425
11438
|
}
|
|
11426
|
-
|
|
11427
|
-
|
|
11428
|
-
if (
|
|
11429
|
-
|
|
11430
|
-
|
|
11431
|
-
|
|
11432
|
-
|
|
11433
|
-
const parsedNumber = parseFloat(value);
|
|
11434
|
-
if (!isNaN(parsedNumber)) {
|
|
11435
|
-
update[key] = parsedNumber;
|
|
11436
|
-
} else {
|
|
11437
|
-
update[key] = value;
|
|
11439
|
+
}
|
|
11440
|
+
for (const shippingMethod of shippingMethods) {
|
|
11441
|
+
if (shippingMethod.adjustments) {
|
|
11442
|
+
for (const adjustment of shippingMethod.adjustments) {
|
|
11443
|
+
if (adjustment.promotion_id) {
|
|
11444
|
+
promotionIds.add(adjustment.promotion_id);
|
|
11445
|
+
}
|
|
11438
11446
|
}
|
|
11439
11447
|
}
|
|
11440
|
-
});
|
|
11441
|
-
return update;
|
|
11442
|
-
}
|
|
11443
|
-
function getHasUneditableRows(metadata) {
|
|
11444
|
-
if (!metadata) {
|
|
11445
|
-
return false;
|
|
11446
11448
|
}
|
|
11447
|
-
return
|
|
11448
|
-
(value) => !EDITABLE_TYPES.includes(typeof value)
|
|
11449
|
-
);
|
|
11449
|
+
return Array.from(promotionIds);
|
|
11450
11450
|
}
|
|
11451
11451
|
const SalesChannel = () => {
|
|
11452
11452
|
const { id } = reactRouterDom.useParams();
|
|
@@ -13076,14 +13076,14 @@ const routeModule = {
|
|
|
13076
13076
|
Component: Items,
|
|
13077
13077
|
path: "/draft-orders/:id/items"
|
|
13078
13078
|
},
|
|
13079
|
-
{
|
|
13080
|
-
Component: Promotions,
|
|
13081
|
-
path: "/draft-orders/:id/promotions"
|
|
13082
|
-
},
|
|
13083
13079
|
{
|
|
13084
13080
|
Component: Metadata,
|
|
13085
13081
|
path: "/draft-orders/:id/metadata"
|
|
13086
13082
|
},
|
|
13083
|
+
{
|
|
13084
|
+
Component: Promotions,
|
|
13085
|
+
path: "/draft-orders/:id/promotions"
|
|
13086
|
+
},
|
|
13087
13087
|
{
|
|
13088
13088
|
Component: SalesChannel,
|
|
13089
13089
|
path: "/draft-orders/:id/sales-channel"
|