Files
paperclip/ui/src/components/Identity.tsx
Forgotten aa329f4b8a Fix xs avatar alignment and dashboard task row layout
Adjust xs avatar vertical offset from top-[2px] to -top-px for better
baseline alignment. Restructure dashboard recent tasks rows so the
timestamp sits right-aligned outside the title text flow and title
truncates properly on desktop.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 11:35:59 -06:00

40 lines
1.3 KiB
TypeScript

import { cn } from "@/lib/utils";
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
type IdentitySize = "xs" | "sm" | "default" | "lg";
export interface IdentityProps {
name: string;
avatarUrl?: string | null;
initials?: string;
size?: IdentitySize;
className?: string;
}
function deriveInitials(name: string): string {
const parts = name.trim().split(/\s+/);
if (parts.length >= 2) return (parts[0][0] + parts[parts.length - 1][0]).toUpperCase();
return name.slice(0, 2).toUpperCase();
}
const textSize: Record<IdentitySize, string> = {
xs: "text-sm",
sm: "text-xs",
default: "text-sm",
lg: "text-sm",
};
export function Identity({ name, avatarUrl, initials, size = "default", className }: IdentityProps) {
const displayInitials = initials ?? deriveInitials(name);
return (
<span className={cn("inline-flex gap-1.5", size === "xs" ? "items-baseline gap-1" : "items-center", size === "lg" && "gap-2", className)}>
<Avatar size={size} className={size === "xs" ? "relative -top-px" : undefined}>
{avatarUrl && <AvatarImage src={avatarUrl} alt={name} />}
<AvatarFallback>{displayInitials}</AvatarFallback>
</Avatar>
<span className={cn("truncate", textSize[size])}>{name}</span>
</span>
);
}