-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfunctions.js
More file actions
226 lines (193 loc) · 5.71 KB
/
functions.js
File metadata and controls
226 lines (193 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
export const getRandomItemOfArray = (arr) => {
const randomIndex = Math.floor(Math.random() * arr.length);
return arr[randomIndex];
};
export const getRandomValueWithChance = (obj) => {
const cumulativeChances = [];
let cumulativeSum = 0;
// Calculate cumulative chances
for (const item of obj) {
cumulativeSum += item.chance;
cumulativeChances.push({ value: item.value, cumulative: cumulativeSum });
}
// Generate a random number between 0 and the sum of all chances
const randomNum = Math.random() * cumulativeSum;
// Determine which value corresponds to the generated random number
for (const item of cumulativeChances) {
if (randomNum <= item.cumulative) {
return item.value;
}
}
};
export const generateDiscountCode = (length) => {
const characters = "ABCDEFGHJKLMNPQRSTUVWXYZ23456789";
let result = "";
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * characters.length));
}
return result;
};
export const addMinutesToIsoTime = (minutesFromNow) => {
const date = new Date();
date.setMinutes(date.getMinutes() + minutesFromNow);
return date.toISOString();
};
export const expiresIn = (timestamp) => {
const now = new Date();
const targetDate = new Date(timestamp);
const diffMs = targetDate - now; // Difference in milliseconds
if (diffMs < 0) {
return ""; // The time has already passed
}
const diffMinutes = Math.floor(diffMs / 60000); // Convert milliseconds to minutes
const diffHours = Math.floor(diffMinutes / 60); // Convert minutes to hours
if (diffHours > 0) {
return `expires in ${diffHours}${diffHours === 1 ? " hour" : " hours"}`;
}
if (diffMinutes > 0) {
return `expires in ${diffMinutes}${diffMinutes === 1 ? " minute" : " minutes"}`;
}
return ""; // Less than a minute
};
export const resolveCreemApiBaseUrl = (apiKey) => {
if (apiKey.startsWith("creem_test_")) {
return "https://test-api.creem.io";
}
if (apiKey.startsWith("creem_")) {
return "https://api.creem.io";
}
return null;
};
export const isNonEmptyArray = (value) =>
Array.isArray(value) && value.length > 0;
export const mapProducts = (productsResponse) =>
Array.isArray(productsResponse?.items)
? productsResponse.items.map((product) => ({
id: product.id,
name: product.name,
}))
: [];
export const mapProductIds = (productsResponse) =>
mapProducts(productsResponse).map((product) => product.id);
export const getProductBundleKey = (name) => {
const trimmed = name.trim();
const match = trimmed.match(/^(.+?)\s*\([^)]+\)\s*$/);
return match ? match[1].trim() : trimmed;
};
export const groupProductsIntoBundles = (products) => {
const bundles = new Map();
for (const product of products) {
const key = getProductBundleKey(product.name);
if (!bundles.has(key)) {
bundles.set(key, { key, productIds: [] });
}
bundles.get(key).productIds.push(product.id);
}
return Array.from(bundles.values());
};
export const selectRandomBundleProductIds = (products, bundleCount) => {
const bundles = groupProductsIntoBundles(products);
const selectedBundles = [];
const remainingBundles = [...bundles];
const count = Math.min(bundleCount, remainingBundles.length);
for (let i = 0; i < count; i++) {
const index = Math.floor(Math.random() * remainingBundles.length);
selectedBundles.push(remainingBundles[index]);
remainingBundles.splice(index, 1);
}
return selectedBundles.flatMap((bundle) => bundle.productIds);
};
export const getNextPage = (pagination, currentPage) => {
const nextPage = pagination?.next_page;
return nextPage === null || nextPage === undefined
? null
: nextPage || currentPage + 1;
};
export const toStoredDiscountJson = ({
discountId,
name,
code,
amount,
expiresAt,
appliesToProducts,
}) => ({
data: {
id: discountId ? String(discountId) : "",
attributes: {
name,
code,
amount,
expires_at: expiresAt,
applies_to_products: appliesToProducts,
},
},
});
export const buildPercentageDiscountPayload = ({
name,
code,
amount,
expiresAt,
appliesToProducts,
}) => ({
name,
code,
type: "percentage",
percentage: amount,
expiry_date: expiresAt,
duration: "once",
applies_to_products: appliesToProducts,
});
const buildAuthHeaders = (apiKey) => ({
"x-api-key": apiKey,
});
const readJsonResponse = async (response) => {
const body = await response.json();
return { response, body };
};
export const fetchAllCreemProducts = async ({
fetchImpl,
apiBaseUrl,
apiKey,
}) => {
let allProducts = [];
let currentPage = 1;
while (currentPage !== null) {
const response = await fetchImpl(
`${apiBaseUrl}/v1/products/search?page_number=${currentPage}&page_size=50`,
{
method: "GET",
headers: buildAuthHeaders(apiKey),
},
);
if (!response.ok) {
const errorBody = await response.text();
throw new Error(
`Failed to fetch products: ${response.status} ${response.statusText} ${errorBody}`,
);
}
const data = await response.json();
allProducts.push(...mapProducts(data));
currentPage = getNextPage(data.pagination, currentPage);
}
return allProducts;
};
export const fetchAllCreemProductIds = async (params) => {
const products = await fetchAllCreemProducts(params);
return products.map((product) => product.id);
};
export const createCreemDiscount = async ({
fetchImpl,
apiBaseUrl,
apiKey,
payload,
}) => {
const response = await fetchImpl(`${apiBaseUrl}/v1/discounts`, {
method: "POST",
headers: {
...buildAuthHeaders(apiKey),
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
return readJsonResponse(response);
};