mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
refactor: user recently watched
This commit is contained in:
parent
cbdcfedb9b
commit
c4c422904e
2 changed files with 69 additions and 66 deletions
|
@ -1,49 +1,79 @@
|
|||
import { Card, Carousel } from "flowbite-react";
|
||||
import type {
|
||||
FlowbiteCarouselIndicatorsTheme,
|
||||
FlowbiteCarouselControlTheme,
|
||||
CustomFlowbiteTheme,
|
||||
} from "flowbite-react";
|
||||
import { ReleaseLink } from "../ReleaseLink/ReleaseLinkUpdate";
|
||||
import { Card } from "flowbite-react";
|
||||
|
||||
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",
|
||||
};
|
||||
import { ReleaseChips } from "../ReleasePoster/Chips";
|
||||
import { Poster } from "../ReleasePoster/Poster";
|
||||
import Link from "next/link";
|
||||
|
||||
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-[375px]",
|
||||
},
|
||||
indicators: CarouselIndicatorsTheme,
|
||||
control: CarouselControlsTheme,
|
||||
const profile_lists = {
|
||||
// 0: "Не смотрю",
|
||||
1: { name: "Смотрю", bg_color: "bg-green-500" },
|
||||
2: { name: "В планах", bg_color: "bg-purple-500" },
|
||||
3: { name: "Просмотрено", bg_color: "bg-blue-500" },
|
||||
4: { name: "Отложено", bg_color: "bg-yellow-500" },
|
||||
5: { name: "Брошено", bg_color: "bg-red-500" },
|
||||
};
|
||||
|
||||
export const ProfileReleaseHistory = (props: any) => {
|
||||
return (
|
||||
<Card className="h-fit">
|
||||
<h1 className="text-2xl font-bold">Недавно просмотренные</h1>
|
||||
<div className="flex justify-center">
|
||||
<Carousel theme={CarouselTheme}>
|
||||
{props.history.map((release) => {
|
||||
return (
|
||||
<ReleaseLink
|
||||
key={`history-${release.id}`}
|
||||
{...release}
|
||||
chipsSettings={{ lastWatchedHidden: false }}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</Carousel>
|
||||
<div className="flex flex-col gap-4">
|
||||
{props.history.map((release) => {
|
||||
const genres = [];
|
||||
const grade = release.grade ? Number(release.grade.toFixed(1)) : null;
|
||||
const profile_list_status = release.profile_list_status || null;
|
||||
let user_list = null;
|
||||
if (profile_list_status != null || profile_list_status != 0) {
|
||||
user_list = profile_lists[profile_list_status];
|
||||
}
|
||||
if (release.genres) {
|
||||
const genres_array = release.genres.split(",");
|
||||
genres_array.forEach((genre) => {
|
||||
genres.push(genre.trim());
|
||||
});
|
||||
}
|
||||
return (
|
||||
<Link href={`/release/${release.id}`} key={`history-${release.id}`}>
|
||||
<div className="flex gap-2">
|
||||
<div className="flex-shrink-0 w-32">
|
||||
<Poster image={release.image} className="h-auto" />
|
||||
</div>
|
||||
<div className="flex flex-col gap-1">
|
||||
<ReleaseChips
|
||||
{...release}
|
||||
user_list={user_list}
|
||||
grade={grade}
|
||||
settings={{ lastWatchedHidden: false }}
|
||||
/>
|
||||
<div>
|
||||
{genres.length > 0 &&
|
||||
genres.map((genre: string, index: number) => {
|
||||
return (
|
||||
<span
|
||||
key={`release_${props.id}_genre_${genre}_${index}`}
|
||||
className="text-sm font-light dark:text-white"
|
||||
>
|
||||
{index > 0 && ", "}
|
||||
{genre}
|
||||
</span>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
{release.title_ru && (
|
||||
<p className="text-lg font-bold dark:text-white">
|
||||
{release.title_ru}
|
||||
</p>
|
||||
)}
|
||||
{release.title_original && (
|
||||
<p className="text-sm text-gray-600 dark:text-gray-300">
|
||||
{release.title_original}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</Card>
|
||||
);
|
||||
|
|
|
@ -1,16 +1,11 @@
|
|||
import {
|
||||
Card,
|
||||
Carousel,
|
||||
RatingStar,
|
||||
Rating,
|
||||
Modal,
|
||||
Button,
|
||||
} from "flowbite-react";
|
||||
import type {
|
||||
FlowbiteCarouselIndicatorsTheme,
|
||||
FlowbiteCarouselControlTheme,
|
||||
} from "flowbite-react";
|
||||
import Image from "next/image";
|
||||
|
||||
import { unixToDate, useSWRfetcher } from "#/api/utils";
|
||||
import Link from "next/link";
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
|
@ -19,28 +14,6 @@ import useSWRInfinite from "swr/infinite";
|
|||
import { Spinner } from "../Spinner/Spinner";
|
||||
import { Poster } from "../ReleasePoster/Poster";
|
||||
|
||||
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
||||
active: {
|
||||
off: "bg-gray-300/50 hover:bg-gray-400 dark:bg-gray-400/50 dark:hover:bg-gray-200",
|
||||
on: "bg-gray-600 dark:bg-gray-200",
|
||||
},
|
||||
base: "h-3 w-3 rounded-full",
|
||||
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 bg-gray-600/30 group-hover:bg-gray-600/50 group-focus:outline-none group-focus:ring-4 group-focus:ring-gray-600 dark:bg-gray-400/30 dark:group-hover:bg-gray-400/60 dark:group-focus:ring-gray-400/70 sm:h-10 sm:w-10",
|
||||
icon: "h-5 w-5 text-gray-600 dark:text-gray-400 sm:h-6 sm:w-6",
|
||||
};
|
||||
|
||||
const CarouselTheme = {
|
||||
root: {
|
||||
base: "relative h-full w-full max-w-[700px]",
|
||||
},
|
||||
indicators: CarouselIndicatorsTheme,
|
||||
control: CarouselControlsTheme,
|
||||
};
|
||||
|
||||
export const ProfileReleaseRatings = (props: any) => {
|
||||
const [modal, setModal] = useState(false);
|
||||
return (
|
||||
|
|
Loading…
Add table
Reference in a new issue