-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: override editor js in decidim_awesome
- Loading branch information
1 parent
8215754
commit cb8adee
Showing
1 changed file
with
214 additions
and
0 deletions.
There are no files selected for viewing
214 changes: 214 additions & 0 deletions
214
app/packs/src/decidim/decidim_awesome/editors/editor.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
/* eslint-disable require-jsdoc, func-style */ | ||
|
||
/* | ||
* Since version 0.25 we follow a different strategy and opt to destroy and override completely the original editor | ||
* That's because editors are instantiated directly instead of creating a global function to instantiate them | ||
*/ | ||
|
||
import lineBreakButtonHandler from "src/decidim/editor/linebreak_module" | ||
import InscrybMDE from "inscrybmde" | ||
import Europa from "europa" | ||
import "inline-attachment/src/inline-attachment"; | ||
import "inline-attachment/src/codemirror-4.inline-attachment"; | ||
import "inline-attachment/src/jquery.inline-attachment"; | ||
import hljs from "highlight.js"; | ||
import "highlight.js/styles/github.css"; | ||
import "src/decidim/editor/clipboard_override" | ||
import "src/decidim/vendor/image-resize.min" | ||
import "src/decidim/vendor/image-upload.min" | ||
import { marked } from "marked"; | ||
|
||
const DecidimAwesome = window.DecidimAwesome || {}; | ||
const quillFormats = ["bold", "italic", "link", "underline", "header", "list", "video", "image", "alt", "break", "width", "style", "code", "blockquote", "indent"]; | ||
|
||
// A tricky way to destroy the quill editor | ||
export function destroyQuillEditor(container) { | ||
if (container) { | ||
const content = $(container).find(".ql-editor").html(); | ||
$(container).html(content); | ||
$(container).siblings(".ql-toolbar").remove(); | ||
$(container).find("*[class*='ql-']").removeClass((index, className) => (className.match(/(^|\s)ql-\S+/g) || []).join(" ")); | ||
$(container).removeClass((index, className) => (className.match(/(^|\s)ql-\S+/g) || []).join(" ")); | ||
if ($(container).next().is("p.help-text")) { | ||
$(container).next().remove(); | ||
} | ||
} | ||
else { | ||
console.error(`editor [${container}] not exists`); | ||
} | ||
} | ||
|
||
export function createQuillEditor(container) { | ||
const toolbar = $(container).data("toolbar"); | ||
const disabled = $(container).data("disabled"); | ||
const allowedEmptyContentSelector = "iframe,img"; | ||
|
||
let quillToolbar = [ | ||
["bold", "italic", "underline", "linebreak"], | ||
[{ list: "ordered" }, { list: "bullet" }], | ||
["link", "clean"], | ||
["code", "blockquote"], | ||
[{ "indent": "-1"}, { "indent": "+1" }] | ||
]; | ||
|
||
let addImage = false; | ||
|
||
if (toolbar === "full") { | ||
quillToolbar = [ | ||
[{ header: [2, 3, 4, 5, 6, false] }], | ||
...quillToolbar | ||
]; | ||
if (DecidimAwesome.allow_images_in_full_editor) { | ||
quillToolbar.push(["video", "image"]); | ||
addImage = true; | ||
} else { | ||
quillToolbar.push(["video"]); | ||
} | ||
} else if (toolbar === "basic") { | ||
if (DecidimAwesome.allow_images_in_small_editor) { | ||
quillToolbar.push(["video", "image"]); | ||
addImage = true; | ||
} else { | ||
quillToolbar.push(["video"]); | ||
} | ||
} else if (DecidimAwesome.allow_images_in_small_editor) { | ||
quillToolbar.push(["image"]); | ||
addImage = true; | ||
} | ||
|
||
let modules = { | ||
linebreak: {}, | ||
toolbar: { | ||
container: quillToolbar, | ||
handlers: { | ||
"linebreak": lineBreakButtonHandler | ||
} | ||
} | ||
}; | ||
|
||
const $input = $(container).siblings('input[type="hidden"]'); | ||
container.innerHTML = $input.val() || ""; | ||
const token = $('meta[name="csrf-token"]').attr("content"); | ||
if (addImage) { | ||
modules.imageResize = { | ||
modules: ["Resize", "DisplaySize"] | ||
} | ||
modules.imageUpload = { | ||
url: DecidimAwesome.editor_uploader_path, | ||
method: "POST", | ||
name: "image", | ||
withCredentials: false, | ||
headers: { "X-CSRF-Token": token }, | ||
callbackOK: (serverResponse, next) => { | ||
$("div.ql-toolbar").last().removeClass("editor-loading") | ||
next(serverResponse.url); | ||
}, | ||
callbackKO: (serverError) => { | ||
$("div.ql-toolbar").last().removeClass("editor-loading") | ||
let msg = serverError && serverError.body; | ||
try { | ||
msg = JSON.parse(msg).message; | ||
} catch (evt) { console.error("Parsing error", evt); } | ||
console.error(`Image upload error: ${msg}`); | ||
let $p = $(`<p class="text-alert help-text">${msg}</p>`); | ||
$(container).after($p) | ||
setTimeout(() => { | ||
$p.fadeOut(1000, () => { | ||
$p.destroy(); | ||
}); | ||
}, 3000); | ||
}, | ||
checkBeforeSend: (file, next) => { | ||
$("div.ql-toolbar").last().addClass("editor-loading") | ||
next(file); | ||
} | ||
} | ||
} | ||
const quill = new Quill(container, { | ||
modules: modules, | ||
formats: quillFormats, | ||
theme: "snow" | ||
}); | ||
|
||
if (disabled) { | ||
quill.disable(); | ||
} | ||
|
||
quill.on("text-change", () => { | ||
const text = quill.getText(); | ||
|
||
// Triggers CustomEvent with the cursor position | ||
// It is required in input_mentions.js | ||
let event = new CustomEvent("quill-position", { | ||
detail: quill.getSelection() | ||
}); | ||
container.dispatchEvent(event); | ||
|
||
if ((text === "\n" || text === "\n\n") && quill.root.querySelectorAll(allowedEmptyContentSelector).length === 0 | ||
&& !$input.val().match(/img/)) { | ||
$input.val(""); | ||
} else { | ||
const emptyParagraph = "<p><br></p>"; | ||
const cleanHTML = quill.root.innerHTML.replace( | ||
new RegExp(`^${emptyParagraph}|${emptyParagraph}$`, "g"), | ||
"" | ||
); | ||
$input.val(cleanHTML); | ||
} | ||
}); | ||
// After editor is ready, linebreak_module deletes two extraneous new lines | ||
quill.emitter.emit("editor-ready"); | ||
|
||
if (addImage) { | ||
const text = $(container).data("dragAndDropHelpText") || DecidimAwesome.texts.drag_and_drop_image; | ||
$(container).after(`<p class="help-text" style="margin-top:-1.5rem;">${text}</p>`); | ||
} | ||
|
||
// After editor is ready, linebreak_module deletes two extraneous new lines | ||
quill.emitter.emit("editor-ready"); | ||
|
||
return quill; | ||
} | ||
|
||
export function createMarkdownEditor(container) { | ||
const text = DecidimAwesome.texts.drag_and_drop_image; | ||
const token = $('meta[name="csrf-token"]').attr("content"); | ||
const $input = $(container).siblings('input[type="hidden"]'); | ||
const $faker = $('<textarea name="faker-inscrybmde"/>'); | ||
const $form = $(container).closest("form"); | ||
const europa = new Europa(); | ||
$faker.val(europa.convert($input.val())); | ||
$faker.insertBefore($(container)); | ||
$(container).hide(); | ||
const inscrybmde = new InscrybMDE({ | ||
element: $faker[0], | ||
spellChecker: false, | ||
renderingConfig: { | ||
codeSyntaxHighlighting: true, | ||
hljs: hljs | ||
} | ||
}); | ||
$faker[0].InscrybMDE = inscrybmde; | ||
|
||
// Allow image upload | ||
if (DecidimAwesome.allow_images_in_markdown_editor) { | ||
$(inscrybmde.gui.statusbar).prepend(`<span class="help-text" style="float:left;margin:0;text-align:left;">${text}</span>`); | ||
window.inlineAttachment.editors.codemirror4.attach(inscrybmde.codemirror, { | ||
uploadUrl: DecidimAwesome.editor_uploader_path, | ||
uploadFieldName: "image", | ||
jsonFieldName: "url", | ||
extraHeaders: { "X-CSRF-Token": token } | ||
}); | ||
} | ||
|
||
// Allow linebreaks | ||
marked.setOptions({ | ||
breaks: true | ||
}); | ||
|
||
// convert to html on submit | ||
$form.on("submit", () => { | ||
// e.preventDefault(); | ||
$input.val(marked(inscrybmde.value())); | ||
}); | ||
} |