| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { useEffect } from 'react';
- import type { Extension } from '@codemirror/state';
- import { keymap, scrollPastEnd } from '@codemirror/view';
- import { GlobalCodeMirrorEditorKey } from '../consts';
- import { useCodeMirrorEditorIsolated } from '../stores';
- import { CodeMirrorEditor, CodeMirrorEditorProps } from '.';
- const additionalExtensions: Extension[] = [
- scrollPastEnd(),
- ];
- type Props = CodeMirrorEditorProps & object
- export const CodeMirrorEditorComment = (props: Props): JSX.Element => {
- const {
- onSave, ...otherProps
- } = props;
- const { data: codeMirrorEditor } = useCodeMirrorEditorIsolated(GlobalCodeMirrorEditorKey.COMMENT);
- // setup additional extensions
- useEffect(() => {
- return codeMirrorEditor?.appendExtensions?.(additionalExtensions);
- }, [codeMirrorEditor]);
- // set handler to comment with ctrl/cmd + Enter key
- useEffect(() => {
- if (onSave == null) {
- return;
- }
- const keymapExtension = keymap.of([
- {
- key: 'Mod-Enter',
- preventDefault: true,
- run: () => {
- const doc = codeMirrorEditor?.getDoc();
- if (doc != null) {
- onSave();
- }
- return true;
- },
- },
- ]);
- const cleanupFunction = codeMirrorEditor?.appendExtensions?.(keymapExtension);
- return cleanupFunction;
- }, [codeMirrorEditor, onSave]);
- return (
- <CodeMirrorEditor
- editorKey={GlobalCodeMirrorEditorKey.COMMENT}
- onSave={onSave}
- {...otherProps}
- />
- );
- };
|