mirror of
https://github.com/lumehq/lume.git
synced 2025-10-05 19:34:30 +02:00
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
import { Image } from '@lume/shared/image';
|
|
import { DEFAULT_AVATAR, IMGPROXY_URL } from '@lume/stores/constants';
|
|
import { useProfile } from '@lume/utils/hooks/useProfile';
|
|
import { shortenKey } from '@lume/utils/shortenKey';
|
|
|
|
import dayjs from 'dayjs';
|
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
export const NoteDefaultUser = ({ pubkey, time }: { pubkey: string; time: number }) => {
|
|
const { user } = useProfile(pubkey);
|
|
|
|
return (
|
|
<div className="group relative z-10 flex h-11 items-center gap-2">
|
|
<div className="h-11 w-11 shrink overflow-hidden rounded-md bg-zinc-900">
|
|
<Image
|
|
src={`${IMGPROXY_URL}/rs:fit:100:100/plain/${user?.picture ? user.picture : DEFAULT_AVATAR}`}
|
|
alt={pubkey}
|
|
className="h-11 w-11 rounded-md object-cover"
|
|
/>
|
|
</div>
|
|
<div className="flex w-full flex-1 items-start justify-between">
|
|
<div className="flex flex-col gap-1">
|
|
<div className="flex items-baseline gap-2">
|
|
<h5 className="text-sm font-semibold leading-none group-hover:underline">
|
|
{user?.display_name || shortenKey(pubkey)}
|
|
</h5>
|
|
</div>
|
|
<div className="flex items-baseline gap-1.5 text-sm leading-none text-zinc-500">
|
|
<span>{user?.nip05 || shortenKey(pubkey)}</span>
|
|
<span>•</span>
|
|
<span>{dayjs().to(dayjs.unix(time))}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|