mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
657fdf8cb7
* Tiptap3 migration - WIP * fix collaboration * remove unused code * fix flicker * disable duplicate extensions * update tiptap version * Switch to useEditorState - Set shouldRerenderOnTransaction to false * fix editable state * add tippyoptions for reference * merge main * tiptap 3.6.1 * fix bubble menu * fix converter * fix menus * fix collaboration caret css * fix: Set `isInitialized` to force immediate react node view rendering * feat: Migrate tippy.js menus to Floating UI * feat: Update collaboration connection for HocusPocus v3 * fix: Connect/disconnect websocketProvider * cleanup * cleanup * feat: Improved placeholder and upload handling for images * feat: Improved placeholder and upload handling for videos * refactor: Image node and view clean-up * feat: Improved placeholder and upload handling for attachments * fix: Video view styles * fix: Transaction handling on asset upload * fix: Use imageDimensionsFromStream * feat: Multiple file upload, improved placeholders, local previews * fix: Drag & drop, paste upload * fix: Allow media as attachment * * add skeleton pulse animation * add translation strings * fix attachment view responsiveness * fix collab connection status display * Tiptap v3.17.0 * fix suggestion menu exit bug * fix search shortcut * fix history editor css * tiptap 3.17.1 --------- Co-authored-by: Arek Nawo <areknawo@areknawo.com>
225 lines
6.3 KiB
TypeScript
225 lines
6.3 KiB
TypeScript
import { NodeViewProps, NodeViewWrapper } from "@tiptap/react";
|
|
import {
|
|
ActionIcon,
|
|
Button,
|
|
Card,
|
|
Group,
|
|
Image,
|
|
Text,
|
|
useComputedColorScheme,
|
|
} from "@mantine/core";
|
|
import { useState } from "react";
|
|
import { uploadFile } from "@/features/page/services/page-service.ts";
|
|
import { svgStringToFile } from "@/lib";
|
|
import { useDisclosure } from "@mantine/hooks";
|
|
import { getFileUrl } from "@/lib/config.ts";
|
|
import "@excalidraw/excalidraw/index.css";
|
|
import type { ExcalidrawImperativeAPI } from "@excalidraw/excalidraw/types";
|
|
import { IAttachment } from "@/features/attachments/types/attachment.types";
|
|
import ReactClearModal from "react-clear-modal";
|
|
import clsx from "clsx";
|
|
import { IconEdit } from "@tabler/icons-react";
|
|
import { lazy } from "react";
|
|
import { Suspense } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useHandleLibrary } from "@excalidraw/excalidraw";
|
|
import { localStorageLibraryAdapter } from "@/features/editor/components/excalidraw/excalidraw-utils.ts";
|
|
|
|
const Excalidraw = lazy(() =>
|
|
import("@excalidraw/excalidraw").then((module) => ({
|
|
default: module.Excalidraw,
|
|
})),
|
|
);
|
|
|
|
export default function ExcalidrawView(props: NodeViewProps) {
|
|
const { t } = useTranslation();
|
|
const { node, updateAttributes, editor, selected } = props;
|
|
const { src, title, width, attachmentId } = node.attrs;
|
|
|
|
const [excalidrawAPI, setExcalidrawAPI] =
|
|
useState<ExcalidrawImperativeAPI>(null);
|
|
useHandleLibrary({
|
|
excalidrawAPI,
|
|
adapter: localStorageLibraryAdapter,
|
|
});
|
|
const [excalidrawData, setExcalidrawData] = useState<any>(null);
|
|
const [opened, { open, close }] = useDisclosure(false);
|
|
const computedColorScheme = useComputedColorScheme();
|
|
|
|
const handleOpen = async () => {
|
|
if (!editor.isEditable) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
if (src) {
|
|
const url = getFileUrl(src);
|
|
const request = await fetch(url, {
|
|
credentials: "include",
|
|
cache: "no-store",
|
|
});
|
|
|
|
const { loadFromBlob } = await import("@excalidraw/excalidraw");
|
|
|
|
const data = await loadFromBlob(await request.blob(), null, null);
|
|
setExcalidrawData(data);
|
|
}
|
|
} catch (err) {
|
|
console.error(err);
|
|
} finally {
|
|
open();
|
|
}
|
|
};
|
|
|
|
const handleSave = async () => {
|
|
if (!excalidrawAPI) {
|
|
return;
|
|
}
|
|
|
|
const { exportToSvg } = await import("@excalidraw/excalidraw");
|
|
|
|
const svg = await exportToSvg({
|
|
elements: excalidrawAPI?.getSceneElements(),
|
|
appState: {
|
|
exportEmbedScene: true,
|
|
exportWithDarkMode: false,
|
|
},
|
|
files: excalidrawAPI?.getFiles(),
|
|
});
|
|
|
|
const serializer = new XMLSerializer();
|
|
let svgString = serializer.serializeToString(svg);
|
|
|
|
svgString = svgString.replace(
|
|
/https:\/\/unpkg\.com\/@excalidraw\/excalidraw@undefined/g,
|
|
"https://unpkg.com/@excalidraw/excalidraw@latest",
|
|
);
|
|
|
|
const fileName = "diagram.excalidraw.svg";
|
|
const excalidrawSvgFile = await svgStringToFile(svgString, fileName);
|
|
|
|
// @ts-ignore
|
|
const pageId = editor.storage?.pageId;
|
|
|
|
let attachment: IAttachment = null;
|
|
if (attachmentId) {
|
|
attachment = await uploadFile(excalidrawSvgFile, pageId, attachmentId);
|
|
} else {
|
|
attachment = await uploadFile(excalidrawSvgFile, pageId);
|
|
}
|
|
|
|
updateAttributes({
|
|
src: `/api/files/${attachment.id}/${attachment.fileName}?t=${new Date(attachment.updatedAt).getTime()}`,
|
|
title: attachment.fileName,
|
|
size: attachment.fileSize,
|
|
attachmentId: attachment.id,
|
|
});
|
|
|
|
close();
|
|
};
|
|
|
|
return (
|
|
<NodeViewWrapper data-drag-handle>
|
|
<ReactClearModal
|
|
style={{
|
|
backgroundColor: "rgba(0, 0, 0, 0.5)",
|
|
padding: 0,
|
|
zIndex: 200,
|
|
}}
|
|
isOpen={opened}
|
|
onRequestClose={close}
|
|
disableCloseOnBgClick={true}
|
|
contentProps={{
|
|
style: {
|
|
padding: 0,
|
|
width: "90vw",
|
|
},
|
|
}}
|
|
>
|
|
<Group
|
|
justify="flex-end"
|
|
wrap="nowrap"
|
|
bg="var(--mantine-color-body)"
|
|
p="xs"
|
|
>
|
|
<Button onClick={handleSave} size={"compact-sm"}>
|
|
{t("Save & Exit")}
|
|
</Button>
|
|
<Button onClick={close} color="red" size={"compact-sm"}>
|
|
{t("Exit")}
|
|
</Button>
|
|
</Group>
|
|
<div style={{ height: "90vh" }}>
|
|
<Suspense fallback={null}>
|
|
<Excalidraw
|
|
excalidrawAPI={(api) => setExcalidrawAPI(api)}
|
|
initialData={{
|
|
...excalidrawData,
|
|
scrollToContent: true,
|
|
}}
|
|
theme={computedColorScheme}
|
|
/>
|
|
</Suspense>
|
|
</div>
|
|
</ReactClearModal>
|
|
|
|
{src ? (
|
|
<div style={{ position: "relative" }}>
|
|
<Image
|
|
onClick={(e) => e.detail === 2 && handleOpen()}
|
|
radius="md"
|
|
fit="contain"
|
|
w={width}
|
|
src={getFileUrl(src)}
|
|
alt={title}
|
|
className={clsx(
|
|
selected ? "ProseMirror-selectednode" : "",
|
|
"alignCenter",
|
|
)}
|
|
/>
|
|
|
|
{selected && editor.isEditable && (
|
|
<ActionIcon
|
|
onClick={handleOpen}
|
|
variant="default"
|
|
color="gray"
|
|
mx="xs"
|
|
className="print-hide"
|
|
style={{
|
|
position: "absolute",
|
|
top: 8,
|
|
right: 8,
|
|
}}
|
|
>
|
|
<IconEdit size={18} />
|
|
</ActionIcon>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<Card
|
|
radius="md"
|
|
onClick={(e) => e.detail === 2 && handleOpen()}
|
|
p="xs"
|
|
style={{
|
|
display: "flex",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
withBorder
|
|
className={clsx(selected ? "ProseMirror-selectednode" : "")}
|
|
>
|
|
<div style={{ display: "flex", alignItems: "center" }}>
|
|
<ActionIcon variant="transparent" color="gray">
|
|
<IconEdit size={18} />
|
|
</ActionIcon>
|
|
|
|
<Text component="span" size="lg" c="dimmed">
|
|
{t("Double-click to edit Excalidraw diagram")}
|
|
</Text>
|
|
</div>
|
|
</Card>
|
|
)}
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|