feat: nip05 skeleton

This commit is contained in:
codytseng
2025-02-22 01:14:13 +08:00
parent 08f22073bd
commit 0f7a3aa593
3 changed files with 27 additions and 6 deletions

View File

@@ -1,17 +1,29 @@
import { Skeleton } from '@/components/ui/skeleton'
import { useFetchProfile } from '@/hooks'
import { useFetchNip05 } from '@/hooks/useFetchNip05'
import { BadgeAlert, BadgeCheck } from 'lucide-react'
export default function Nip05({ pubkey }: { pubkey: string }) {
const { profile } = useFetchProfile(pubkey)
const { nip05IsVerified, nip05Name, nip05Domain } = useFetchNip05(profile?.nip05, pubkey)
const { nip05IsVerified, nip05Name, nip05Domain, isFetching } = useFetchNip05(
profile?.nip05,
pubkey
)
if (isFetching) {
return (
<div className="flex items-center py-1">
<Skeleton className="h-3 w-20" />
</div>
)
}
if (!profile?.nip05) return null
return (
nip05Name &&
nip05Domain && (
<div className="flex items-center space-x-1 truncate">
<div className="flex items-center space-x-1 truncate [&_svg]:size-5">
{nip05Name !== '_' ? (
<div className="text-sm text-muted-foreground truncate">@{nip05Name}</div>
) : null}
@@ -21,7 +33,7 @@ export default function Nip05({ pubkey }: { pubkey: string }) {
className={`flex items-center space-x-1 hover:underline truncate ${nip05IsVerified ? 'text-highlight' : 'text-muted-foreground'}`}
rel="noreferrer"
>
{nip05IsVerified ? <BadgeCheck size={16} /> : <BadgeAlert size={16} />}
{nip05IsVerified ? <BadgeCheck /> : <BadgeAlert />}
<div className="text-sm truncate">{nip05Domain}</div>
</a>
</div>