diff --git a/app/components/Profile/Profile.ReleaseHistory.tsx b/app/components/Profile/Profile.ReleaseHistory.tsx new file mode 100644 index 0000000..e17c2d9 --- /dev/null +++ b/app/components/Profile/Profile.ReleaseHistory.tsx @@ -0,0 +1,40 @@ +import { Card, Carousel, RatingStar, Rating } from "flowbite-react"; +import type { + FlowbiteCarouselIndicatorsTheme, + FlowbiteCarouselControlTheme, +} from "flowbite-react"; +import { ReleaseLink } from "../ReleaseLink/ReleaseLink"; + +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 = { + indicators: CarouselIndicatorsTheme, + control: CarouselControlsTheme, +}; + +export const ProfileReleaseHistory = (props: any) => { + return ( + +

Недавно просмотренные

+
+ + {props.history.map((release) => { + return ; + })} + +
+
+ ); +}; diff --git a/app/components/Profile/Profile.ReleaseRatings.tsx b/app/components/Profile/Profile.ReleaseRatings.tsx index 0629718..4c61be3 100644 --- a/app/components/Profile/Profile.ReleaseRatings.tsx +++ b/app/components/Profile/Profile.ReleaseRatings.tsx @@ -1,7 +1,11 @@ import { Card, Carousel, RatingStar, Rating } from "flowbite-react"; -import type { FlowbiteCarouselIndicatorsTheme, FlowbiteCarouselControlTheme } from "flowbite-react"; +import type { + FlowbiteCarouselIndicatorsTheme, + FlowbiteCarouselControlTheme, +} from "flowbite-react"; import Image from "next/image"; import { unixToDate } from "#/api/utils"; +import Link from "next/link"; const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = { active: { @@ -13,14 +17,14 @@ const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = { }; 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" -} + 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 = { - indicators: CarouselIndicatorsTheme, - control: CarouselControlsTheme -} + indicators: CarouselIndicatorsTheme, + control: CarouselControlsTheme, +}; export const ProfileReleaseRatings = (props: any) => { return ( @@ -30,31 +34,30 @@ export const ProfileReleaseRatings = (props: any) => { {props.ratings.map((release) => { return ( -
- -
-

{release.title_ru}

- - = 1} /> - = 2} /> - = 3} /> - = 4} /> - = 5} /> - -

- {unixToDate(release.voted_at, "full")} -

+ +
+ +
+

{release.title_ru}

+ + = 1} /> + = 2} /> + = 3} /> + = 4} /> + = 5} /> + +

+ {unixToDate(release.voted_at, "full")} +

+
-
+ ); })} diff --git a/app/components/ReleaseLink/ReleaseLink.Poster.tsx b/app/components/ReleaseLink/ReleaseLink.Poster.tsx index 13ad6ef..438b7b6 100644 --- a/app/components/ReleaseLink/ReleaseLink.Poster.tsx +++ b/app/components/ReleaseLink/ReleaseLink.Poster.tsx @@ -1,5 +1,4 @@ import Link from "next/link"; -import { sinceUnixDate } from "#/api/utils"; import { Chip } from "#/components/Chip/Chip"; const profile_lists = { diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 0f31e6c..83dd7ad 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -13,6 +13,7 @@ import { ProfileStats } from "#/components/Profile/Profile.Stats"; import { ProfileWatchDynamic } from "#/components/Profile/Profile.WatchDynamic"; import { ProfileActions } from "#/components/Profile/Profile.Actions"; import { ProfileReleaseRatings } from "#/components/Profile/Profile.ReleaseRatings"; +import { ProfileReleaseHistory } from "#/components/Profile/Profile.ReleaseHistory"; export const ProfilePage = (props: any) => { const authUser = useUserStore((state) => state); @@ -104,7 +105,7 @@ export const ProfilePage = (props: any) => { isPrivacy || user.is_banned || user.is_perm_banned ? "mt-4" : "" }`} > -
+
{ /> )} {!user.is_stats_hidden && ( - +
+ {user.votes && user.votes.length > 0 && ( + + )} + {user.history && user.history.length > 0 && ( + + )} +
)}
-
+
{ watched_time={user.watched_time} /> +
+ {user.votes && user.votes.length > 0 && ( + + )} + {user.history && user.history.length > 0 && ( + + )} +
)}