mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
192 lines
5.0 KiB
TypeScript
192 lines
5.0 KiB
TypeScript
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
import {
|
|
ActionIcon,
|
|
Anchor,
|
|
Center,
|
|
Group,
|
|
Loader,
|
|
Modal,
|
|
ScrollArea,
|
|
Text,
|
|
Tooltip,
|
|
} from "@mantine/core";
|
|
import { IconDownload } from "@tabler/icons-react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { SearchInput } from "@/components/common/search-input.tsx";
|
|
import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
|
|
import { usePageAttachmentsQuery } from "@/features/attachments/queries/attachment-query.ts";
|
|
import { IPageAttachment } from "@/features/attachments/types/attachment.types.ts";
|
|
import { AttachmentFileIcon } from "@/features/attachments/components/attachment-file-icon.tsx";
|
|
import { formatBytes } from "@/lib";
|
|
import { getFileUrl } from "@/lib/config.ts";
|
|
import { formattedDate } from "@/lib/time.ts";
|
|
|
|
interface PageAttachmentsModalProps {
|
|
pageId: string;
|
|
open: boolean;
|
|
onClose: () => void;
|
|
}
|
|
|
|
export default function PageAttachmentsModal({
|
|
pageId,
|
|
open,
|
|
onClose,
|
|
}: PageAttachmentsModalProps) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Modal
|
|
opened={open}
|
|
onClose={onClose}
|
|
title={t("Attachments")}
|
|
size={800}
|
|
closeButtonProps={{ "aria-label": t("Close") }}
|
|
>
|
|
<PageAttachmentsList pageId={pageId} />
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
function PageAttachmentsList({ pageId }: { pageId: string }) {
|
|
const { t } = useTranslation();
|
|
const [search, setSearch] = useState("");
|
|
const {
|
|
data,
|
|
isLoading,
|
|
isError,
|
|
isFetching,
|
|
fetchNextPage,
|
|
hasNextPage,
|
|
isFetchingNextPage,
|
|
} = usePageAttachmentsQuery(pageId, search);
|
|
|
|
const attachments = useMemo(
|
|
() => data?.pages.flatMap((page) => page.items) ?? [],
|
|
[data],
|
|
);
|
|
|
|
const loadMoreRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
const sentinel = loadMoreRef.current;
|
|
if (!sentinel || !hasNextPage) return;
|
|
|
|
const observer = new IntersectionObserver(
|
|
(entries) => {
|
|
if (entries[0].isIntersecting && !isFetching) {
|
|
fetchNextPage();
|
|
}
|
|
},
|
|
{ threshold: 0.1 },
|
|
);
|
|
|
|
observer.observe(sentinel);
|
|
return () => observer.disconnect();
|
|
}, [fetchNextPage, hasNextPage, isFetching]);
|
|
|
|
const handleSearch = useCallback((value: string) => setSearch(value), []);
|
|
|
|
return (
|
|
<>
|
|
<SearchInput
|
|
onSearch={handleSearch}
|
|
placeholder={t("Search attachments...")}
|
|
/>
|
|
|
|
{isLoading ? (
|
|
<Center py="xl">
|
|
<Loader size="sm" />
|
|
</Center>
|
|
) : isError ? (
|
|
<Center py="xl">
|
|
<Text size="sm" c="dimmed">
|
|
{t("Error loading attachments.")}
|
|
</Text>
|
|
</Center>
|
|
) : attachments.length === 0 ? (
|
|
<Center py="xl">
|
|
<Text size="sm" c="dimmed">
|
|
{search
|
|
? t("No results found")
|
|
: t("No attachments on this page yet.")}
|
|
</Text>
|
|
</Center>
|
|
) : (
|
|
<ScrollArea.Autosize mah={480} type="scroll" scrollbarSize={5}>
|
|
{attachments.map((attachment) => (
|
|
<AttachmentRow key={attachment.id} attachment={attachment} />
|
|
))}
|
|
{hasNextPage && <div ref={loadMoreRef} style={{ height: 1 }} />}
|
|
{isFetchingNextPage && (
|
|
<Center py="sm">
|
|
<Loader size="sm" />
|
|
</Center>
|
|
)}
|
|
</ScrollArea.Autosize>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
function AttachmentRow({ attachment }: { attachment: IPageAttachment }) {
|
|
const { t } = useTranslation();
|
|
const fileUrl = getFileUrl(attachment.url);
|
|
|
|
return (
|
|
<Group wrap="nowrap" gap="md" py="sm" pr="xs">
|
|
<AttachmentFileIcon
|
|
fileExt={attachment.fileExt}
|
|
mimeType={attachment.mimeType}
|
|
/>
|
|
|
|
<div style={{ flex: 1, minWidth: 0 }}>
|
|
<Anchor
|
|
href={fileUrl}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
size="sm"
|
|
fw={500}
|
|
c="inherit"
|
|
truncate="end"
|
|
style={{ display: "block" }}
|
|
>
|
|
{attachment.fileName}
|
|
</Anchor>
|
|
<Text size="xs" c="dimmed" mt={2} truncate="end">
|
|
{formatBytes(Number(attachment.fileSize))}
|
|
{" · "}
|
|
{formattedDate(new Date(attachment.createdAt))}
|
|
</Text>
|
|
</div>
|
|
|
|
{attachment.creator && (
|
|
<Tooltip
|
|
label={t("Uploaded by {{name}}", { name: attachment.creator.name })}
|
|
withArrow
|
|
>
|
|
<CustomAvatar
|
|
avatarUrl={attachment.creator.avatarUrl}
|
|
name={attachment.creator.name}
|
|
size="sm"
|
|
/>
|
|
</Tooltip>
|
|
)}
|
|
|
|
<Tooltip label={t("Download attachment")} withArrow>
|
|
<ActionIcon
|
|
component="a"
|
|
href={fileUrl}
|
|
download={attachment.fileName}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
variant="subtle"
|
|
color="gray"
|
|
aria-label={t("Download {{name}}", { name: attachment.fileName })}
|
|
>
|
|
<IconDownload size={18} />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
</Group>
|
|
);
|
|
}
|