mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 05:12:36 +10:00
* Add copy page to space endpoint * copy storage function * copy function * feat: copy attachments too * Copy page - WIP * fix type * sync * cleanup
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import { Modal, Button, Group, Text } from "@mantine/core";
|
|
import { copyPageToSpace } from "@/features/page/services/page-service.ts";
|
|
import { useState } from "react";
|
|
import { notifications } from "@mantine/notifications";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ISpace } from "@/features/space/types/space.types.ts";
|
|
import { queryClient } from "@/main.tsx";
|
|
import { SpaceSelect } from "@/features/space/components/sidebar/space-select.tsx";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { buildPageUrl } from "@/features/page/page.utils.ts";
|
|
|
|
interface CopyPageModalProps {
|
|
pageId: string;
|
|
currentSpaceSlug: string;
|
|
open: boolean;
|
|
onClose: () => void;
|
|
}
|
|
|
|
export default function CopyPageModal({
|
|
pageId,
|
|
currentSpaceSlug,
|
|
open,
|
|
onClose,
|
|
}: CopyPageModalProps) {
|
|
const { t } = useTranslation();
|
|
const [targetSpace, setTargetSpace] = useState<ISpace>(null);
|
|
const navigate = useNavigate();
|
|
|
|
const handleCopy = async () => {
|
|
if (!targetSpace) return;
|
|
|
|
try {
|
|
const copiedPage = await copyPageToSpace({
|
|
pageId,
|
|
spaceId: targetSpace.id,
|
|
});
|
|
queryClient.removeQueries({
|
|
predicate: (item) =>
|
|
["pages", "sidebar-pages", "root-sidebar-pages"].includes(
|
|
item.queryKey[0] as string,
|
|
),
|
|
});
|
|
|
|
const pageUrl = buildPageUrl(
|
|
copiedPage.space.slug,
|
|
copiedPage.slugId,
|
|
copiedPage.title,
|
|
);
|
|
navigate(pageUrl);
|
|
notifications.show({
|
|
message: t("Page copied successfully"),
|
|
});
|
|
onClose();
|
|
setTargetSpace(null);
|
|
} catch (err) {
|
|
notifications.show({
|
|
message: err.response?.data.message || "An error occurred",
|
|
color: "red",
|
|
});
|
|
console.log(err);
|
|
}
|
|
};
|
|
|
|
const handleChange = (space: ISpace) => {
|
|
setTargetSpace(space);
|
|
};
|
|
|
|
return (
|
|
<Modal.Root
|
|
opened={open}
|
|
onClose={onClose}
|
|
size={500}
|
|
padding="xl"
|
|
yOffset="10vh"
|
|
xOffset={0}
|
|
mah={400}
|
|
onClick={(e) => e.stopPropagation()}
|
|
>
|
|
<Modal.Overlay />
|
|
<Modal.Content style={{ overflow: "hidden" }}>
|
|
<Modal.Header py={0}>
|
|
<Modal.Title fw={500}>{t("Copy page")}</Modal.Title>
|
|
<Modal.CloseButton />
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<Text mb="xs" c="dimmed" size="sm">
|
|
{t("Copy page to a different space.")}
|
|
</Text>
|
|
|
|
<SpaceSelect
|
|
value={currentSpaceSlug}
|
|
clearable={false}
|
|
onChange={handleChange}
|
|
/>
|
|
<Group justify="end" mt="md">
|
|
<Button onClick={onClose} variant="default">
|
|
{t("Cancel")}
|
|
</Button>
|
|
<Button onClick={handleCopy}>{t("Copy")}</Button>
|
|
</Group>
|
|
</Modal.Body>
|
|
</Modal.Content>
|
|
</Modal.Root>
|
|
);
|
|
}
|