51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import { compactNumber } from '@utils/number';
|
|
|
|
export function UserMetadata({ pubkey }: { pubkey: string }) {
|
|
const { status, data } = useQuery(['user-metadata', pubkey], async () => {
|
|
const res = await fetch(`https://api.nostr.band/v0/stats/profile/${pubkey}`);
|
|
if (!res.ok) {
|
|
throw new Error('Error');
|
|
}
|
|
return await res.json();
|
|
});
|
|
|
|
if (status === 'loading') {
|
|
return <p>Loading...</p>;
|
|
}
|
|
|
|
return (
|
|
<div className="flex w-full items-center gap-10">
|
|
<div className="inline-flex flex-col gap-1">
|
|
<span className="font-semibold leading-none text-white">
|
|
{compactNumber.format(data.stats[pubkey].followers_pubkey_count) ?? 0}
|
|
</span>
|
|
<span className="text-sm leading-none text-white/50">Followers</span>
|
|
</div>
|
|
<div className="inline-flex flex-col gap-1">
|
|
<span className="font-semibold leading-none text-white">
|
|
{compactNumber.format(data.stats[pubkey].pub_following_pubkey_count) ?? 0}
|
|
</span>
|
|
<span className="text-sm leading-none text-white/50">Following</span>
|
|
</div>
|
|
<div className="inline-flex flex-col gap-1">
|
|
<span className="font-semibold leading-none text-white">
|
|
{data.stats[pubkey].zaps_received
|
|
? compactNumber.format(data.stats[pubkey].zaps_received.msats / 1000)
|
|
: 0}
|
|
</span>
|
|
<span className="text-sm leading-none text-white/50">Zaps received</span>
|
|
</div>
|
|
<div className="inline-flex flex-col gap-1">
|
|
<span className="font-semibold leading-none text-white">
|
|
{data.stats[pubkey].zaps_sent
|
|
? compactNumber.format(data.stats[pubkey].zaps_sent.msats / 1000)
|
|
: 0}
|
|
</span>
|
|
<span className="text-sm leading-none text-white/50">Zaps sent</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|