From 0302b3f809f40f7765e499a2b7a1bf2e4795cb0f Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 25 Aug 2024 16:18:45 +0500 Subject: [PATCH] feat: add profile actions placeholder --- app/components/Profile/Profile.Actions.tsx | 25 ++++++++++++++++++++++ app/pages/Profile.tsx | 18 +++++++++++++++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 app/components/Profile/Profile.Actions.tsx diff --git a/app/components/Profile/Profile.Actions.tsx b/app/components/Profile/Profile.Actions.tsx new file mode 100644 index 0000000..d8c695b --- /dev/null +++ b/app/components/Profile/Profile.Actions.tsx @@ -0,0 +1,25 @@ +"use client"; +import { Card, Button } from "flowbite-react"; +import { useRouter } from "next/navigation"; + +export const ProfileActions = (props: { + isMyProfile: boolean; + isFriendRequestsDisallowed: boolean; + profile_id: number; +}) => { + return ( + +
+ {props.isMyProfile && } + {!props.isMyProfile && ( + <> + {!props.isFriendRequestsDisallowed && ( + + )} + + + )} +
+
+ ); +}; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index d78fc8c..f0f304c 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -11,6 +11,7 @@ import { ProfilePrivacyBanner } from "#/components/Profile/Profile.PrivacyBanner 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"; export const ProfilePage = (props: any) => { const authUser = useUserStore((state) => state); @@ -98,7 +99,11 @@ export const ProfilePage = (props: any) => {
@@ -135,6 +140,17 @@ export const ProfilePage = (props: any) => { />
)} +
+ +
{!user.is_stats_hidden && ( <>