update notification

This commit is contained in:
Ren Amamiya
2023-07-23 15:54:34 +07:00
parent f0fb1bee1e
commit 13ca8a2c54
10 changed files with 116 additions and 48 deletions

View File

@@ -3,39 +3,35 @@ import { Image } from '@shared/image';
import { DEFAULT_AVATAR } from '@stores/constants';
import { useProfile } from '@utils/hooks/useProfile';
import { shortenKey } from '@utils/shortenKey';
import { displayNpub } from '@utils/shortenKey';
export function NotificationUser({ pubkey, desc }: { pubkey: string; desc: string }) {
export function NotiUser({ pubkey }: { pubkey: string }) {
const { status, user } = useProfile(pubkey);
if (status === 'loading') {
return (
<div className="flex items-center gap-2">
<div className="relative h-11 w-11 shrink-0 animate-pulse rounded-md bg-zinc-800" />
<div className="flex items-start gap-2">
<div className="relative h-8 w-8 shrink-0 animate-pulse rounded-md bg-zinc-800" />
<div className="flex w-full flex-1 flex-col items-start gap-1 text-start">
<span className="h-4 w-1/2 animate-pulse rounded bg-zinc-800" />
<span className="h-3 w-1/3 animate-pulse rounded bg-zinc-800" />
</div>
</div>
);
}
return (
<div className="flex items-center justify-start gap-2">
<div className="relative h-11 w-11 shrink rounded-md">
<div className="flex shrink-0 items-start justify-start gap-2">
<div className="w-88 relative h-8 shrink rounded-md">
<Image
src={user.image}
fallback={DEFAULT_AVATAR}
alt={pubkey}
className="h-11 w-11 rounded-md object-cover"
className="w-88 h-8 rounded-md object-cover"
/>
</div>
<div className="inline-flex flex-1 items-center justify-start gap-1 text-start">
<span className="leading-none text-zinc-400">
{user.nip05 || user.name || user.displayName || shortenKey(pubkey)}
</span>
<span className="leading-none text-zinc-400">{desc}</span>
</div>
<span className="max-w-[10rem] truncate leading-none text-zinc-200">
{user.nip05 || user.name || user.displayName || displayNpub(pubkey, 16)}
</span>
</div>
);
}