import { UsersIcon } from "@heroicons/react/24/outline"; import type { FollowersRequest } from "@hey/indexer"; import { PageSize, useFollowersQuery } from "@hey/indexer"; import { motion } from "motion/react"; import { useCallback } from "react"; import { Virtualizer } from "virtua"; import SingleAccount from "@/components/Shared/Account/SingleAccount"; import AccountListShimmer from "@/components/Shared/Shimmer/AccountListShimmer"; import { EmptyState, ErrorMessage } from "@/components/Shared/UI"; import cn from "@/helpers/cn"; import useLoadMoreOnIntersect from "@/hooks/useLoadMoreOnIntersect"; import { useAccountStore } from "@/store/persisted/useAccountStore"; import { accountsList } from "@/variants"; interface FollowersProps { username: string; address: string; } const Followers = ({ username, address }: FollowersProps) => { const { currentAccount } = useAccountStore(); const request: FollowersRequest = { account: address, pageSize: PageSize.Fifty }; const { data, error, fetchMore, loading } = useFollowersQuery({ skip: !address, variables: { request } }); const followers = data?.followers?.items; const pageInfo = data?.followers?.pageInfo; const hasMore = pageInfo?.next; const handleEndReached = useCallback(async () => { if (hasMore) { await fetchMore({ variables: { request: { ...request, cursor: pageInfo?.next } } }); } }, [fetchMore, hasMore, pageInfo?.next, request]); const loadMoreRef = useLoadMoreOnIntersect(handleEndReached); if (loading) { return ; } if (!followers?.length) { return ( } message={
@{username} doesn't have any followers yet.
} /> ); } if (error) { return ( ); } return (
{followers.map((follower, index) => ( ))} {hasMore && }
); }; export default Followers;