@feedmepos/order-plugin-gallery 0.0.10-beta.4 → 0.0.10-beta.6
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.
|
@@ -95,9 +95,11 @@ const autoAddCompulsoryItems = async (sdk, rules, slotActiveBills) => {
|
|
|
95
95
|
const compulsoryItemsPlugin = (args) => {
|
|
96
96
|
const { sdk, onBeforeSubmitOrder, pluginParams } = args;
|
|
97
97
|
const { onOrderSessionReady } = args;
|
|
98
|
+
const getPluginParams = () => {
|
|
99
|
+
return (pluginParams || {});
|
|
100
|
+
};
|
|
98
101
|
const getRules = () => {
|
|
99
|
-
|
|
100
|
-
return getNormalizedRules(params.itemLimitConfig);
|
|
102
|
+
return getNormalizedRules(getPluginParams().itemLimitConfig);
|
|
101
103
|
};
|
|
102
104
|
if (typeof onOrderSessionReady === "function") {
|
|
103
105
|
onOrderSessionReady(async (params) => {
|
|
@@ -118,11 +120,13 @@ const compulsoryItemsPlugin = (args) => {
|
|
|
118
120
|
if (violationMessages.length === 0) {
|
|
119
121
|
return true;
|
|
120
122
|
}
|
|
123
|
+
const submitErrorMessage = getPluginParams().submitErrorMessage?.trim();
|
|
121
124
|
sdk.ui.toast.show({
|
|
122
|
-
title:
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
125
|
+
title: submitErrorMessage ||
|
|
126
|
+
[
|
|
127
|
+
"Please update your cart before submitting:",
|
|
128
|
+
...violationMessages.map((message) => `- ${message}`),
|
|
129
|
+
].join("\n"),
|
|
126
130
|
type: "error",
|
|
127
131
|
duration: 6000,
|
|
128
132
|
});
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const maxItemInCategoryPlugin = ({ sdk, onAfterComputeMenuState, onBeforeSubmitOrder, pluginParams, }) => {
|
|
2
|
-
const MIN_ITEMS = 1;
|
|
3
|
-
const MAX_ITEMS = 1;
|
|
4
2
|
const categoryLimitConfig = pluginParams?.categoryLimitConfig || {};
|
|
3
|
+
const minItems = categoryLimitConfig.minItems ?? 1;
|
|
4
|
+
const maxItems = categoryLimitConfig.maxItems ?? 1;
|
|
5
|
+
const formatCountLabel = (count) => `${count} ${count === 1 ? "item" : "items"}`;
|
|
5
6
|
onBeforeSubmitOrder(() => {
|
|
6
7
|
if (!categoryLimitConfig.categoryId) {
|
|
7
8
|
return true;
|
|
@@ -58,14 +59,12 @@ const maxItemInCategoryPlugin = ({ sdk, onAfterComputeMenuState, onBeforeSubmitO
|
|
|
58
59
|
return true;
|
|
59
60
|
}
|
|
60
61
|
const totalItems = numberOfTotalItems.submitted + numberOfTotalItems.inCart;
|
|
61
|
-
if (totalItems >
|
|
62
|
-
|
|
63
|
-
const extraLabel = extraItems === 1 ? "item" : "items";
|
|
64
|
-
toast(`You can only choose one ${targetCategory.name}. Please remove extra ${targetCategory.name} from cart to continue.`);
|
|
62
|
+
if (totalItems > maxItems) {
|
|
63
|
+
toast(`You can only choose up to ${formatCountLabel(maxItems)} of ${targetCategory.name}. Please remove extra ${targetCategory.name} from cart to continue.`);
|
|
65
64
|
return false;
|
|
66
65
|
}
|
|
67
|
-
if (totalItems <
|
|
68
|
-
toast(`Please add
|
|
66
|
+
if (totalItems < minItems) {
|
|
67
|
+
toast(`Please add at least ${formatCountLabel(minItems)} of ${targetCategory.name} to cart to continue.`);
|
|
69
68
|
return false;
|
|
70
69
|
}
|
|
71
70
|
return true;
|