mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 15:23:07 +08:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { Text, Avatar, SimpleGrid, Card, rem } from "@mantine/core";
|
|
import React, { useEffect } from 'react';
|
|
import {
|
|
prefetchSpace,
|
|
useGetSpacesQuery,
|
|
} from "@/features/space/queries/space-query.ts";
|
|
import { getSpaceUrl } from "@/lib/config.ts";
|
|
import { Link } from "react-router-dom";
|
|
import classes from "./space-grid.module.css";
|
|
import { formatMemberCount } from "@/lib";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function SpaceGrid() {
|
|
const { t } = useTranslation();
|
|
const { data, isLoading } = useGetSpacesQuery({ page: 1 });
|
|
|
|
const cards = data?.items.map((space, index) => (
|
|
<Card
|
|
key={space.id}
|
|
p="xs"
|
|
radius="md"
|
|
component={Link}
|
|
to={getSpaceUrl(space.slug)}
|
|
onMouseEnter={() => prefetchSpace(space.slug, space.id)}
|
|
className={classes.card}
|
|
withBorder
|
|
>
|
|
<Card.Section className={classes.cardSection} h={40}></Card.Section>
|
|
<Avatar
|
|
name={space.name}
|
|
color="initials"
|
|
variant="filled"
|
|
size="md"
|
|
mt={rem(-20)}
|
|
/>
|
|
|
|
<Text fz="md" fw={500} mt="xs" className={classes.title}>
|
|
{space.name}
|
|
</Text>
|
|
|
|
<Text c="dimmed" size="xs" fw={700} mt="md">
|
|
{formatMemberCount(space.memberCount, t)}
|
|
</Text>
|
|
</Card>
|
|
));
|
|
|
|
return (
|
|
<>
|
|
<Text fz="sm" fw={500} mb={"md"}>
|
|
{t("Spaces you belong to")}
|
|
</Text>
|
|
|
|
<SimpleGrid cols={{ base: 1, xs: 2, sm: 3 }}>{cards}</SimpleGrid>
|
|
</>
|
|
);
|
|
}
|