import { User } from "@prisma/client"; import * as Tooltip from "@radix-ui/react-tooltip"; import classNames from "@lib/classNames"; export type AvatarProps = ( | { user: Pick & { emailMd5?: string }; } | { user?: null; imageSrc: string; } ) & { className?: string; size?: number; title?: string; href?: string; alt: string; }; // defaultAvatarSrc from profile.tsx can't be used as it imports crypto function defaultAvatarSrc(md5: string) { return `https://www.gravatar.com/avatar/${md5}?s=160&d=mp&r=PG`; } // An SSR Supported version of Avatar component. export function AvatarSSR(props: AvatarProps) { const { size, title } = props; let imgSrc = ""; let alt: string = props.alt; if (props.user) { const user = props.user; const nameOrUsername = user.name || user.username || ""; alt = alt || nameOrUsername; if (user.avatar) { imgSrc = user.avatar; } else if (user.emailMd5) { imgSrc = defaultAvatarSrc(user.emailMd5); } } else { imgSrc = props.imageSrc; } const className = classNames("rounded-full", props.className, size && `h-${size} w-${size}`); const avatar = imgSrc ? {alt} : null; return title ? ( {avatar} {title} ) : ( <>{avatar} ); }