92 lines
2.7 KiB
TypeScript
92 lines
2.7 KiB
TypeScript
import Link from "next/link";
|
|
import { ExternalLink } from "lucide-react";
|
|
import { ReactNode } from "react";
|
|
import { RemoteActor } from "@/lib/api";
|
|
import { UserAvatar } from "@/components/user-avatar";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
interface ProfileCardProps {
|
|
actor: RemoteActor;
|
|
/** Slot rendered next to the avatar (e.g. follow/unfollow button). */
|
|
action?: ReactNode;
|
|
}
|
|
|
|
export function ProfileCard({ actor, action }: ProfileCardProps) {
|
|
return (
|
|
<>
|
|
<div className="flex justify-between items-start">
|
|
<div className="w-24 h-24 rounded-full border-4 border-background shrink-0">
|
|
<UserAvatar
|
|
src={actor.avatarUrl}
|
|
alt={actor.displayName}
|
|
className="w-full h-full"
|
|
/>
|
|
</div>
|
|
{action}
|
|
</div>
|
|
|
|
<div className="mt-4 min-w-0">
|
|
<h1 className="text-2xl font-bold truncate">
|
|
{actor.displayName ?? actor.handle}
|
|
</h1>
|
|
<p className="text-sm text-muted-foreground truncate">{actor.handle}</p>
|
|
</div>
|
|
|
|
{actor.bio && (
|
|
<div
|
|
className="mt-4 text-sm [&_a]:underline [&_a]:text-primary [&_p]:mb-2"
|
|
dangerouslySetInnerHTML={{ __html: actor.bio }}
|
|
/>
|
|
)}
|
|
|
|
<Button asChild variant="outline" size="sm" className="mt-4 w-full">
|
|
<Link
|
|
href={actor.url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="flex items-center overflow-hidden"
|
|
>
|
|
<ExternalLink className="mr-2 h-4 w-4 shrink-0" />
|
|
<span className="truncate">{new URL(actor.url).hostname}</span>
|
|
</Link>
|
|
</Button>
|
|
|
|
{actor.alsoKnownAs && (
|
|
<p className="mt-2 text-xs text-muted-foreground">
|
|
Also known as:{" "}
|
|
<Link
|
|
href={actor.alsoKnownAs}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="underline"
|
|
>
|
|
{actor.alsoKnownAs}
|
|
</Link>
|
|
</p>
|
|
)}
|
|
|
|
{actor.attachment.length > 0 && (
|
|
<div className="mt-4 space-y-0 text-sm">
|
|
{actor.attachment.map((field) => (
|
|
<div
|
|
key={field.name}
|
|
className="grid grid-cols-[minmax(0,5rem)_1fr] gap-2 border-t py-1"
|
|
>
|
|
<span
|
|
className="font-medium text-muted-foreground truncate"
|
|
title={field.name}
|
|
>
|
|
{field.name}
|
|
</span>
|
|
<span
|
|
className="break-all min-w-0 [&_a]:underline [&_a]:text-primary"
|
|
dangerouslySetInnerHTML={{ __html: field.value }}
|
|
/>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|