blob: 8d67754765acd0f23b51dd1f47cf703c798979e0 (
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
|
import { Swiper, SwiperSlide } from "swiper/react"
import ProductCard from "./ProductCard"
import "swiper/css"
import Image from "@/core/components/elements/Image/Image"
import Link from "@/core/components/elements/Link/Link"
import { useState } from "react"
const bannerClassName = 'absolute rounded-r top-0 left-0 h-full max-w-[52%] idt-transition border border-gray_r-6'
const ProductSlider = ({
products,
simpleTitle = false,
bannerMode = false
}) => {
const [ activeIndex, setActiveIndex ] = useState(0)
const swiperSliderFirstMove = (swiper) => {
setActiveIndex(swiper.activeIndex)
}
return (
<>
{ bannerMode && (
<Image
src={products.banner.image}
alt={products.banner.name}
className={`${bannerClassName} ${activeIndex > 0 ? 'opacity-0' : 'opacity-100'}`}
/>
) }
<Swiper
freeMode={true}
slidesPerView={2.2}
spaceBetween={8}
onSlideChange={swiperSliderFirstMove}
prefix="product"
>
{ bannerMode && (
<SwiperSlide>
<Link href={products.banner.url} className="w-full h-full block"></Link>
</SwiperSlide>
) }
{ products?.products?.map((product, index) => (
<SwiperSlide key={index}>
<ProductCard product={product} simpleTitle={simpleTitle} />
</SwiperSlide>
)) }
</Swiper>
</>
)
}
export default ProductSlider
|