import { observer } from "mobx-react"; import * as React from "react"; import { useTranslation } from "react-i18next"; import { mergeRefs } from "react-merge-refs"; import { useHistory, useRouteMatch } from "react-router-dom"; import fullWithCommentsPackage from "@shared/editor/packages/fullWithComments"; import { TeamPreference } from "@shared/types"; import Comment from "~/models/Comment"; import Document from "~/models/Document"; import { RefHandle } from "~/components/ContentEditable"; import Editor, { Props as EditorProps } from "~/components/Editor"; import Flex from "~/components/Flex"; import useStores from "~/hooks/useStores"; import { documentHistoryUrl, documentUrl, matchDocumentHistory, } from "~/utils/routeHelpers"; import { useDocumentContext } from "../../../components/DocumentContext"; import MultiplayerEditor from "./AsyncMultiplayerEditor"; import DocumentMeta from "./DocumentMeta"; import EditableTitle from "./EditableTitle"; type Props = Omit & { onChangeTitle: (text: string) => void; id: string; document: Document; isDraft: boolean; multiplayer?: boolean; onSave: (options: { done?: boolean; autosave?: boolean; publish?: boolean; }) => void; children: React.ReactNode; }; /** * The main document editor includes an editable title with metadata below it, * and support for commenting. */ function DocumentEditor(props: Props, ref: React.RefObject) { const titleRef = React.useRef(null); const { t } = useTranslation(); const match = useRouteMatch(); const { ui, comments, auth } = useStores(); const { user, team } = auth; const history = useHistory(); const { document, onChangeTitle, isDraft, shareId, readOnly, children, multiplayer, ...rest } = props; const childRef = React.useRef(null); const focusAtStart = React.useCallback(() => { if (ref.current) { ref.current.focusAtStart(); } }, [ref]); // Save document when blurring title, but delay so that if clicking on a // button this is allowed to execute first. const handleBlur = React.useCallback(() => { setTimeout(() => props.onSave({ autosave: true }), 250); }, [props]); const handleGoToNextInput = React.useCallback( (insertParagraph: boolean) => { if (insertParagraph && ref.current) { const { view } = ref.current; const { dispatch, state } = view; dispatch(state.tr.insert(0, state.schema.nodes.paragraph.create())); } focusAtStart(); }, [focusAtStart, ref] ); const handleClickComment = React.useCallback( (commentId?: string) => { if (commentId) { ui.expandComments(); history.replace({ pathname: window.location.pathname.replace(/\/history$/, ""), state: { commentId }, }); } else { history.replace({ pathname: window.location.pathname, }); } }, [ui, history] ); // Create a Comment model in local store when a comment mark is created, this // acts as a local draft before submission. const handleDraftComment = React.useCallback( (commentId: string, createdById: string) => { if (comments.get(commentId) || createdById !== user?.id) { return; } const comment = new Comment( { documentId: props.id, createdAt: new Date(), createdById, }, comments ); comment.id = commentId; comments.add(comment); ui.expandComments(); history.replace({ pathname: window.location.pathname.replace(/\/history$/, ""), state: { commentId }, }); }, [comments, user?.id, props.id, ui, history] ); // Soft delete the Comment model when associated mark is totally removed. const handleRemoveComment = React.useCallback( async (commentId: string) => { const comment = comments.get(commentId); if (comment?.isNew) { await comment?.delete(); } }, [comments] ); const { setEditor } = useDocumentContext(); const handleRefChanged = React.useCallback(setEditor, [setEditor]); const EditorComponent = multiplayer ? MultiplayerEditor : Editor; return ( {!shareId && ( )}
{children}
); } export default observer(React.forwardRef(DocumentEditor));