"use client"; import * as React from "react"; import { EditorContainer, EditorContentWrapper, getEditorClassNames, useEditor, } from "@plane/editor-core"; import { EditorBubbleMenu } from "./menus/bubble-menu"; import { RichTextEditorExtensions } from "./extensions"; import { DeleteImage, IMentionSuggestion, RestoreImage, UploadImage, } from "@plane/editor-types"; export type IRichTextEditor = { value: string; dragDropEnabled?: boolean; uploadFile: UploadImage; restoreFile: RestoreImage; deleteFile: DeleteImage; noBorder?: boolean; borderOnFocus?: boolean; cancelUploadImage?: () => any; rerenderOnPropsChange?: { id: string; description_html: string; }; customClassName?: string; editorContentCustomClassNames?: string; onChange?: (json: any, html: string) => void; setIsSubmitting?: ( isSubmitting: "submitting" | "submitted" | "saved", ) => void; setShouldShowAlert?: (showAlert: boolean) => void; forwardedRef?: any; debouncedUpdatesEnabled?: boolean; mentionHighlights?: string[]; mentionSuggestions?: IMentionSuggestion[]; }; export interface RichTextEditorProps extends IRichTextEditor { forwardedRef?: React.Ref; } interface EditorHandle { clearEditor: () => void; setEditorValue: (content: string) => void; } const RichTextEditor = ({ onChange, dragDropEnabled, debouncedUpdatesEnabled, setIsSubmitting, setShouldShowAlert, editorContentCustomClassNames, value, uploadFile, deleteFile, noBorder, cancelUploadImage, borderOnFocus, customClassName, restoreFile, forwardedRef, mentionHighlights, rerenderOnPropsChange, mentionSuggestions, }: RichTextEditorProps) => { const editor = useEditor({ onChange, debouncedUpdatesEnabled, setIsSubmitting, setShouldShowAlert, value, uploadFile, cancelUploadImage, deleteFile, restoreFile, forwardedRef, rerenderOnPropsChange, extensions: RichTextEditorExtensions( uploadFile, setIsSubmitting, dragDropEnabled, ), mentionHighlights, mentionSuggestions, }); const editorClassNames = getEditorClassNames({ noBorder, borderOnFocus, customClassName, }); if (!editor) return null; return ( {editor && }
); }; const RichTextEditorWithRef = React.forwardRef( (props, ref) => , ); RichTextEditorWithRef.displayName = "RichTextEditorWithRef"; export { RichTextEditor, RichTextEditorWithRef };