summaryrefslogtreecommitdiff
path: root/src-migrate/modules/product-promo/components/Section.tsx
blob: b6753be7dcee0451ebe97041234043b19ad77bae (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
import style from "../styles/section.module.css"

import React from 'react'
import { useQuery } from 'react-query'
import { Button, Skeleton } from '@chakra-ui/react'

import ProductPromoCard from './Card'
import { IPromotion } from '~/types/promotion'
import ProductPromoModal from "./Modal"
import { useModalStore } from "../stores/useModalStore"
import clsxm from "~/libs/clsxm"

type Props = {
  productId: number
}

const ProductPromoSection = ({ productId }: Props) => {
  const promotionsQuery = useQuery(
    `promotions-highlight:${productId}`,
    async () => await fetch(`/api/product-variant/${productId}/promotion/highlight`).then((res) => res.json()) as { data: IPromotion[] },
  )

  const promotions = promotionsQuery.data

  const { openModal } = useModalStore()

  return (
    <div className='w-full'>
      <ProductPromoModal />

      {promotions?.data && promotions?.data.length > 0 && (
        <div className={style.titleWrapper}>
          <span className={style.title}>Promo Tersedia</span>
          <Button colorScheme="yellow" type='button' onClick={() => openModal(productId)}>
            Lihat Semua
          </Button>
        </div>
      )}

      <Skeleton
        isLoaded={promotionsQuery.isSuccess}
        className={clsxm(
          "flex gap-x-4 overflow-x-auto px-4 md:px-0", {
          "min-h-[340px]": promotions?.data && promotions?.data.length > 0
        })}
      >
        {promotions?.data.map((promotion) => (
          <div key={promotion.id} className="min-w-[400px] max-w-[400px]">
            <ProductPromoCard promotion={promotion} />
          </div>
        ))}
      </Skeleton>
    </div>
  )
}

export default ProductPromoSection