mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
refactor: move to native swiper.js implementation instead of useEffect hook
This commit is contained in:
parent
b0d2d69d41
commit
35e663ab52
3 changed files with 49 additions and 55 deletions
|
@ -6,13 +6,16 @@
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
@media (hover: hover) and (min-width: 1024px) {
|
||||
.swiper {
|
||||
overflow: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.section:hover .swiper-button {
|
||||
display: flex !important;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
.swiper {
|
||||
overflow: visible !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
"use client";
|
||||
import { useEffect } from "react";
|
||||
import { ReleaseLink } from "../ReleaseLink/ReleaseLink";
|
||||
import Link from "next/link";
|
||||
|
||||
import { Swiper, SwiperSlide } from 'swiper/react';
|
||||
import Styles from "./ReleaseCourusel.module.css";
|
||||
import Swiper from "swiper";
|
||||
import "swiper/css";
|
||||
import "swiper/css/navigation";
|
||||
import { Navigation } from "swiper/modules";
|
||||
|
@ -14,34 +13,8 @@ export const ReleaseCourusel = (props: {
|
|||
showAllLink?: string;
|
||||
content: any;
|
||||
}) => {
|
||||
useEffect(() => {
|
||||
const options: any = {
|
||||
direction: "horizontal",
|
||||
spaceBetween: 8,
|
||||
allowTouchMove: true,
|
||||
slidesPerView: "auto",
|
||||
rewind: true,
|
||||
navigation: {
|
||||
enabled: false,
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev",
|
||||
},
|
||||
breakpoints: {
|
||||
450: {
|
||||
navigation: {
|
||||
enabled: true,
|
||||
},
|
||||
initialSlide: 1,
|
||||
centeredSlides: true,
|
||||
},
|
||||
},
|
||||
modules: [Navigation],
|
||||
};
|
||||
new Swiper(".swiper", options);
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<section className={`${Styles.section}`}>
|
||||
<section className={Styles.section}>
|
||||
<div className="flex justify-between px-4 py-2 border-b-2 border-black dark:border-white">
|
||||
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
|
||||
{props.sectionTitle}
|
||||
|
@ -56,35 +29,53 @@ export const ReleaseCourusel = (props: {
|
|||
)}
|
||||
</div>
|
||||
<div className="my-4">
|
||||
<div className={`swiper ${Styles["swiper"]}`}>
|
||||
<div className="swiper-wrapper">
|
||||
<Swiper
|
||||
modules={[Navigation]}
|
||||
spaceBetween={8}
|
||||
slidesPerView={'auto'}
|
||||
direction={'horizontal'}
|
||||
rewind={true}
|
||||
navigation={{
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev"
|
||||
}}
|
||||
allowTouchMove={true}
|
||||
breakpoints={{
|
||||
1800: {
|
||||
initialSlide: 1,
|
||||
centeredSlides: true
|
||||
}
|
||||
}}
|
||||
className={Styles.swiper}
|
||||
>
|
||||
{props.content.map((release) => {
|
||||
return (
|
||||
<div
|
||||
className="swiper-slide"
|
||||
<SwiperSlide
|
||||
key={release.id}
|
||||
style={{ width: "fit-content" }}
|
||||
className="xl:max-w-[600px] sm:max-w-[400px] aspect-video"
|
||||
>
|
||||
<div className="xl:w-[600px] sm:w-[400px] w-[84vw] aspect-video">
|
||||
<ReleaseLink {...release} />
|
||||
</div>
|
||||
</div>
|
||||
<ReleaseLink {...release} />
|
||||
</SwiperSlide>
|
||||
);
|
||||
})}
|
||||
<div
|
||||
className={`swiper-button-prev ${Styles["swiper-button"]} after:iconify after:material-symbols--chevron-left aspect-square bg-black bg-opacity-25 backdrop-blur rounded-full after:bg-white`}
|
||||
style={
|
||||
{ "--swiper-navigation-size": "64px" } as React.CSSProperties
|
||||
}
|
||||
></div>
|
||||
<div
|
||||
className={`swiper-button-next ${Styles["swiper-button"]} after:iconify after:material-symbols--chevron-right aspect-square bg-black bg-opacity-25 backdrop-blur rounded-full after:bg-white`}
|
||||
style={
|
||||
{ "--swiper-navigation-size": "64px" } as React.CSSProperties
|
||||
}
|
||||
></div>
|
||||
</Swiper>
|
||||
{/* <div className={`swiper ${Styles["swiper"]}`}>
|
||||
<div className="swiper-wrapper">
|
||||
</div>
|
||||
<div
|
||||
className={`swiper-button-prev ${Styles["swiper-button"]} after:iconify after:material-symbols--chevron-left aspect-square bg-black bg-opacity-25 backdrop-blur rounded-full after:bg-white`}
|
||||
style={
|
||||
{ "--swiper-navigation-size": "64px" } as React.CSSProperties
|
||||
}
|
||||
></div>
|
||||
<div
|
||||
className={`swiper-button-next ${Styles["swiper-button"]} after:iconify after:material-symbols--chevron-right aspect-square bg-black bg-opacity-25 backdrop-blur rounded-full after:bg-white`}
|
||||
style={
|
||||
{ "--swiper-navigation-size": "64px" } as React.CSSProperties
|
||||
}
|
||||
></div>
|
||||
</div>
|
||||
|
||||
</div> */}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
## Изменено
|
||||
|
||||
- Изменён вид каруселей релизов для ПК
|
||||
- Изменён вид каруселей релизов
|
||||
|
||||
## Исправлено
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue