mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
fix build fr
This commit is contained in:
parent
491f9b48b5
commit
7df11a467a
1 changed files with 2 additions and 24 deletions
|
@ -1,31 +1,9 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Card, Carousel, CustomFlowbiteTheme, FlowbiteCarouselControlTheme, FlowbiteCarouselIndicatorsTheme } from "flowbite-react";
|
import { Card, Carousel } from "flowbite-react";
|
||||||
import { ReleaseLink } from "#/components/ReleaseLink/ReleaseLinkUpdate";
|
import { ReleaseLink } from "#/components/ReleaseLink/ReleaseLinkUpdate";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
|
||||||
active: {
|
|
||||||
off: "bg-gray-400/50 hover:bg-gray-200",
|
|
||||||
on: "bg-gray-200",
|
|
||||||
},
|
|
||||||
base: "h-3 w-3 rounded-full max-w-[300px]",
|
|
||||||
wrapper: "absolute bottom-5 left-1/2 flex -translate-x-1/2 space-x-3",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselControlsTheme: FlowbiteCarouselControlTheme = {
|
|
||||||
base: "inline-flex h-8 w-8 items-center justify-center rounded-full group-focus:outline-none group-focus:ring-4 bg-gray-400/30 group-hover:bg-gray-400/60 group-focus:ring-gray-400/70 sm:h-10 sm:w-10",
|
|
||||||
icon: "h-5 w-5 text-gray-400 sm:h-6 sm:w-6",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselTheme: CustomFlowbiteTheme["carousel"] = {
|
|
||||||
root: {
|
|
||||||
base: "relative h-full w-full max-w-[300px]",
|
|
||||||
},
|
|
||||||
indicators: CarouselIndicatorsTheme,
|
|
||||||
control: CarouselControlsTheme,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const ReleaseInfoRelated = (props: {
|
export const ReleaseInfoRelated = (props: {
|
||||||
release_id: number;
|
release_id: number;
|
||||||
related: any;
|
related: any;
|
||||||
|
@ -45,7 +23,7 @@ export const ReleaseInfoRelated = (props: {
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-center mt-2">
|
<div className="flex justify-center mt-2">
|
||||||
<Carousel pauseOnHover={true} theme={CarouselTheme}>
|
<Carousel pauseOnHover={true}>
|
||||||
{props.related_releases
|
{props.related_releases
|
||||||
.filter((release: any) => {
|
.filter((release: any) => {
|
||||||
if (release.id == props.release_id) {
|
if (release.id == props.release_id) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue