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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
import Menu from '@/lib/auth/components/Menu';
import { useEffect, useState } from 'react';
import * as XLSX from 'xlsx';
import GenerateRecomendations from '../api/recomendation';
import axios from 'axios';
import { Button, Link } from '@chakra-ui/react';
import Image from 'next/image';
import BottomPopup from '@/core/components/elements/Popup/BottomPopup';
import formatCurrency from '~/libs/formatCurrency';
const exportToExcel = (data) => {
const worksheet = XLSX.utils.json_to_sheet(data);
const workbook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(workbook, worksheet, 'Results');
// Generate Excel file and trigger download in the browser
XLSX.writeFile(workbook, 'ProductRecommendations.xlsx');
};
const ProductsRecomendation = ({ id }) => {
const [excelData, setExcelData] = useState(null);
const [products, setProducts] = useState([]);
const [isLoading, setIsLoading] = useState(false);
const [isOpen, setIsOpen] = useState(false);
const [variantsOpen, setVariantsOpen] = useState([]);
const [otherRec, setOtherRec] = useState(false);
const mappingProducts = async ({ index, product, result, variants }) => {
const resultMapping = {
index: index,
product: product,
result: {
id: result?.id || '-',
name: result?.nameS || '-',
code: result?.defaultCodeS || '-',
},
};
return resultMapping;
};
const searchRecomendation = async ({ product, index, operator = 'AND' }) => {
let variants = [];
let resultMapping = {};
const searchProduct = await axios.post(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/generate-recomendation?q=${product}&op=${operator}`
);
if (operator === 'AND') {
const result =
searchProduct.data.response.numFound > 0
? searchProduct.data.response.products[0]
: null;
if (result?.variantTotal > 1) {
const searchVariants = await axios.post(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/product-detail?id=${result.id}`
);
variants = searchVariants.data[0].variants;
}
resultMapping = await mappingProducts({
index,
product,
result,
variants,
});
} else {
const result =
searchProduct.data.response.numFound > 0
? searchProduct.data.response.products
: null;
result.map((item) => {
if (item.variantTotal > 1) {
const searchVariants = axios.post(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/product-detail?id=${item.id}`
);
variants = searchVariants.data[0].variants;
}
});
// console.log('ini result', searchProduct.data.response);
}
return resultMapping;
};
const handleSubmit = async (e) => {
setIsLoading(true);
e.preventDefault();
if (excelData) {
const results = await Promise.all(
excelData.map(async (row, i) => {
const index = i + 1;
const product = row['product'];
return await generateProductRecomendation({ product, index });
})
);
const formattedResults = results.map((result) => {
const formattedResult = { product: result.product };
for (let i = 0; i <= 5; i++) {
formattedResult[`recomendation product ${i + 1} - code`] = result.result[i] == null ? '-' : result.result[i]?.code;
formattedResult[`recomendation product ${i + 1} - name`] = result.result[i] == null ? '-' : result.result[i]?.name ;
}
return formattedResult;
});
exportToExcel(formattedResults);
setProducts(results);
setIsLoading(false);
} else {
setIsLoading(false);
// console.log('No excel data available');
}
};
const handleFileChange = (e) => {
setIsLoading(true);
const file = e.target.files[0];
const reader = new FileReader();
reader.onload = (event) => {
const data = new Uint8Array(event.target.result);
const workbook = XLSX.read(data, { type: 'array' });
const firstSheetName = workbook.SheetNames[0];
const worksheet = workbook.Sheets[firstSheetName];
const jsonData = XLSX.utils.sheet_to_json(worksheet);
setExcelData(jsonData);
// console.log('ini json data', jsonData);
setIsLoading(false);
};
reader.readAsArrayBuffer(file);
};
const handleVariantsOpen = ({ variants }) => {
setVariantsOpen(variants);
setIsOpen(true);
};
const hadnliChooseVariants = ({ id, variant }) => {
let foundIndex = products.findIndex((item) => item.result.id === id);
if (foundIndex !== -1) {
products[foundIndex].result.code = variant?.code;
products[foundIndex].result.name = variant?.name;
} else {
// console.log('Data not found.');
}
setIsOpen(false);
};
const handlingOtherRec = ({ product }) => {
// console.log('ini product', product);
const result = async () =>
await searchRecomendation({ product, index: 0, operator: 'OR' });
result();
};
const generateProductRecomendation = async ({ product, index }) => {
let variants = [];
let resultMapping = {};
const searchProduct = await axios.post(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/generate-recomendation?q=${product}&op=AND`
);
const searchProductOR = await axios.post(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/generate-recomendation?q=${product}&op=OR`
);
const resultAND =
searchProduct.data.response.numFound > 0
? searchProduct.data.response.docs[0]
: null; // hasil satu
const resultOR =
searchProductOR.data.response.numFound > 0
? searchProductOR.data.response.docs
: []; // hasil 5
resultMapping = {
index: index,
product: product,
result: {},
};
// Add resultAND to resultMapping if it exists
resultMapping.result[0] = resultAND
? {
id: resultAND?.id || '-',
name: resultAND?.nameS || '-',
code: resultAND?.defaultCodeS || '-',
}
: null;
// Add resultOR to resultMapping
if (resultOR.length > 0) {
resultOR.forEach((item, idx) => {
resultMapping.result[idx + 1] = {
id: item?.id || '-',
name: item?.nameS || '-',
code: item?.defaultCodeS || '-',
};
});
} else {
for (let i = 0; i <= 5; i++) {
resultMapping.result[i + 1] = null;
}
}
return resultMapping;
};
return (
<>
<BottomPopup
active={isOpen}
close={() => setIsOpen(false)}
className='w-full md:!w-[60%]'
title='List Variants'
>
<div className='container'>
<table className='table-data'>
<thead>
<tr>
<th>Part Number</th>
<th>Variants </th>
<th>Harga </th>
<th></th>
</tr>
</thead>
<tbody>
{variantsOpen?.map((variant, index) => (
<tr key={index}>
<td>{variant.code}</td>
<td>{variant.attributes.join(', ') || '-'}</td>
<td>
{variant.price.discountPercentage > 0 && (
<div className='flex items-center gap-x-1'>
<div className={style['disc-badge']}>
{Math.floor(variant.price.discountPercentage)}%
</div>
<div className={style['disc-price']}>
Rp {formatCurrency(variant.price.price)}
</div>
</div>
)}
{variant.price.priceDiscount > 0 &&
`Rp ${formatCurrency(variant.price.priceDiscount)}`}
{variant.price.priceDiscount === 0 && '-'}
</td>
<td>
<Button
size='sm'
w='100%'
onClick={() =>
hadnliChooseVariants({
id: variant.parent.id,
variant: variant,
})
}
>
Pilih
</Button>
</td>
</tr>
))}
</tbody>
</table>
</div>
</BottomPopup>
<BottomPopup
active={otherRec}
close={() => setOtherRec(false)}
className='w-full md:!w-[60%]'
title='Other Recomendations'
>
<div className='container'>
<table className='table-data'>
<thead>
<tr>
<th>Product</th>
<th>Item Code </th>
<th>Description</th>
<th>Brand</th>
<th>Price</th>
<th>Image</th>
</tr>
</thead>
<tbody>
{variantsOpen?.map((variant, index) => (
<tr key={index}>
<td>{variant.code}</td>
<td>{variant.attributes.join(', ') || '-'}</td>
<td>
{variant.price.discountPercentage > 0 && (
<div className='flex items-center gap-x-1'>
<div className={style['disc-badge']}>
{Math.floor(variant.price.discountPercentage)}%
</div>
<div className={style['disc-price']}>
Rp {formatCurrency(variant.price.price)}
</div>
</div>
)}
{variant.price.priceDiscount > 0 &&
`Rp ${formatCurrency(variant.price.priceDiscount)}`}
{variant.price.priceDiscount === 0 && '-'}
</td>
<td>
<Button
size='sm'
w='100%'
onClick={() =>
hadnliChooseVariants({
id: variant.parent.id,
variant: variant,
})
}
>
Pilih
</Button>
</td>
</tr>
))}
</tbody>
</table>
</div>
</BottomPopup>
<div className='container mx-auto flex py-10'>
<div className='w-3/12 pr-4'>
<Menu />
</div>
<div className='w-9/12 p-4 bg-white border border-gray_r-6 rounded'>
<div className='flex mb-6 items-center justify-between'>
<h1 className='text-title-sm font-semibold'>
Generate Recomendation
</h1>
</div>
<div className='group'>
<h1 className='text-sm font-semibold'>Contoh Excel</h1>
<table className='table-data'>
<thead>
<tr>
<th>Product</th>
<th>Qty</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tekiro Long Nose Pliers Tang Lancip</td>
<td>10</td>
</tr>
</tbody>
</table>
</div>
<div className='container mx-auto mt-8'>
<div className='mb-4'>
<label htmlFor='excelFile' className='text-sm font-semibold'>
Upload Excel File (.xlsx)
</label>
<input
type='file'
id='excelFile'
accept='.xlsx'
onChange={handleFileChange}
className='mt-1 p-2 block w-full border border-gray-300 rounded-md focus:outline-none focus:border-blue-500'
/>
</div>
<Button
colorScheme='red'
w='l'
isDisabled={isLoading}
onClick={handleSubmit}
>
Generate
</Button>
</div>
{/* <div className='grup mt-8'>
{products && products.length > 0 && (
<div className='group'>
<table className='table-data'>
<thead>
<tr>
<th>Product</th>
<th>Item Code </th>
<th>Description</th>
<th>Brand</th>
<th>Price</th>
<th>Image</th>
<th>lainnya</th>
</tr>
</thead>
<tbody>
{products.map((product, index) => (
<tr key={index}>
<td>{product?.product}</td>
<td>
{product?.result?.code === '-' &&
product.result.variantTotal > 1 && (
<Button
border='2px'
borderColor='yellow.300'
size='sm'
onClick={() =>
handleVariantsOpen({
variants: product?.result?.variants,
})
}
>
Lihat Variants
</Button>
)}
{product?.result.code !== '-' &&
product?.result.variantTotal > 1 ? (
<>
{product?.result.code}
<Button
variant='link'
colorScheme='yellow'
size='sm'
onClick={() =>
handleVariantsOpen({
variants: product?.result?.variants,
})
}
>
Variants lainya
</Button>
</>
) : (
<>{product?.result.code}</>
)}
</td>
<td>{product?.result.name}</td>
<td>{product?.result.manufacture}</td>
<td>
{product?.result.price !== '-'
? `Rp ${formatCurrency(product?.result.price)}`
: '-'}
</td>
<td>
{product?.result.image !== '-' ? (
<Image
src={product?.result.image}
width={100}
height={100}
alt={product?.result.name}
/>
) : (
'-'
)}
</td>
<td>
{' '}
<Button
border='2px'
borderColor='red.500'
size='sm'
onClick={() =>
handlingOtherRec({ product: product.product })
}
>
Other
</Button>
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</div> */}
</div>
</div>
</>
);
};
export default ProductsRecomendation;
|