"use client"; import { Avatar, Card, useThemeMode } from "flowbite-react"; import { UserRole } from "./Profile.Role"; import { UserSocial } from "./Profile.Social"; import Link from "next/link"; interface ProfileUserProps { avatar: string; login: string; status: string; rating: number; roles: { id: number; name: string; color: string; }[]; isMyProfile: boolean; isSponsor: boolean; isBlocked: boolean; isVerified: boolean; isOnline: boolean; socials: { vk: string; tg: string; tt: string; inst: string; discord: string; }; } export const ProfileUser = ({ avatar, login, status, rating, roles, isMyProfile, isVerified, isOnline, isSponsor, isBlocked, socials, }: ProfileUserProps) => { const theme = useThemeMode().mode; return ( {(isMyProfile || isVerified || isSponsor || isBlocked || roles.length > 0) && (
{isMyProfile && } {isBlocked && } {isVerified && } {isSponsor && } {roles.map((role) => ( ))}
)}

{login} 0 ? "border-green-500 text-green-500" : "border-red-500 text-red-500" }`} > {rating}

{status}

{(socials.vk || socials.tg || socials.discord || socials.tt || socials.inst) && (
{socials.vk && ( )} {socials.tg && ( )} {socials.tt && ( )} {socials.inst && ( )} {socials.discord && ( )}
)}
); };