import { UsersIcon } from "@heroicons/react/24/outline"; import type { FollowingRequest } from "@hey/indexer"; import { PageSize, useFollowingQuery } 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 FollowingProps { username: string; address: string; } const Following = ({ username, address }: FollowingProps) => { const { currentAccount } = useAccountStore(); const request: FollowingRequest = { account: address, pageSize: PageSize.Fifty }; const { data, error, fetchMore, loading } = useFollowingQuery({ skip: !address, variables: { request } }); const followings = data?.following?.items; const pageInfo = data?.following?.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 (!followings?.length) { return ( } message={
@{username} doesn't follow anyone.
} /> ); } if (error) { return ( ); } return (
{followings.map((following, index) => ( ))} {hasMore && }
); }; export default Following;