mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 18:22:37 +10:00
* delete unused component * return page prosemirror content * prefetch pages * use prosemirro json content on editor * cache page query with id and slug as key * Show notice on collaboration disconnection * enable scroll while typing * enable immediatelyRender * avoid image break in PDF print * Comment editor rendering props
82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
import { EditorContent, useEditor } from "@tiptap/react";
|
|
import { Placeholder } from "@tiptap/extension-placeholder";
|
|
import { Underline } from "@tiptap/extension-underline";
|
|
import { Link } from "@tiptap/extension-link";
|
|
import { StarterKit } from "@tiptap/starter-kit";
|
|
import classes from "./comment.module.css";
|
|
import { useFocusWithin } from "@mantine/hooks";
|
|
import clsx from "clsx";
|
|
import { forwardRef, useEffect, useImperativeHandle } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
interface CommentEditorProps {
|
|
defaultContent?: any;
|
|
onUpdate?: any;
|
|
editable: boolean;
|
|
placeholder?: string;
|
|
autofocus?: boolean;
|
|
}
|
|
|
|
const CommentEditor = forwardRef(
|
|
(
|
|
{
|
|
defaultContent,
|
|
onUpdate,
|
|
editable,
|
|
placeholder,
|
|
autofocus,
|
|
}: CommentEditorProps,
|
|
ref,
|
|
) => {
|
|
const { t } = useTranslation();
|
|
const { ref: focusRef, focused } = useFocusWithin();
|
|
|
|
const commentEditor = useEditor({
|
|
extensions: [
|
|
StarterKit.configure({
|
|
gapcursor: false,
|
|
dropcursor: false,
|
|
}),
|
|
Placeholder.configure({
|
|
placeholder: placeholder || t("Reply..."),
|
|
}),
|
|
Underline,
|
|
Link,
|
|
],
|
|
onUpdate({ editor }) {
|
|
if (onUpdate) onUpdate(editor.getJSON());
|
|
},
|
|
content: defaultContent,
|
|
editable,
|
|
immediatelyRender: true,
|
|
shouldRerenderOnTransaction: false,
|
|
autofocus: (autofocus && "end") || false,
|
|
});
|
|
|
|
useEffect(() => {
|
|
setTimeout(() => {
|
|
if (autofocus) {
|
|
commentEditor?.commands.focus("end");
|
|
}
|
|
}, 10);
|
|
}, [commentEditor, autofocus]);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
clearContent: () => {
|
|
commentEditor.commands.clearContent();
|
|
},
|
|
}));
|
|
|
|
return (
|
|
<div ref={focusRef} className={classes.commentEditor}>
|
|
<EditorContent
|
|
editor={commentEditor}
|
|
className={clsx(classes.ProseMirror, { [classes.focused]: focused })}
|
|
/>
|
|
</div>
|
|
);
|
|
},
|
|
);
|
|
|
|
export default CommentEditor;
|