From 4276cc1314fe07c8882e621bb292b88627587faf Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 25 Aug 2024 17:19:11 +0500 Subject: [PATCH] feat: add user recent rating --- app/components/Profile/Profile.Activity.tsx | 2 +- .../Profile/Profile.ReleaseRatings.tsx | 64 +++++++++++++++++++ app/components/Profile/Profile.Stats.tsx | 2 +- app/components/Profile/Profile.User.tsx | 2 +- app/pages/Profile.tsx | 62 ++++++++---------- 5 files changed, 95 insertions(+), 37 deletions(-) create mode 100644 app/components/Profile/Profile.ReleaseRatings.tsx diff --git a/app/components/Profile/Profile.Activity.tsx b/app/components/Profile/Profile.Activity.tsx index e8da162..8768363 100644 --- a/app/components/Profile/Profile.Activity.tsx +++ b/app/components/Profile/Profile.Activity.tsx @@ -11,7 +11,7 @@ export function ProfileActivity(props: { friendsCount: number; }) { return ( - +

Активность

diff --git a/app/components/Profile/Profile.ReleaseRatings.tsx b/app/components/Profile/Profile.ReleaseRatings.tsx new file mode 100644 index 0000000..e5c793d --- /dev/null +++ b/app/components/Profile/Profile.ReleaseRatings.tsx @@ -0,0 +1,64 @@ +import { Card, Carousel, RatingStar, Rating } from "flowbite-react"; +import type { FlowbiteCarouselIndicatorsTheme, FlowbiteCarouselControlTheme } from "flowbite-react"; +import Image from "next/image"; +import { unixToDate } from "#/api/utils"; + +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 ProfileReleaseRatings = (props: any) => { + return ( + +

Оценки

+
+ + {props.ratings.map((release) => { + return ( +
+ +
+

{release.title_ru}

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

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

+
+
+ ); + })} +
+
+
+ ); +}; diff --git a/app/components/Profile/Profile.Stats.tsx b/app/components/Profile/Profile.Stats.tsx index b606e4a..ae44f71 100644 --- a/app/components/Profile/Profile.Stats.tsx +++ b/app/components/Profile/Profile.Stats.tsx @@ -57,7 +57,7 @@ export const ProfileStats = (props: { }, []); return ( - +

Статистика

diff --git a/app/components/Profile/Profile.User.tsx b/app/components/Profile/Profile.User.tsx index ab9d2df..1bc4743 100644 --- a/app/components/Profile/Profile.User.tsx +++ b/app/components/Profile/Profile.User.tsx @@ -36,7 +36,7 @@ export const ProfileUser = (props: { const router = useRouter(); console.log(props.chips); return ( - + {props.chips.hasChips && (
{props.chips.isMyProfile && ( diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index f0f304c..06c0c6b 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -12,6 +12,7 @@ import { ProfileActivity } from "#/components/Profile/Profile.Activity"; 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"; export const ProfilePage = (props: any) => { const authUser = useUserStore((state) => state); @@ -99,15 +100,11 @@ export const ProfilePage = (props: any) => {
-
+
{ }} rating={user.rating_score} /> -
- {!user.is_counts_hidden && ( -
+ {!user.is_counts_hidden && ( { collectionCount={user.collection_count} friendsCount={user.friend_count} /> -
- )} -
+ )} + {!user.is_stats_hidden && ( + + )}
+
+ + +
+ {/* {!user.is_stats_hidden && ( - <> -
- -
-
- -
- +
+ +
)} +
+
*/}
);