import { FC } from "react"; import { EditorState, LexicalEditor, $getRoot, $getSelection } from "lexical"; import { LexicalComposer } from "@lexical/react/LexicalComposer"; import { ContentEditable } from "@lexical/react/LexicalContentEditable"; import { RichTextPlugin } from "@lexical/react/LexicalRichTextPlugin"; import { LinkPlugin } from "@lexical/react/LexicalLinkPlugin"; import { ListPlugin } from "@lexical/react/LexicalListPlugin"; import { HistoryPlugin } from "@lexical/react/LexicalHistoryPlugin"; import { MarkdownShortcutPlugin } from "@lexical/react/LexicalMarkdownShortcutPlugin"; import { TRANSFORMERS, CHECK_LIST } from "@lexical/markdown"; import { OnChangePlugin } from "@lexical/react/LexicalOnChangePlugin"; import { $generateHtmlFromNodes } from "@lexical/html"; import { CheckListPlugin } from "@lexical/react/LexicalCheckListPlugin"; // custom plugins import { CodeHighlightPlugin } from "./plugins/code-highlight"; import { LexicalToolbar } from "./toolbar"; // config import { initialConfig } from "./config"; // helpers import { getValidatedValue } from "./helpers/editor"; export interface RichTextEditorProps { onChange: (state: string) => void; id: string; value: string; } const RichTextEditor: FC = (props) => { // props const { onChange, value, id } = props; function handleChange(state: EditorState, editor: LexicalEditor) { state.read(() => { onChange(JSON.stringify(state.toJSON())); }); } return (
} placeholder={
Enter some text...
} />
); }; export default RichTextEditor;