All files / src/app/me/following FollowingClient.tsx

0% Statements 0/21
0% Branches 0/16
0% Functions 0/6
0% Lines 0/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
'use client';
 
import { useMutation, useQuery } from '@apollo/client/react';
import {
  Avatar,
  Box,
  Button,
  Card,
  Center,
  Group,
  SimpleGrid,
  Skeleton,
  Stack,
  Text,
  ThemeIcon,
  Tooltip,
} from '@mantine/core';
import {
  IconChefHat,
  IconToolsKitchen2,
  IconUserHeart,
  IconUserMinus,
  IconUsers,
  IconUsersGroup,
} from '@tabler/icons-react';
import type { Route } from 'next';
import Link from 'next/link';
import { useSession } from 'next-auth/react';
import { useTranslations } from 'next-intl';
import { useCallback } from 'react';
import { RecipeCarousel } from '@/components/Recipe/RecipeCarousel';
import StyledText from '@/components/StyledText';
import { UNFOLLOW_USER } from '@/lib/graphql/mutations';
import { GET_FOLLOWING } from '@/lib/graphql/queries';
import type { OperationResponse } from '@/types/graphql/responses';
import { PUBLIC_ROUTES } from '@/types/routes';
import classes from './FollowingClient.module.css';
import StatCard from './StatCard';
import type { FollowingData } from './types';
import { getInitials } from './utils';
 
const SKELETON_CARDS = [1, 2, 3, 4];
 
const FollowingClient = () => {
  const { data: session, status } = useSession();
  const translate = useTranslations('user');
 
  const userId = (session?.user as { id?: string })?.id;
  const isSessionLoading = status === 'loading';
 
  const { data, loading } = useQuery<FollowingData>(GET_FOLLOWING, {
    variables: { userId },
    skip: !userId || isSessionLoading,
    fetchPolicy: 'cache-and-network',
  });
 
  const [unfollowMutation] = useMutation<{
    unfollowUser: OperationResponse;
  }>(UNFOLLOW_USER);
 
  const handleUnfollow = useCallback(
    async (targetUserId: string) => {
      await unfollowMutation({
        variables: { targetUserId },
        refetchQueries: ['getFollowing'],
      });
    },
    [unfollowMutation],
  );
 
  const users = data?.getFollowing?.users ?? [];
  const totalFollowing = data?.getFollowing?.totalFollowing ?? 0;
  const totalRecipesFromFollowed = users.reduce(
    (sum, u) => sum + u.recipeCount,
    0,
  );
 
  if (isSessionLoading || loading) {
    return (
      <Stack gap="lg" p="md">
        <Skeleton height={48} width="60%" radius="md" />
        <Skeleton height={20} width="40%" radius="sm" />
        <SimpleGrid cols={{ base: 1, sm: 2 }}>
          <Skeleton height={80} radius="md" />
          <Skeleton height={80} radius="md" />
        </SimpleGrid>
        <SimpleGrid cols={{ base: 1, md: 2 }}>
          {SKELETON_CARDS.map((item) => (
            <Skeleton
              key={`following-skeleton-${item}`}
              height={280}
              radius="md"
            />
          ))}
        </SimpleGrid>
      </Stack>
    );
  }
 
  return (
    <Stack gap="xl" p="md">
      <Box>
        <Group gap="sm" align="center" mb={4}>
          <IconUserHeart size={32} className={classes.headerIcon} aria-hidden />
          <StyledText componentType="title" gradient order={2}>
            {translate('followingHeading')}
          </StyledText>
        </Group>
        <Text size="md" c="dimmed">
          {translate('followingSubtitle')}
        </Text>
      </Box>
 
      {totalFollowing > 0 && (
        <SimpleGrid cols={{ base: 1, sm: 2 }}>
          <StatCard
            icon={<IconUsersGroup size={20} />}
            label={translate('followingCount')}
            value={totalFollowing}
          />
          <StatCard
            icon={<IconToolsKitchen2 size={20} />}
            label={translate('followingTotalRecipes')}
            value={totalRecipesFromFollowed}
          />
        </SimpleGrid>
      )}
 
      {totalFollowing === 0 ? (
        <Center py={60}>
          <Stack align="center" gap="md">
            <ThemeIcon
              size={80}
              radius="xl"
              variant="gradient"
              gradient={{ from: 'pink.3', to: 'violet.3', deg: 45 }}
            >
              <IconUsers size={40} />
            </ThemeIcon>
            <Text c="dimmed" size="lg" ta="center" maw={400}>
              {translate('noFollowingYet')}
            </Text>
            <Button
              component={Link}
              href={PUBLIC_ROUTES.RECIPES as Route}
              variant="gradient"
              gradient={{ from: 'pink', to: 'violet', deg: 45 }}
              size="lg"
              mt="sm"
            >
              {translate('discoverChefs')}
            </Button>
          </Stack>
        </Center>
      ) : (
        <Stack gap="lg">
          {users.map((user) => (
            <Card
              key={user.id}
              withBorder
              radius="md"
              shadow="sm"
              className={classes.userCard}
            >
              <Stack gap="md">
                <Group justify="space-between" wrap="wrap">
                  <Group gap="md">
                    <Avatar
                      size="lg"
                      radius="xl"
                      variant="gradient"
                      gradient={{ from: 'pink', to: 'violet', deg: 135 }}
                    >
                      {getInitials(user.firstName, user.lastName)}
                    </Avatar>
                    <div>
                      <Text fw={600} size="lg">
                        {user.firstName} {user.lastName}
                      </Text>
                      <Text size="sm" c="dimmed">
                        @{user.userName}
                      </Text>
                    </div>
                  </Group>
 
                  <Group gap="md">
                    <Group gap={4}>
                      <IconChefHat
                        size={16}
                        color="var(--mantine-color-pink-6)"
                      />
                      <Text size="sm" fw={500}>
                        {user.recipeCount} {translate('recipes')}
                      </Text>
                    </Group>
                    <Tooltip label={translate('unfollow')}>
                      <Button
                        variant="light"
                        color="red"
                        size="xs"
                        leftSection={<IconUserMinus size={16} />}
                        className={classes.unfollowButton}
                        onClick={() => handleUnfollow(user.id)}
                      >
                        {translate('unfollow')}
                      </Button>
                    </Tooltip>
                  </Group>
                </Group>
 
                {user.latestRecipes.length > 0 && (
                  <Box>
                    <Text size="sm" fw={500} mb="xs" c="dimmed">
                      {translate('latestRecipes')}
                    </Text>
                    <RecipeCarousel
                      recipes={user.latestRecipes}
                      withFavorite
                      skeletonCount={3}
                    />
                  </Box>
                )}
              </Stack>
            </Card>
          ))}
        </Stack>
      )}
    </Stack>
  );
};
 
export default FollowingClient;