You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.6 KiB
71 lines
2.6 KiB
import { Skeleton } from '@/components/ui/skeleton' |
|
import { cn } from '@/lib/utils' |
|
import { TNip66RelayInfo } from '@/types' |
|
import { HTMLProps } from 'react' |
|
import { useTranslation } from 'react-i18next' |
|
import RelayBadges from '../RelayBadges' |
|
import RelayIcon from '../RelayIcon' |
|
import SaveRelayDropdownMenu from '../SaveRelayDropdownMenu' |
|
import { SimpleUserAvatar } from '../UserAvatar' |
|
|
|
export default function RelaySimpleInfo({ |
|
relayInfo, |
|
hideBadge = false, |
|
className, |
|
...props |
|
}: HTMLProps<HTMLDivElement> & { |
|
relayInfo?: TNip66RelayInfo & { users?: string[] } |
|
hideBadge?: boolean |
|
}) { |
|
const { t } = useTranslation() |
|
|
|
return ( |
|
<div className={cn('space-y-1', className)} {...props}> |
|
<div className="flex items-start justify-between gap-2 w-full"> |
|
<div className="flex flex-1 w-0 items-center gap-2"> |
|
<RelayIcon url={relayInfo?.url} className="h-9 w-9" /> |
|
<div className="flex-1 w-0"> |
|
<div className="truncate font-semibold">{relayInfo?.name || relayInfo?.shortUrl}</div> |
|
{relayInfo?.name && ( |
|
<div className="text-xs text-muted-foreground truncate">{relayInfo?.shortUrl}</div> |
|
)} |
|
</div> |
|
</div> |
|
{relayInfo && <SaveRelayDropdownMenu urls={[relayInfo.url]} />} |
|
</div> |
|
{!hideBadge && relayInfo && <RelayBadges relayInfo={relayInfo} />} |
|
{!!relayInfo?.description && <div className="line-clamp-4">{relayInfo.description}</div>} |
|
{!!relayInfo?.users?.length && ( |
|
<div className="flex items-center gap-2"> |
|
<div className="text-muted-foreground">{t('Favorited by')} </div> |
|
<div className="flex items-center gap-1"> |
|
{relayInfo.users.slice(0, 10).map((user) => ( |
|
<SimpleUserAvatar key={user} userId={user} size="xSmall" /> |
|
))} |
|
{relayInfo.users.length > 10 && ( |
|
<div className="text-muted-foreground text-xs rounded-full bg-muted w-5 h-5 flex items-center justify-center"> |
|
+{relayInfo.users.length - 10} |
|
</div> |
|
)} |
|
</div> |
|
</div> |
|
)} |
|
</div> |
|
) |
|
} |
|
|
|
export function RelaySimpleInfoSkeleton() { |
|
return ( |
|
<div className="p-4 space-y-2"> |
|
<div className="flex items-center gap-2 w-full"> |
|
<Skeleton className="h-9 w-9 rounded-full" /> |
|
<div className="flex-1 w-0 space-y-1"> |
|
<Skeleton className="w-40 h-5" /> |
|
<Skeleton className="w-20 h-4" /> |
|
</div> |
|
</div> |
|
<Skeleton className="w-full h-4" /> |
|
<Skeleton className="w-2/3 h-4" /> |
|
</div> |
|
) |
|
}
|
|
|