Fix: about section editor (#7287)

Co-authored-by: Keith Williams <keithwillcode@gmail.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Arindam Biswas
2023-03-09 13:06:37 +00:00
committed by GitHub
co-authored by Keith Williams Peer Richelsen
parent 2ddada49f9
commit c374f4fa20
2 changed files with 2 additions and 3 deletions
-2
View File
@@ -2,7 +2,6 @@ import { CodeHighlightNode, CodeNode } from "@lexical/code";
import { AutoLinkNode, LinkNode } from "@lexical/link";
import { ListItemNode, ListNode } from "@lexical/list";
import { TRANSFORMERS } from "@lexical/markdown";
import { AutoFocusPlugin } from "@lexical/react/LexicalAutoFocusPlugin";
import { LexicalComposer } from "@lexical/react/LexicalComposer";
import { ContentEditable } from "@lexical/react/LexicalContentEditable";
import { LinkPlugin } from "@lexical/react/LexicalLinkPlugin";
@@ -71,7 +70,6 @@ export const Editor = (props: TextEditorProps) => {
contentEditable={<ContentEditable style={{ height: props.height }} className="editor-input" />}
placeholder={<div className="-mt-11 p-3 text-sm text-gray-300">{props.placeholder || ""}</div>}
/>
<AutoFocusPlugin />
<ListPlugin />
<LinkPlugin />
<AutoLinkPlugin />
@@ -349,11 +349,12 @@ export default function ToolbarPlugin(props: TextEditorProps) {
$getRoot().select();
$insertNodes(nodes);
editor.registerUpdateListener(({ editorState }) => {
editor.registerUpdateListener(({ editorState, prevEditorState }) => {
editorState.read(() => {
const textInHtml = $generateHtmlFromNodes(editor);
props.setText(textInHtml);
});
if (!prevEditorState._selection) editor.blur();
});
});
}, []);