mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +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;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (hover: hover) and (min-width: 1024px) {
|
||||||
|
.swiper {
|
||||||
|
overflow: visible !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (hover: hover) {
|
@media (hover: hover) {
|
||||||
.section:hover .swiper-button {
|
.section:hover .swiper-button {
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
width: 64px;
|
width: 64px;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
}
|
}
|
||||||
.swiper {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
"use client";
|
"use client";
|
||||||
import { useEffect } from "react";
|
|
||||||
import { ReleaseLink } from "../ReleaseLink/ReleaseLink";
|
import { ReleaseLink } from "../ReleaseLink/ReleaseLink";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
|
import { Swiper, SwiperSlide } from 'swiper/react';
|
||||||
import Styles from "./ReleaseCourusel.module.css";
|
import Styles from "./ReleaseCourusel.module.css";
|
||||||
import Swiper from "swiper";
|
|
||||||
import "swiper/css";
|
import "swiper/css";
|
||||||
import "swiper/css/navigation";
|
import "swiper/css/navigation";
|
||||||
import { Navigation } from "swiper/modules";
|
import { Navigation } from "swiper/modules";
|
||||||
|
@ -14,34 +13,8 @@ export const ReleaseCourusel = (props: {
|
||||||
showAllLink?: string;
|
showAllLink?: string;
|
||||||
content: any;
|
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 (
|
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">
|
<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">
|
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
|
||||||
{props.sectionTitle}
|
{props.sectionTitle}
|
||||||
|
@ -56,35 +29,53 @@ export const ReleaseCourusel = (props: {
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="my-4">
|
<div className="my-4">
|
||||||
<div className={`swiper ${Styles["swiper"]}`}>
|
<Swiper
|
||||||
<div className="swiper-wrapper">
|
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) => {
|
{props.content.map((release) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<SwiperSlide
|
||||||
className="swiper-slide"
|
|
||||||
key={release.id}
|
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} />
|
||||||
<ReleaseLink {...release} />
|
</SwiperSlide>
|
||||||
</div>
|
|
||||||
</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>
|
||||||
|
</Swiper>
|
||||||
|
{/* <div className={`swiper ${Styles["swiper"]}`}>
|
||||||
|
<div className="swiper-wrapper">
|
||||||
</div>
|
</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`}
|
</div> */}
|
||||||
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>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
## Изменено
|
## Изменено
|
||||||
|
|
||||||
- Изменён вид каруселей релизов для ПК
|
- Изменён вид каруселей релизов
|
||||||
|
|
||||||
## Исправлено
|
## Исправлено
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue