Fix: about section editor (#7287)
Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>pull/7634/head
parent
2ddada49f9
commit
c374f4fa20
|
@ -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();
|
||||
});
|
||||
});
|
||||
}, []);
|
||||
|
|
Loading…
Reference in New Issue