summaryrefslogtreecommitdiff
path: root/src-migrate/modules/product-detail/components/ProductComparisonModal.tsx
blob: f2d7ca570e6f9b29254420a087a6087a0dc7d38d (plain)
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
import React, { useEffect, useState, useRef } from 'react';
import {
  Modal,
  ModalOverlay,
  ModalContent,
  ModalHeader,
  ModalBody,
  ModalCloseButton,
  Button,
  Text,
  Box,
  Badge,
  Grid,
  GridItem,
  Image,
  Input,
  InputGroup,
  InputLeftElement,
  VStack,
  HStack,
  IconButton,
  Flex,
  Icon,
  Spinner,
  List,
  ListItem,
  useToast,
  Select,
  useOutsideClick
} from '@chakra-ui/react';

import { Search, Trash2 } from 'lucide-react';

// --- HELPER FORMATTING ---
const formatPrice = (price: number) => {
  return new Intl.NumberFormat('id-ID', {
    style: 'currency',
    currency: 'IDR',
    minimumFractionDigits: 0,
  }).format(price);
};

const renderSpecValue = (val: any) => {
  if (!val || val === '-') return '-';
  return String(val).replace(/<[^>]*>?/gm, '');
};

type Props = {
  isOpen: boolean;
  onClose: () => void;
  mainProduct: any;
  selectedVariant: any;
};

