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"; import { ListPlugin } from "@lexical/react/LexicalListPlugin"; import { MarkdownShortcutPlugin } from "@lexical/react/LexicalMarkdownShortcutPlugin"; import { RichTextPlugin } from "@lexical/react/LexicalRichTextPlugin"; import { HeadingNode, QuoteNode } from "@lexical/rich-text"; import { TableCellNode, TableNode, TableRowNode } from "@lexical/table"; import ExampleTheme from "./ExampleTheme"; import AutoLinkPlugin from "./plugins/AutoLinkPlugin"; import ToolbarPlugin from "./plugins/ToolbarPlugin"; import "./stylesEditor.css"; /* Detault toolbar items: - blockType - bold - italic - link */ export type TextEditorProps = { getText: () => string; setText: (text: string) => void; excludedToolbarItems?: string[]; variables?: string[]; }; const editorConfig = { theme: ExampleTheme, onError(error: any) { throw error; }, namespace: "", nodes: [ HeadingNode, ListNode, ListItemNode, QuoteNode, CodeNode, CodeHighlightNode, TableNode, TableCellNode, TableRowNode, AutoLinkNode, LinkNode, ], }; export const Editor = (props: TextEditorProps) => { return (
} placeholder="" />
); };