import { defaultKeymap } from '@codemirror/commands'; import type { Extension } from '@codemirror/state'; import { Compartment, EditorState } from '@codemirror/state'; import { keymap, placeholder as placeholderExt, tooltips } from '@codemirror/view'; import classnames from 'classnames'; import { EditorView } from 'codemirror'; import type { CSSProperties, HTMLAttributes } from 'react'; import { useEffect, useMemo, useRef, useState } from 'react'; import './Editor.css'; import { baseExtensions, getLanguageExtension, multiLineExtensions } from './extensions'; import { singleLineExt } from './singleLine'; export interface EditorProps extends Omit, 'onChange'> { height?: 'auto' | 'full'; contentType?: string; backgroundColor?: string; autoFocus?: boolean; valueKey?: string | number; defaultValue?: string; placeholder?: string; tooltipContainer?: HTMLElement; useTemplating?: boolean; onChange?: (value: string) => void; singleLine?: boolean; } export default function Editor({ height, contentType, backgroundColor, autoFocus, placeholder, valueKey, useTemplating, defaultValue, onChange, className, singleLine, ...props }: EditorProps) { const [cm, setCm] = useState<{ view: EditorView; langHolder: Compartment } | null>(null); const ref = useRef(null); const extensions = useMemo( () => getExtensions({ container: ref.current, placeholder, singleLine, onChange, contentType, useTemplating, }), [contentType, ref.current], ); // Create codemirror instance when ref initializes useEffect(() => { if (ref.current === null) return; let view: EditorView | null = null; try { const langHolder = new Compartment(); const langExt = getLanguageExtension({ contentType, useTemplating }); const state = EditorState.create({ doc: `${defaultValue ?? ''}`, extensions: [...extensions, langHolder.of(langExt)], }); view = new EditorView({ state, parent: ref.current, }); setCm({ view, langHolder }); if (autoFocus && view) view.focus(); } catch (e) { console.log('Failed to initialize Codemirror', e); } return () => view?.destroy(); }, [ref.current, valueKey]); // Update value when valueKey changes // TODO: This would be more efficient but the onChange handler gets fired on update // useEffect(() => { // if (cm === null) return; // console.log('NEW DOC', valueKey, defaultValue); // cm.view.dispatch({ // changes: { from: 0, to: cm.view.state.doc.length, insert: `${defaultValue ?? ''}` }, // }); // }, [valueKey]); // Update language extension when contentType changes useEffect(() => { if (cm === null) return; const ext = getLanguageExtension({ contentType, useTemplating }); cm.view.dispatch({ effects: cm.langHolder.reconfigure(ext) }); }, [contentType]); return (
); } function getExtensions({ container, singleLine, placeholder, onChange, contentType, useTemplating, }: Pick< EditorProps, 'singleLine' | 'onChange' | 'contentType' | 'useTemplating' | 'placeholder' > & { container: HTMLDivElement | null }) { const ext = getLanguageExtension({ contentType, useTemplating }); // TODO: Ensure tooltips render inside the dialog if we are in one. const parent = container?.closest('[role="dialog"]') ?? document.querySelector('#cm-portal') ?? undefined; return [ ...baseExtensions, tooltips({ parent }), keymap.of(singleLine ? defaultKeymap.filter((k) => k.key !== 'Enter') : defaultKeymap), ...(singleLine ? [singleLineExt()] : []), ...(!singleLine ? [multiLineExtensions] : []), ...(ext ? [ext] : []), ...(placeholder ? [placeholderExt(placeholder)] : []), // Handle onSubmit ...(singleLine ? [ EditorView.domEventHandlers({ keydown: (e) => { if (e.key === 'Enter') { const el = e.currentTarget as HTMLElement; const form = el.closest('form'); form?.dispatchEvent(new Event('submit', { cancelable: true, bubbles: true })); } }, }), ] : []), // Handle onChange EditorView.updateListener.of((update) => { if (typeof onChange === 'function' && update.docChanged) { onChange(update.state.doc.toString()); } }), ]; } const newState = ({ langHolder, contentType, useTemplating, defaultValue, extensions, }: { langHolder: Compartment; contentType?: string; useTemplating?: boolean; defaultValue?: string; extensions: Extension[]; }) => { console.log('NEW STATE', defaultValue); const langExt = getLanguageExtension({ contentType, useTemplating }); return EditorState.create({ doc: `${defaultValue ?? ''}`, extensions: [...extensions, langHolder.of(langExt)], }); };