const ProductComparisonModal = ({ isOpen, onClose, mainProduct, selectedVariant }: Props) => {
  const toast = useToast();

  // --- STATE ---
  const [products, setProducts] = useState<(any | null)[]>([null, null, null, null]);
  const [specsMatrix, setSpecsMatrix] = useState<any[]>([]);
  const [isLoadingMatrix, setIsLoadingMatrix] = useState(false);

  // Search State
  const [activeSearchSlot, setActiveSearchSlot] = useState<number | null>(null);
  const [searchQuery, setSearchQuery] = useState('');
  const [searchResults, setSearchResults] = useState<any[]>([]);
  const [isSearching, setIsSearching] = useState(false);

  // --- REF & OUTSIDE CLICK ---
  const searchWrapperRef = useRef<HTMLDivElement>(null);

  useOutsideClick({
    ref: searchWrapperRef,
    handler: () => {
      if (activeSearchSlot !== null) {
        setActiveSearchSlot(null);
        setSearchResults([]);
      }
    },
  });

  // ===========================================================================
  // 1. LOGIC UTAMA: ISI SLOT 1
  // ===========================================================================
  useEffect(() => {
    if (isOpen && mainProduct) {
      let activeItem = selectedVariant;

      if (!activeItem && mainProduct.variants && mainProduct.variants.length > 0) {
        activeItem = mainProduct.variants[0];
      }
      if (!activeItem) {
        activeItem = mainProduct;
      }

      const targetId = activeItem.id;
      const displayCode = activeItem.default_code || activeItem.code || activeItem.sku || mainProduct.default_code || mainProduct.code;

      const variantOptions = mainProduct.variants?.map((v: any) => ({
        id: v.id,
        code: v.default_code || v.code || v.sku,
        name: v.name || v.displayName || v.display_name,
        price: v.price?.price || v.price || 0,
        image: v.image
      })) || [];

      if (variantOptions.length === 0) {
        variantOptions.push({
          id: targetId,
          code: displayCode,
          name: mainProduct.name,
          price: activeItem.price?.price || activeItem.price || 0,
          image: activeItem.image || mainProduct.image
        });
      }

      const displayName = activeItem.name || activeItem.displayName || mainProduct.name;

      const productSlot1 = {
        id: targetId,
        sku: targetId,
        realCode: displayCode,
        name: displayName,
        price: activeItem.price?.price || activeItem.price || mainProduct.lowest_price?.price || 0,
        image: activeItem.image || mainProduct.image,
        variants: variantOptions
      };

      setProducts((prev) => {
        const newSlots = [...prev];
        if (!newSlots[0] || String(newSlots[0].id) !== String(targetId)) {
          newSlots[0] = productSlot1;
        }
        return newSlots;
      });
    }
  }, [isOpen, mainProduct, selectedVariant]);

  // ===========================================================================
  // 2. FETCH SPECS
  // ===========================================================================
  useEffect(() => {
    const validProducts = products.filter(p => p !== null);
    if (!isOpen || validProducts.length === 0) return;

    const fetchSpecs = async () => {
      setIsLoadingMatrix(true);
      try {
        const allSkus = validProducts.map(p => p.sku).join(',');
        const mainSku = validProducts[0]?.sku;

        const res = await fetch(`/api/magento-product?skus=${allSkus}&main_sku=${mainSku}`);
        if (!res.ok) return;

        const data = await res.json();
        if (data.specsMatrix) {
          setSpecsMatrix(data.specsMatrix);
        }
      } catch (err) {
        console.error(err);
      } finally {
        setIsLoadingMatrix(false);
      }
    };

    fetchSpecs();
  }, [products, isOpen]);

  // ===========================================================================
  // 3. SEARCH LOGIC
  // ===========================================================================
  useEffect(() => {
    const delayDebounceFn = setTimeout(async () => {
      if (searchQuery.length > 0 && searchQuery.length < 3) {
        setSearchResults([]);
        return;
      }

      if (activeSearchSlot === null) return;

      const attrSetId = selectedVariant?.attribute_set_id || mainProduct?.attribute_set_id;

      if (!attrSetId) {
        console.warn("Search dibatalkan: Produk utama tidak memiliki attribute_set_id");
        setSearchResults([]);
        setIsSearching(false);
        return;
      }

      setIsSearching(true);
      try {
        const queryParam = searchQuery === '' ? '*' : searchQuery;

        const params = new URLSearchParams({
          source: 'compare',
          q: queryParam,
          limit: '20',
          fq: `attribute_set_id_i:${attrSetId}`
        });

        const res = await fetch(`/api/shop/search?${params.toString()}`);

        if (res.ok) {
          const data = await res.json();
          setSearchResults(data.response?.products || []);
        } else {
          setSearchResults([]);
        }
      } catch (e) {
        setSearchResults([]);
      } finally {
        setIsSearching(false);
      }
    }, 500);

    return () => clearTimeout(delayDebounceFn);
  }, [searchQuery, mainProduct, selectedVariant, activeSearchSlot]);

  // ===========================================================================
  // 4. HANDLERS
  // ===========================================================================
  const handleVariantChange = (slotIndex: number, newId: string) => {
    const currentProduct = products[slotIndex];
    if (!currentProduct || !currentProduct.variants) return;

    const selectedVar = currentProduct.variants.find((v: any) => String(v.id) === String(newId));

    if (selectedVar) {
      const newProducts = [...products];
      newProducts[slotIndex] = {
        ...currentProduct,
        id: selectedVar.id,
        sku: selectedVar.id,
        name: selectedVar.name,
        realCode: selectedVar.code,
        price: selectedVar.price,
        image: selectedVar.image
      };
      setProducts(newProducts);
    }
  };

  const handleAddProduct = async (searchItem: any, slotIndex: number) => {
    if (products.find(p => p && String(p.id) === String(searchItem.id))) {
      toast({ title: "Produk sudah ada", status: "warning", position: "top" });
      return;
    }

    const idToAdd = searchItem.id;
    const codeToAdd = searchItem.defaultCode || searchItem.default_code || searchItem.code;
    const nameToAdd = searchItem.displayName || searchItem.name;
    const imageToAdd = searchItem.image || searchItem.imageS || searchItem.image_s;
    const priceToAdd = searchItem.lowestPrice?.price || searchItem.priceTier1V2F || searchItem.price || 0;

    let parentId = searchItem.templateId ||
      searchItem.templateIdI ||
      searchItem.template_id_i ||
      searchItem.template_id;

    if (!parentId) {
      try {
        const checkParams = new URLSearchParams({
          source: 'upsell',
          q: '*:*',
          fq: `id:${idToAdd}`
        });

        const checkRes = await fetch(`/api/shop/search?${checkParams.toString()}`);
        if (checkRes.ok) {
          const checkData = await checkRes.json();
          const freshItem = checkData.response?.products?.[0];

          if (freshItem) {
            const serverReturnedId = freshItem.id;
            if (String(serverReturnedId) !== String(idToAdd)) {
              parentId = serverReturnedId;
            } else {
              parentId = freshItem.templateId || freshItem.templateIdI || idToAdd;
            }
          }
        }
      } catch (e) {
        console.error("Gagal validasi parent:", e);
        parentId = idToAdd;
      }
    }

    const newProductEntry = {
      id: idToAdd,
      sku: idToAdd,
      realCode: codeToAdd,
      name: nameToAdd,
      price: priceToAdd,
      image: imageToAdd,
      variants: [{
        id: idToAdd,
        code: codeToAdd,
        name: nameToAdd,
        price: priceToAdd,
        image: imageToAdd
      }]
    };

    setProducts((prev) => {
      const newSlots = [...prev];
      newSlots[slotIndex] = newProductEntry;
      return newSlots;
    });

    setActiveSearchSlot(null);
    setSearchQuery('');
    setSearchResults([]);

    if (parentId) {
      try {
        const params = new URLSearchParams({
          source: 'upsell',
          limit: '100',
          fq: `template_id_i:${parentId}`
        });

        const res = await fetch(`/api/shop/search?${params.toString()}`);

        if (res.ok) {
          const data = await res.json();
          const siblings = data.response?.products || [];

          if (siblings.length > 0) {
            const allVariants = siblings.map((s: any) => ({
              id: s.variantId || s.productIdI || s.id,
              code: s.defaultCode || s.default_code || s.code,
              name: s.displayName || s.name || s.nameS,
              price: s.lowestPrice?.price || s.priceTier1V2F || 0,
              image: s.image || s.imageS
            }));

            allVariants.sort((a: any, b: any) =>
              String(a.code).localeCompare(String(b.code))
            );

            setProducts((prev) => {
              const updated = [...prev];
              if (updated[slotIndex] && String(updated[slotIndex].id) === String(idToAdd)) {
                updated[slotIndex] = {
                  ...updated[slotIndex],
                  variants: allVariants
                };
              }
              return updated;
            });
          }
        }
      } catch (error) {
        console.error("Gagal fetch variant lain:", error);
      }
    }
  };

  const handleRemoveProduct = (index: number) => {
    const newProducts = [...products];
    newProducts[index] = null;
    setProducts(newProducts);
    if (newProducts.every(p => p === null)) setSpecsMatrix([]);
  };

  return (
    <Modal isOpen={isOpen} onClose={onClose} size="6xl" scrollBehavior="inside">
      <ModalOverlay />
      <ModalContent height="90vh">
        <ModalHeader borderBottom="1px solid #eee" pb={2}>
          <HStack spacing={3}>
            <Text fontSize="xl" fontWeight="bold">Bandingkan Produk</Text>
            <Badge colorScheme="red" variant="solid" borderRadius="full" px={2}>
              {products.filter(p => p !== null).length} Item
            </Badge>
          </HStack>
          <Text fontSize="sm" color="gray.500" fontWeight="normal" mt={1}>
            Detail Spesifikasi Produk yang kamu pilih
          </Text>
        </ModalHeader>
        <ModalCloseButton />

        <ModalBody p={6} bg="white">
          <Grid templateColumns="200px repeat(4, 1fr)" gap={4}>
            <GridItem />
            {products.map((product, index) => (
              <GridItem key={index} position="relative" minW="0">
                {product ? (
                  <VStack align="stretch" spacing={3} h="100%">
                    {index !== 0 && (
                      <IconButton
                        aria-label="Hapus" icon={<Trash2 size={16} />}
                        size="xs" position="absolute" top={-2} right={-2}
                        colorScheme="red" onClick={() => handleRemoveProduct(index)} zIndex={2}
                      />
                    )}
                    <Box h="160px" display="flex" alignItems="center" justifyContent="center" bg="gray.50" borderRadius="md" p={2}>
                      <Image
                        src={product.image || '/images/no-image-compare.svg'}
                        alt={product.name} maxH="100%" objectFit="contain"
                        onError={(e) => { (e.target as HTMLImageElement).src = '/images/no-image-compare.svg'; }}
                      />
                    </Box>
                    <Box>
                      <Text color="red.600" fontWeight="bold" fontSize="md">
                        {product.price > 0 ? formatPrice(product.price) : 'Hubungi Admin'}
                      </Text>
                      <Text fontSize="xs" fontWeight="bold" noOfLines={3} h="45px" title={product.name} mb={2}>
                        {product.name}
                      </Text>
                    </Box>

                    <Select
                      size="sm" borderRadius="md" fontSize="xs"
                      value={product.id}
                      onChange={(e) => handleVariantChange(index, e.target.value)}
                      isDisabled={false} bg="white"
                    >
                      {product.variants && product.variants.map((v: any) => (
                        <option key={v.id} value={v.id}>{v.code}</option>
                      ))}
                    </Select>

                    <HStack spacing={2}>
                      <IconButton
                        aria-label="Cart"
                        icon={<Image src="/images/keranjang-compare.svg" w="15px" h="15px" objectFit="contain" />}
                        variant="outline"
                        colorScheme="red"
                        size="sm"
                      />
                      <Button as="a" href={`/product/${product.id}`} target="_blank" colorScheme="red" size="sm" flex={1} fontSize="xs">
                        Beli Sekarang
                      </Button>
                    </HStack>
                  </VStack>
                ) : (
                  <VStack align="stretch" spacing={3} h="100%" position="relative">
                    <Box position="relative" w="100%" ref={activeSearchSlot === index ? searchWrapperRef : null}>
                      <InputGroup size="sm">
                        <InputLeftElement pointerEvents="none"><Icon as={Search} color="gray.300" /></InputLeftElement>
                        <Input
                          placeholder="Cari Produk..." borderRadius="md"
                          value={activeSearchSlot === index ? searchQuery : ''}
                          onFocus={() => { setActiveSearchSlot(index); setSearchQuery(''); }}
                          onChange={(e) => setSearchQuery(e.target.value)}
                        />
                      </InputGroup>

                      {activeSearchSlot === index && (
                        <Box position="absolute" top="35px" left={0} right={0} bg="white" boxShadow="lg" zIndex={10} borderRadius="md" border="1px solid" borderColor="gray.200" maxH="250px" overflowY="auto">
                          {!selectedVariant?.attribute_set_id && !mainProduct?.attribute_set_id ? (
                            <Box p={4} fontSize="xs" color="orange.600" textAlign="center" bg="orange.50">
                              <Text fontWeight="bold" mb={1}>Perbandingan Tidak Tersedia</Text>
                              <Text>Produk utama tidak memiliki data kategori yang valid untuk dibandingkan.</Text>
                            </Box>
                          ) : (
                            <>
                              {isSearching ? (
                                <Box p={4} textAlign="center"><Spinner size="sm" color="red.500" /></Box>
                              ) : searchResults.length > 0 ? (
                                <List spacing={0}>
                                  {searchResults.map((res) => (
                                    <ListItem
                                      key={res.id}
                                      p={3}
                                      borderBottom="1px solid #f0f0f0"
                                      _hover={{ bg: 'red.50', cursor: 'pointer' }}
                                      onClick={() => handleAddProduct(res, index)}
                                    >
                                      <Flex align="flex-start" gap={3}>
                                        <Image
                                          src={res.image || '/images/no-image-compare.svg'}
                                          boxSize="40px"
                                          objectFit="contain"
                                          onError={(e) => { (e.target as HTMLImageElement).src = '/images/no-image-compare.svg'; }}
                                          flexShrink={0}
                                          mt={1}
                                        />
                                        <Box flex={1} w="0">
                                          <Text
                                            fontSize="xs"
                                            fontWeight="bold"
                                            noOfLines={2}
                                            lineHeight="shorter"
                                            whiteSpace="normal"
                                            mb={1}
                                            title={res.displayName || res.name}
                                          >
                                            {res.displayName || res.name}
                                          </Text>
                                          <Text fontSize="xs" color="red.500" fontWeight="bold">
                                            {formatPrice(res.lowestPrice?.price || 0)}
                                          </Text>
                                        </Box>
                                      </Flex>
                                    </ListItem>
                                  ))}
                                </List>
                              ) : (
                                <Box p={3} fontSize="xs" color="gray.500" textAlign="center">
                                  {searchQuery === '' ? 'Menampilkan rekomendasi...' : 'Produk tidak ditemukan.'}
                                </Box>
                              )}
                            </>
                          )}
                        </Box>
                      )}
                    </Box>

                    <Flex
                      direction="column"
                      align="center"
                      justify="center"
                      flex={1}
                      bg="gray.50"
                      borderRadius="md"
                    >
                      <Image
                        src="/images/no-image-compare.svg"
                        alt="Empty Slot"
                        boxSize="125px"
                        mb={2}
                        opacity={0.6}
                      />
                      <Text fontSize="xs" color="gray.500" textAlign="center">
                        Produk Belum Ditambahkan
                      </Text>
                    </Flex>
                  </VStack>
                )}
              </GridItem>
            ))}

            <GridItem colSpan={5} py={6} display="flex" alignItems="center" justifyContent="space-between">
              <Box borderBottom="2px solid" borderColor="gray.100" pb={2} width="100%">
                <HStack>
                  <Text fontSize="lg" fontWeight="bold">Spesifikasi Teknis</Text>
                  {isLoadingMatrix && specsMatrix.length > 0 && (
                    <HStack spacing={2}>
                      <Spinner size="xs" color="red.500" />
                      <Text fontSize="xs" color="gray.500">Updating...</Text>
                    </HStack>
                  )}
                </HStack>
              </Box>
            </GridItem>

            {isLoadingMatrix && specsMatrix.length === 0 ? (
              <GridItem colSpan={5} textAlign="center" py={10}>
                <Spinner color="red.500" thickness="4px" size="xl" />
                <Text mt={2} color="gray.500">Memuat data...</Text>
              </GridItem>
            ) : specsMatrix.length > 0 ? (
              specsMatrix.map((row, rowIndex) => (
                <React.Fragment key={row.code || rowIndex}>
                  <GridItem
                    py={3} px={2}
                    borderBottom="1px solid" borderColor="gray.100"
                    bg={rowIndex % 2 !== 0 ? "white" : "gray.50"}
                    display="flex" alignItems="center"
                    opacity={isLoadingMatrix ? 0.6 : 1}
                    transition="opacity 0.2s"
                  >
                    <Text fontWeight="bold" fontSize="sm" color="gray.700">{row.label}</Text>
                  </GridItem>

                  {products.map((product, colIndex) => {
                    const val = product ? (row.values[String(product.sku)] || '-') : '';
                    return (
                      <GridItem
                        key={`${row.code}-${colIndex}`}
                        py={3} px={2}
                        borderBottom="1px solid" borderColor="gray.100"
                        bg={rowIndex % 2 !== 0 ? "white" : "gray.50"}
                        display="flex" alignItems="center" justifyContent="center" textAlign="center"
                        opacity={isLoadingMatrix ? 0.6 : 1}
                        transition="opacity 0.2s"
                      >
                        {isLoadingMatrix && product && !row.values[String(product.sku)] ? (
                          <Spinner size="xs" color="gray.400" />
                        ) : (
                          <Text fontSize="sm" color="gray.600">{renderSpecValue(val)}</Text>
                        )}
                      </GridItem>
                    );
                  })}
                </React.Fragment>
              ))
            ) : (
              <GridItem colSpan={5} py={10} textAlign="center" color="gray.500" bg="gray.50">
                <Text>Data spesifikasi belum tersedia untuk produk ini.</Text>
              </GridItem>
            )}
          </Grid>
        </ModalBody>
      </ModalContent>
    </Modal>
  );
};

export default ProductComparisonModal;