Files
outline/app/scenes/Document/components/Editor.tsx
Tom Moor cf58d8e3e1 fix: Capture drop events in clickable padding below editor (#3376)
* fix: Capture drop events in clickable padding below editor

* fix: Inconsistency in drop handling
2022-04-15 09:03:25 -07:00

123 lines
3.2 KiB
TypeScript

import { observer } from "mobx-react";
import * as React from "react";
import { useTranslation } from "react-i18next";
import { useRouteMatch } from "react-router-dom";
import fullPackage from "@shared/editor/packages/full";
import Document from "~/models/Document";
import { RefHandle } from "~/components/ContentEditable";
import DocumentMetaWithViews from "~/components/DocumentMetaWithViews";
import Editor, { Props as EditorProps } from "~/components/Editor";
import Flex from "~/components/Flex";
import {
documentHistoryUrl,
documentUrl,
matchDocumentHistory,
} from "~/utils/routeHelpers";
import MultiplayerEditor from "./AsyncMultiplayerEditor";
import EditableTitle from "./EditableTitle";
type Props = Omit<EditorProps, "extensions"> & {
onChangeTitle: (text: string) => void;
title: string;
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 hover previews of internal links.
*/
function DocumentEditor(props: Props, ref: React.RefObject<any>) {
const titleRef = React.useRef<RefHandle>(null);
const { t } = useTranslation();
const match = useRouteMatch();
const {
document,
title,
onChangeTitle,
isDraft,
shareId,
readOnly,
children,
multiplayer,
...rest
} = props;
const focusAtStart = React.useCallback(() => {
if (ref.current) {
ref.current.focusAtStart();
}
}, [ref]);
const handleBlur = React.useCallback(() => {
props.onSave({ autosave: true });
}, [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 EditorComponent = multiplayer ? MultiplayerEditor : Editor;
return (
<Flex auto column>
<EditableTitle
ref={titleRef}
value={title}
readOnly={readOnly}
document={document}
onGoToNextInput={handleGoToNextInput}
onChange={onChangeTitle}
onBlur={handleBlur}
starrable={!shareId}
placeholder={t("Untitled")}
/>
{!shareId && (
<DocumentMetaWithViews
isDraft={isDraft}
document={document}
to={
match.path === matchDocumentHistory
? documentUrl(document)
: documentHistoryUrl(document)
}
rtl={
titleRef.current?.getComputedDirection() === "rtl" ? true : false
}
/>
)}
<EditorComponent
ref={ref}
autoFocus={!!title && !props.defaultValue}
placeholder={t("Type '/' to insert, or start writing…")}
scrollTo={window.location.hash}
readOnly={readOnly}
shareId={shareId}
extensions={fullPackage}
grow
{...rest}
/>
{children}
</Flex>
);
}
export default observer(React.forwardRef(DocumentEditor));