summaryrefslogtreecommitdiff
path: root/src/lib/home/components/PromotionProgram.jsx
blob: 99258d94025a5e4dc49e11822724c5ad8f10e9e5 (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
import Link from '@/core/components/elements/Link/Link'
import Image from 'next/image'
import { bannerApi } from '@/api/bannerApi';
import useDevice from '@/core/hooks/useDevice'
import { Swiper, SwiperSlide } from 'swiper/react';
const { useQuery } = require('react-query')
const BannerSection = () => {
  const promotionProgram = useQuery('promotionProgram', bannerApi({ type: 'banner-promotion' }));
  const { isMobile, isDesktop } = useDevice()

  return (
    <div className='px-4 sm:px-0'>
      <div className='flex justify-between items-center mb-4 '>
        <div className='font-semibold sm:text-h-lg'>Promo Tersedia</div>
        {isDesktop && (
          <Link href='/shop/promo' className='!text-red-500 font-semibold'>
          Lihat Semua
        </Link>
        )}
        {isMobile && (
          <Link href='/shop/promo' className='!text-red-500 font-semibold sm:text-h-sm'>
          Lihat Semua
        </Link>
        )}
      </div>
      {isDesktop && (promotionProgram.data &&
    promotionProgram.data?.length > 0 && (
      <div className='grid grid-cols-3 sm:grid-cols-3 gap-4   rounded-md'>
        {promotionProgram.data?.map((banner) => (
          <Link key={banner.id} href={banner.url}>
            <Image
              width={439}
              height={150}
              quality={100}
              src={banner.image}
              alt={banner.name}
              className='h-auto  w-full rounded hover:scale-105 transition duration-500 ease-in-out'
            />
          </Link>
        ))}
      </div>
      
    ))}

{isMobile && (
     
     <Swiper slidesPerView={1.1} spaceBetween={8} freeMode>
     {promotionProgram.data?.map((banner) => (
       <SwiperSlide key={banner.id}>
         <Link key={banner.id} href={banner.url}>
            <Image
              width={439}
              height={150}
              quality={100}
              src={banner.image}
              alt={banner.name}
              className='h-auto  w-full rounded '
            />
          </Link>
       </SwiperSlide>
     ))}
   </Swiper>
  
  )}  
    </div>
    
  )
}

export default BannerSection