mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
"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>
|
||
);
|
||
};
|