mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-06 01:00:11 +00:00
JS Events: Added CM pre/post init events
To allow hacking of all CodeMirror instances. Closes #4639.
This commit is contained in:
parent
fce7190257
commit
324e403ae5
3 changed files with 88 additions and 13 deletions
|
@ -55,7 +55,7 @@ function highlightElem(elem) {
|
|||
const wrapper = document.createElement('div');
|
||||
elem.parentNode.insertBefore(wrapper, elem);
|
||||
|
||||
const ev = createView({
|
||||
const ev = createView('content-code-block', {
|
||||
parent: wrapper,
|
||||
doc: content,
|
||||
extensions: viewerExtensions(wrapper),
|
||||
|
@ -99,7 +99,7 @@ export function highlight() {
|
|||
* @returns {SimpleEditorInterface}
|
||||
*/
|
||||
export function wysiwygView(cmContainer, shadowRoot, content, language) {
|
||||
const ev = createView({
|
||||
const ev = createView('content-code-block', {
|
||||
parent: cmContainer,
|
||||
doc: content,
|
||||
extensions: viewerExtensions(cmContainer),
|
||||
|
@ -125,16 +125,11 @@ export function popupEditor(elem, modeSuggestion) {
|
|||
doc: content,
|
||||
extensions: [
|
||||
...editorExtensions(elem.parentElement),
|
||||
EditorView.updateListener.of(v => {
|
||||
if (v.docChanged) {
|
||||
// textArea.value = v.state.doc.toString();
|
||||
}
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
// Create editor, hide original input
|
||||
const editor = new SimpleEditorInterface(createView(config));
|
||||
const editor = new SimpleEditorInterface(createView('code-editor', config));
|
||||
editor.setMode(modeSuggestion, content);
|
||||
elem.style.display = 'none';
|
||||
|
||||
|
@ -163,7 +158,7 @@ export function inlineEditor(textArea, mode) {
|
|||
};
|
||||
|
||||
// Create editor view, hide original input
|
||||
const ev = createView(config);
|
||||
const ev = createView('code-input', config);
|
||||
const editor = new SimpleEditorInterface(ev);
|
||||
editor.setMode(mode, content);
|
||||
textArea.style.display = 'none';
|
||||
|
@ -198,7 +193,7 @@ export function markdownEditor(elem, onChange, domEventHandlers, keyBindings) {
|
|||
window.$events.emitPublic(elem, 'editor-markdown-cm6::pre-init', {editorViewConfig: config});
|
||||
|
||||
// Create editor view, hide original input
|
||||
const ev = createView(config);
|
||||
const ev = createView('markdown-editor', config);
|
||||
(new SimpleEditorInterface(ev)).setMode('markdown', '');
|
||||
elem.style.display = 'none';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {Compartment} from '@codemirror/state';
|
||||
import {Compartment, EditorState} from '@codemirror/state';
|
||||
import {EditorView} from '@codemirror/view';
|
||||
import {getLanguageExtension} from './languages';
|
||||
|
||||
|
@ -7,17 +7,31 @@ const viewLangCompartments = new WeakMap();
|
|||
/**
|
||||
* Create a new editor view.
|
||||
*
|
||||
* @param {String} usageType
|
||||
* @param {{parent: Element, doc: String, extensions: Array}} config
|
||||
* @returns {EditorView}
|
||||
*/
|
||||
export function createView(config) {
|
||||
export function createView(usageType, config) {
|
||||
const langCompartment = new Compartment();
|
||||
config.extensions.push(langCompartment.of([]));
|
||||
|
||||
const ev = new EditorView(config);
|
||||
const commonEventData = {
|
||||
usage: usageType,
|
||||
editorViewConfig: config,
|
||||
libEditorView: EditorView,
|
||||
libEditorState: EditorState,
|
||||
libCompartment: Compartment,
|
||||
};
|
||||
|
||||
// Emit a pre-init public event so the user can tweak the config before instance creation
|
||||
window.$events.emitPublic(config.parent, 'library-cm6::pre-init', commonEventData);
|
||||
|
||||
const ev = new EditorView(config);
|
||||
viewLangCompartments.set(ev, langCompartment);
|
||||
|
||||
// Emit a post-init public event so the user can gain a reference to the EditorView
|
||||
window.$events.emitPublic(config.parent, 'library-cm6::post-init', {editorView: ev, ...commonEventData});
|
||||
|
||||
return ev;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue