'use client'; import React, { useEffect, useRef, useState } from 'react'; import 'quill/dist/quill.snow.css'; import { sanitizeHtml } from '@/lib/utils/email-formatter'; interface RichEmailEditorProps { initialContent: string; onChange: (content: string) => void; placeholder?: string; minHeight?: string; maxHeight?: string; preserveFormatting?: boolean; } const RichEmailEditor: React.FC = ({ initialContent, onChange, placeholder = 'Write your message here...', minHeight = '200px', maxHeight = 'calc(100vh - 400px)', preserveFormatting = false, }) => { const editorRef = useRef(null); const toolbarRef = useRef(null); const quillRef = useRef(null); const [isReady, setIsReady] = useState(false); // Initialize Quill editor when component mounts useEffect(() => { // Import Quill dynamically (client-side only) const initializeQuill = async () => { if (!editorRef.current || !toolbarRef.current) return; const Quill = (await import('quill')).default; // Import quill-better-table let tableModule = null; try { const QuillBetterTable = await import('quill-better-table'); // Register the table module if available if (QuillBetterTable && QuillBetterTable.default) { Quill.register({ 'modules/better-table': QuillBetterTable.default }, true); tableModule = QuillBetterTable.default; console.log('Better Table module registered successfully'); } } catch (err) { console.warn('Table module not available:', err); } // Define custom formats/modules with table support const emailToolbarOptions = [ ['bold', 'italic', 'underline', 'strike'], [{ 'color': [] }, { 'background': [] }], [{ 'list': 'ordered'}, { 'list': 'bullet' }], [{ 'indent': '-1'}, { 'indent': '+1' }], [{ 'align': [] }], ['link'], ['clean'], ]; // Create new Quill instance with the DOM element and custom toolbar const editorElement = editorRef.current; quillRef.current = new Quill(editorElement, { modules: { toolbar: { container: toolbarRef.current, handlers: { // Add any custom toolbar handlers here } }, // Don't initialize better-table yet - we'll do it after content is loaded 'better-table': false, }, placeholder: placeholder, theme: 'snow', }); // Set initial content (sanitized) if (initialContent) { try { // First, ensure we preserve the raw HTML structure const preservedContent = sanitizeHtml(initialContent); // Check if there are tables in the content const hasTables = preservedContent.includes(' { try { // Clean up any existing tables first const tables = quillRef.current.root.querySelectorAll('table'); tables.forEach((table: HTMLTableElement) => { // Add required data attributes that the module expects if (!table.getAttribute('data-table')) { table.setAttribute('data-table', 'true'); } }); // Initialize the module now that content is already in place const betterTableModule = { operationMenu: { items: { unmergeCells: { text: 'Unmerge cells' } } } }; // Force a refresh quillRef.current.update(); // Ensure the cursor and scroll position is at the top of the editor quillRef.current.setSelection(0, 0); // Also scroll the container to the top if (editorRef.current) { editorRef.current.scrollTop = 0; // Also find and scroll parent containers that might have scroll const scrollContainer = editorRef.current.closest('.ql-container'); if (scrollContainer) { scrollContainer.scrollTop = 0; } // One more check for nested scroll containers (like overflow divs) const parentScrollContainer = editorRef.current.closest('.rich-email-editor-container'); if (parentScrollContainer) { parentScrollContainer.scrollTop = 0; } } } catch (tableErr) { console.error('Error initializing table module:', tableErr); } }, 100); } else { // For content without tables, use the standard paste method quillRef.current.clipboard.dangerouslyPasteHTML(0, preservedContent); quillRef.current.setSelection(0, 0); } } catch (err) { console.error('Error setting initial content:', err); // Fallback method if the above fails quillRef.current.setText(''); quillRef.current.clipboard.dangerouslyPasteHTML(sanitizeHtml(initialContent)); quillRef.current.setSelection(0, 0); } } // Add change listener quillRef.current.on('text-change', () => { const html = quillRef.current.root.innerHTML; onChange(html); }); // Improve editor layout const editorContainer = editorElement.closest('.ql-container'); if (editorContainer) { editorContainer.classList.add('email-editor-container'); } setIsReady(true); }; initializeQuill().catch(err => { console.error('Failed to initialize Quill editor:', err); }); // Clean up on unmount return () => { if (quillRef.current) { // Clean up any event listeners or resources quillRef.current.off('text-change'); } }; }, []); // Update content from props if changed externally useEffect(() => { if (quillRef.current && isReady) { const currentContent = quillRef.current.root.innerHTML; // Only update if content changed to avoid editor position reset if (initialContent !== currentContent) { try { // Preserve cursor position if possible const selection = quillRef.current.getSelection(); // First clear the content quillRef.current.root.innerHTML = ''; // Then insert the new content at position 0 quillRef.current.clipboard.dangerouslyPasteHTML(0, sanitizeHtml(initialContent)); // Force update quillRef.current.update(); // Restore selection if possible if (selection) { setTimeout(() => quillRef.current.setSelection(selection), 10); } } catch (err) { console.error('Error updating content:', err); // Fallback update method quillRef.current.clipboard.dangerouslyPasteHTML(sanitizeHtml(initialContent)); } } } }, [initialContent, isReady]); return (
{/* Custom toolbar container */}
{/* Editor container with improved scrolling */}
{/* Loading indicator */} {!isReady && (
)}
{/* Custom styles for email context */}
); }; export default RichEmailEditor;