mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
47f95cb294
Co-authored-by: Helmut K. C. Tessarek <tessarek@evermeet.cx> Co-authored-by: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com>
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
// This contains the CodeMirror instance, which needs to be built into a bundle
|
|
// using `yarn buildInjectedJs`. This bundle is then loaded from
|
|
// NoteEditor.tsx into the webview.
|
|
//
|
|
// In general, since this file is harder to debug due to the intermediate built
|
|
// step, it's better to keep it as light as possible - it should just be a light
|
|
// wrapper to access CodeMirror functionalities. Anything else should be done
|
|
// from NoteEditor.tsx.
|
|
|
|
import { EditorSettings } from '@joplin/editor/types';
|
|
import createEditor from '@joplin/editor/CodeMirror/createEditor';
|
|
import { logMessage, postMessage } from './webviewLogger';
|
|
import CodeMirrorControl from '@joplin/editor/CodeMirror/CodeMirrorControl';
|
|
|
|
export function initCodeMirror(
|
|
parentElement: HTMLElement, initialText: string, settings: EditorSettings,
|
|
): CodeMirrorControl {
|
|
return createEditor(parentElement, {
|
|
initialText,
|
|
settings,
|
|
|
|
onLogMessage: message => {
|
|
logMessage(message);
|
|
},
|
|
onEvent: (event): void => {
|
|
postMessage('onEditorEvent', event);
|
|
},
|
|
});
|
|
}
|
|
|