| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import { useEffect } from 'react';
- import { type Extension } from '@codemirror/state';
- import { keymap, scrollPastEnd } from '@codemirror/view';
- import { GlobalCodeMirrorEditorKey } from '../consts';
- import { setDataLine } from '../services/extensions/setDataLine';
- import { useCodeMirrorEditorIsolated, useCollaborativeEditorMode } from '../stores';
- import { CodeMirrorEditor, CodeMirrorEditorProps } from '.';
- const additionalExtensions: Extension[] = [
- [
- scrollPastEnd(),
- setDataLine,
- ],
- ];
- type Props = CodeMirrorEditorProps & {
- userName?: string,
- pageId?: string,
- initialValue?: string,
- onOpenEditor?: (markdown: string) => void,
- }
- export const CodeMirrorEditorMain = (props: Props): JSX.Element => {
- const {
- userName, pageId, initialValue, onOpenEditor, onSave, ...otherProps
- } = props;
- const { data: codeMirrorEditor } = useCodeMirrorEditorIsolated(GlobalCodeMirrorEditorKey.MAIN);
- useCollaborativeEditorMode(userName, pageId, initialValue, onOpenEditor, codeMirrorEditor);
- // setup additional extensions
- useEffect(() => {
- return codeMirrorEditor?.appendExtensions?.(additionalExtensions);
- }, [codeMirrorEditor]);
- // set handler to save with shortcut key
- useEffect(() => {
- if (onSave == null) {
- return;
- }
- const extension = keymap.of([
- {
- key: 'Mod-s',
- preventDefault: true,
- run: () => {
- const doc = codeMirrorEditor?.getDoc();
- if (doc != null) {
- onSave();
- }
- return true;
- },
- },
- ]);
- const cleanupFunction = codeMirrorEditor?.appendExtensions?.(extension);
- return cleanupFunction;
- }, [codeMirrorEditor, onSave]);
- return (
- <CodeMirrorEditor
- editorKey={GlobalCodeMirrorEditorKey.MAIN}
- onSave={onSave}
- {...otherProps}
- />
- );
- };
|