50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import { NavLink } from 'react-router-dom';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
import { Image } from '@shared/image';
|
|
|
|
import { useProfile } from '@utils/hooks/useProfile';
|
|
import { displayNpub } from '@utils/shortenKey';
|
|
|
|
export function ChatsListItem({ pubkey }: { pubkey: string }) {
|
|
const { status, user } = useProfile(pubkey);
|
|
|
|
if (status === 'loading') {
|
|
return (
|
|
<div className="inline-flex h-10 items-center gap-2.5 rounded-md px-3">
|
|
<div className="relative h-7 w-7 shrink-0 animate-pulse rounded bg-white/10 backdrop-blur-xl" />
|
|
<div className="h-2.5 w-2/3 animate-pulse rounded bg-white/10 backdrop-blur-xl" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<NavLink
|
|
to={`/chats/${pubkey}`}
|
|
preventScrollReset={true}
|
|
className={({ isActive }) =>
|
|
twMerge(
|
|
'flex h-10 items-center gap-2.5 rounded-r-lg border-l-2 pl-4 pr-3',
|
|
isActive
|
|
? 'border-fuchsia-500 bg-white/5 text-white'
|
|
: 'border-transparent text-white/70'
|
|
)
|
|
}
|
|
>
|
|
<Image
|
|
src={user?.picture || user?.image}
|
|
alt={pubkey}
|
|
className="h-7 w-7 shrink-0 rounded"
|
|
/>
|
|
<div className="inline-flex w-full flex-1 items-center justify-between">
|
|
<h5 className="max-w-[10rem] truncate">
|
|
{user?.name ||
|
|
user?.display_name ||
|
|
user?.displayName ||
|
|
displayNpub(pubkey, 16)}
|
|
</h5>
|
|
</div>
|
|
</NavLink>
|
|
);
|
|
}
|