fix home flickers (#2108)

This commit is contained in:
Philip Okugbe
2026-04-13 23:54:03 +01:00
committed by GitHub
parent 4056bd0104
commit a3a9f35005
2 changed files with 32 additions and 4 deletions
@@ -1,4 +1,4 @@
import { Text, Card, rem, Group, Button } from "@mantine/core";
import { Text, Card, rem, Group, Button, Skeleton } from "@mantine/core";
import {
prefetchSpace,
useGetSpacesQuery,
@@ -13,9 +13,37 @@ import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
import { AvatarIconType } from "@/features/attachments/types/attachment.types.ts";
import CardCarousel from "@/components/ui/card-carousel";
function SpaceCardSkeleton() {
return (
<Card p="xs" radius="md" withBorder className={classes.card}>
<Card.Section className={classes.cardSection} h={40} />
<Skeleton circle height={38} width={38} mt={rem(-20)} />
<Skeleton height={14} mt="xs" width="70%" radius="xl" />
<Skeleton height={10} mt="md" width="40%" radius="xl" />
</Card>
);
}
export default function SpaceCarousel() {
const { t } = useTranslation();
const { data } = useGetSpacesQuery({ limit: 20 });
const { data, isPending } = useGetSpacesQuery({ limit: 20 });
if (isPending) {
return (
<>
<Group justify="space-between" align="center" mb="md">
<Text fz="sm" fw={500}>
{t("Spaces you belong to")}
</Text>
</Group>
<CardCarousel ariaLabel={t("Spaces you belong to")}>
{Array.from({ length: 4 }, (_, i) => (
<SpaceCardSkeleton key={i} />
))}
</CardCarousel>
</>
);
}
const cards = data?.items.map((space) => (
<Card