mirror of
https://github.com/docmost/docmost.git
synced 2025-11-25 14:11:54 +10:00
* wip * Space export * option to export pages with children * include attachments in exports * unified export UI * cleanup * fix: change export icon * add export button to space settings * cleanups * export name
105 lines
2.7 KiB
TypeScript
105 lines
2.7 KiB
TypeScript
import { Modal, Button, Group, Text, Select, Switch } from "@mantine/core";
|
|
import { exportPage } from "@/features/page/services/page-service.ts";
|
|
import { useState } from "react";
|
|
import * as React from "react";
|
|
import { ExportFormat } from "@/features/page/types/page.types.ts";
|
|
import { notifications } from "@mantine/notifications";
|
|
|
|
interface PageExportModalProps {
|
|
pageId: string;
|
|
open: boolean;
|
|
onClose: () => void;
|
|
}
|
|
|
|
export default function PageExportModal({
|
|
pageId,
|
|
open,
|
|
onClose,
|
|
}: PageExportModalProps) {
|
|
const [format, setFormat] = useState<ExportFormat>(ExportFormat.Markdown);
|
|
|
|
const handleExport = async () => {
|
|
try {
|
|
await exportPage({ pageId: pageId, format });
|
|
onClose();
|
|
} catch (err) {
|
|
notifications.show({
|
|
message: "Export failed:" + err.response?.data.message,
|
|
color: "red",
|
|
});
|
|
console.error("export error", err);
|
|
}
|
|
};
|
|
|
|
const handleChange = (format: ExportFormat) => {
|
|
setFormat(format);
|
|
};
|
|
|
|
return (
|
|
<Modal.Root
|
|
opened={open}
|
|
onClose={onClose}
|
|
size={500}
|
|
padding="xl"
|
|
yOffset="10vh"
|
|
xOffset={0}
|
|
mah={400}
|
|
>
|
|
<Modal.Overlay />
|
|
<Modal.Content style={{ overflow: "hidden" }}>
|
|
<Modal.Header py={0}>
|
|
<Modal.Title fw={500}>Export page</Modal.Title>
|
|
<Modal.CloseButton />
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<Group justify="space-between" wrap="nowrap">
|
|
<div>
|
|
<Text size="md">Format</Text>
|
|
</div>
|
|
<ExportFormatSelection format={format} onChange={handleChange} />
|
|
|
|
</Group>
|
|
|
|
<Group justify="space-between" wrap="nowrap" pt="md">
|
|
<div>
|
|
<Text size="md">Include subpages</Text>
|
|
</div>
|
|
<Switch defaultChecked />
|
|
|
|
</Group>
|
|
|
|
|
|
<Group justify="center" mt="md">
|
|
<Button onClick={onClose} variant="default">
|
|
Cancel
|
|
</Button>
|
|
<Button onClick={handleExport}>Export</Button>
|
|
</Group>
|
|
</Modal.Body>
|
|
</Modal.Content>
|
|
</Modal.Root>
|
|
);
|
|
}
|
|
|
|
interface ExportFormatSelection {
|
|
format: ExportFormat;
|
|
onChange: (value: string) => void;
|
|
}
|
|
function ExportFormatSelection({ format, onChange }: ExportFormatSelection) {
|
|
return (
|
|
<Select
|
|
data={[
|
|
{ value: "markdown", label: "Markdown" },
|
|
{ value: "html", label: "HTML" },
|
|
]}
|
|
defaultValue={format}
|
|
onChange={onChange}
|
|
styles={{ wrapper: { maxWidth: 120 } }}
|
|
comboboxProps={{ width: "120" }}
|
|
allowDeselect={false}
|
|
withCheckIcon={false}
|
|
aria-label="Select export format"
|
|
/>
|
|
);
|
|
}
|