AniX/app/components/Profile/Profile.Actions.tsx

25 lines
725 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"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 (
<Card className="h-fit">
<div className="flex gap-2">
{props.isMyProfile && <Button color={"blue"}>Редактировать</Button>}
{!props.isMyProfile && (
<>
{!props.isFriendRequestsDisallowed && (
<Button color={"blue"}>Добавить в друзья</Button>
)}
<Button color={"red"}>Заблокировать</Button>
</>
)}
</div>
</Card>
);
};