lexical: add RefPlugin to set the ref

This commit is contained in:
Alex Gleason
2023-09-23 15:10:05 -05:00
parent d92c150d9d
commit a67b5f8a25
2 changed files with 21 additions and 4 deletions

View File

@ -0,0 +1,18 @@
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import { LexicalEditor } from 'lexical';
import React, { useEffect } from 'react';
/** Set the ref to the current Lexical editor instance. */
const RefPlugin = React.forwardRef<LexicalEditor>((_props, ref) => {
const [editor] = useLexicalComposerContext();
useEffect(() => {
if (ref && typeof ref !== 'function') {
ref.current = editor;
}
}, [editor]);
return null;
});
export default RefPlugin;