Files
ncd-fe/src/features/compose/editor/plugins/ref-plugin.tsx
2023-09-23 15:10:05 -05:00

19 lines
505 B
TypeScript

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;