mirror of
https://github.com/docmost/docmost.git
synced 2026-05-15 05:04:06 +08:00
de60aa7e61
* feat: synced blocks (transclusion) * fix:remove name * make placeholders smaller * feat: enforce strict transclusion schema * fix: scope synced blocks to workspace, gate unsync on edit permission * fix collab module error
110 lines
3.1 KiB
TypeScript
110 lines
3.1 KiB
TypeScript
import "@/features/editor/styles/index.css";
|
|
import React, { useCallback, useEffect, useMemo, useRef } from "react";
|
|
import { EditorProvider } from "@tiptap/react";
|
|
import { mainExtensions } from "@/features/editor/extensions/extensions";
|
|
import { Document } from "@tiptap/extension-document";
|
|
import { Heading, UniqueID } from "@docmost/editor-ext";
|
|
import { Text } from "@tiptap/extension-text";
|
|
import { Placeholder } from "@tiptap/extension-placeholder";
|
|
import { useAtom } from "jotai";
|
|
import { readOnlyEditorAtom } from "@/features/editor/atoms/editor-atoms.ts";
|
|
import { useEditorScroll } from "./hooks/use-editor-scroll";
|
|
import { TransclusionLookupProvider } from "@/features/editor/components/transclusion/transclusion-lookup-context";
|
|
|
|
interface PageEditorProps {
|
|
title: string;
|
|
content: any;
|
|
pageId?: string;
|
|
/**
|
|
* When rendering inside a public share, pass the share's id (or key). Lookups
|
|
* for transclusion content then resolve against the share graph instead of
|
|
* the viewer's personal permissions, so a share never leaks source content
|
|
* that isn't itself shared.
|
|
*/
|
|
shareId?: string;
|
|
}
|
|
|
|
export default function ReadonlyPageEditor({
|
|
title,
|
|
content,
|
|
pageId,
|
|
shareId,
|
|
}: PageEditorProps) {
|
|
const [, setReadOnlyEditor] = useAtom(readOnlyEditorAtom);
|
|
const isComponentMounted = useRef(false);
|
|
const editorCreated = useRef(false);
|
|
|
|
const canScroll = useCallback(
|
|
() => isComponentMounted.current && editorCreated.current,
|
|
[isComponentMounted, editorCreated],
|
|
);
|
|
const initialScrollTo = window.location.hash
|
|
? window.location.hash.slice(1)
|
|
: "";
|
|
const { handleScrollTo } = useEditorScroll({ canScroll, initialScrollTo });
|
|
|
|
useEffect(() => {
|
|
isComponentMounted.current = true;
|
|
}, []);
|
|
|
|
const extensions = useMemo(() => {
|
|
const filteredExtensions = mainExtensions.filter(
|
|
(ext) => ext.name !== "uniqueID",
|
|
);
|
|
|
|
return [
|
|
...filteredExtensions,
|
|
UniqueID.configure({
|
|
types: ["heading", "paragraph"],
|
|
updateDocument: false,
|
|
}),
|
|
];
|
|
}, []);
|
|
|
|
const titleExtensions = [
|
|
Document.extend({
|
|
content: "heading",
|
|
}),
|
|
Heading,
|
|
Text,
|
|
Placeholder.configure({
|
|
placeholder: "Untitled",
|
|
showOnlyWhenEditable: false,
|
|
}),
|
|
];
|
|
|
|
return (
|
|
<TransclusionLookupProvider shareId={shareId}>
|
|
<div className="page-title">
|
|
<EditorProvider
|
|
editable={false}
|
|
immediatelyRender={true}
|
|
extensions={titleExtensions}
|
|
content={title}
|
|
></EditorProvider>
|
|
</div>
|
|
|
|
<EditorProvider
|
|
editable={false}
|
|
immediatelyRender={true}
|
|
extensions={extensions}
|
|
content={content}
|
|
onCreate={({ editor }) => {
|
|
if (editor) {
|
|
if (pageId) {
|
|
// @ts-ignore
|
|
editor.storage.pageId = pageId;
|
|
}
|
|
// @ts-ignore
|
|
setReadOnlyEditor(editor);
|
|
|
|
handleScrollTo(editor);
|
|
editorCreated.current = true;
|
|
}
|
|
}}
|
|
></EditorProvider>
|
|
<div style={{ paddingBottom: "20vh" }}></div>
|
|
</TransclusionLookupProvider>
|
|
);
|
|
}
|