Skip to content

Commit

Permalink
Default paste as plaintext into inputs (#318).
Browse files Browse the repository at this point in the history
  • Loading branch information
jimafisk committed May 1, 2024
1 parent 3af18c7 commit 8a2457c
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 1 deletion.
4 changes: 4 additions & 0 deletions defaults/core/cms/fields/text.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<script>
import { plaintextPaste } from "../html_sanitizer.svelte";
export let schema, parentKeys, field;
let disabled, hidden;
Expand All @@ -14,13 +16,15 @@
role="textbox"
contenteditable=false
bind:textContent={field}
on:paste={plaintextPaste}
></div>
{:else if !hidden}
<div
class="textarea"
role="textbox"
contenteditable=true
bind:textContent={field}
on:paste={plaintextPaste}
></div>
{/if}
Expand Down
10 changes: 9 additions & 1 deletion defaults/core/cms/fields/wysiwyg.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<script>
import { plaintextPaste } from "../html_sanitizer.svelte";
export let schema, parentKeys, field;
let textarea;
Expand Down Expand Up @@ -137,7 +139,13 @@
{/if}
</div>

<div class="textarea" contenteditable=true bind:innerHTML={field} bind:this={textarea}></div>
<div
class="textarea"
contenteditable=true
bind:innerHTML={field}
bind:this={textarea}
on:paste={plaintextPaste}
></div>

<style>
.editor {
Expand Down
124 changes: 124 additions & 0 deletions defaults/core/cms/html_sanitizer.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<script context="module">
//JavaScript HTML Sanitizer v2.0.2, (c) Alexander Yumashev, Jitbit Software.
//homepage https://github.com/jitbit/HtmlSanitizer
//License: MIT https://github.com/jitbit/HtmlSanitizer/blob/master/LICENSE
//Modified to fit project needs
// https://developer.mozilla.org/en-US/docs/Web/API/Element/paste_event
export const plaintextPaste = e => {
e.preventDefault();
const rawPaste = (e.clipboardData || window.clipboardData).getData("text");
if (rawPaste === "") {
return;
}
const paste = HtmlSanitizer.SanitizeHtml(rawPaste);
document.execCommand("insertHTML", false,paste);
}
const HtmlSanitizer = typeof window === "undefined" ? null : new (function () {
const _tagWhitelist = {
'A': true, 'ABBR': true, 'B': true, 'BLOCKQUOTE': true, 'BODY': true, 'BR': true, 'CENTER': true, 'CODE': true, 'DD': true, 'DIV': true, 'DL': true, 'DT': true, 'EM': true, 'FONT': true,
'H1': true, 'H2': true, 'H3': true, 'H4': true, 'H5': true, 'H6': true, 'HR': true, 'I': true, 'IMG': true, 'LABEL': true, 'LI': true, 'OL': true, 'P': true, 'PRE': true,
'SMALL': true, 'SOURCE': true, 'SPAN': true, 'STRONG': true, 'SUB': true, 'SUP': true, 'TABLE': true, 'TBODY': true, 'TR': true, 'TD': true, 'TH': true, 'THEAD': true, 'UL': true, 'U': true, 'VIDEO': true
};
const _contentTagWhiteList = { 'FORM': true, 'GOOGLE-SHEETS-HTML-ORIGIN': true }; //tags that will be converted to DIVs
const _attributeWhitelist = { 'align': true, 'color': true, 'controls': true, 'height': true, 'href': true, 'id': true, 'src': true, 'style': false, 'target': true, 'title': true, 'type': true, 'width': true };
const _cssWhitelist = { 'background-color': false, 'color': false, 'font-size': false, 'font-weight': false, 'text-align': false, 'text-decoration': false, 'width': false };
const _schemaWhiteList = [ 'http:', 'https:', 'data:', 'm-files:', 'file:', 'ftp:', 'mailto:', 'pw:' ]; //which "protocols" are allowed in "href", "src" etc
const _uriAttributes = { 'href': true, 'action': true };
const _parser = new DOMParser();
this.SanitizeHtml = function (input, extraSelector) {
input = input.trim();
if (input == "") return ""; //to save performance
//firefox "bogus node" workaround for wysiwyg's
if (input == "<br>") return "";
if (input.indexOf("<body")==-1) input = "<body>" + input + "</body>"; //add "body" otherwise some tags are skipped, like <style>
let doc = _parser.parseFromString(input, "text/html");
//DOM clobbering check (damn you firefox)
if (doc.body.tagName !== 'BODY')
doc.body.remove();
if (typeof doc.createElement !== 'function')
doc.createElement.remove();
function makeSanitizedCopy(node) {
let newNode;
if (node.nodeType == Node.TEXT_NODE) {
newNode = node.cloneNode(true);
} else if (node.nodeType == Node.ELEMENT_NODE && (_tagWhitelist[node.tagName] || _contentTagWhiteList[node.tagName] || (extraSelector && node.matches(extraSelector)))) { //is tag allowed?
if (_contentTagWhiteList[node.tagName])
newNode = doc.createElement('DIV'); //convert to DIV
else
newNode = doc.createElement(node.tagName);
for (let i = 0; i < node.attributes.length; i++) {
let attr = node.attributes[i];
if (_attributeWhitelist[attr.name]) {
if (attr.name == "style") {
for (let s = 0; s < node.style.length; s++) {
let styleName = node.style[s];
if (_cssWhitelist[styleName])
newNode.style.setProperty(styleName, node.style.getPropertyValue(styleName));
}
}
else {
if (_uriAttributes[attr.name]) { //if this is a "uri" attribute, that can have "javascript:" or something
if (attr.value.indexOf(":") > -1 && !startsWithAny(attr.value, _schemaWhiteList))
continue;
}
newNode.setAttribute(attr.name, attr.value);
}
}
}
for (let i = 0; i < node.childNodes.length; i++) {
let subCopy = makeSanitizedCopy(node.childNodes[i]);
newNode.appendChild(subCopy, false);
}
//remove useless empty spans (lots of those when pasting from MS Outlook)
if ((newNode.tagName == "SPAN" || newNode.tagName == "B" || newNode.tagName == "I" || newNode.tagName == "U")
&& newNode.innerHTML.trim() == "") {
return doc.createDocumentFragment();
}
} else {
newNode = doc.createDocumentFragment();
}
return newNode;
};
let resultElement = makeSanitizedCopy(doc.body);
return resultElement.innerHTML
.replace(/<br[^>]*>(\S)/g, "<br>\n$1")
.replace(/div><div/g, "div>\n<div"); //replace is just for cleaner code
}
function startsWithAny(str, substrings) {
for (let i = 0; i < substrings.length; i++) {
if (str.indexOf(substrings[i]) == 0) {
return true;
}
}
return false;
}
this.AllowedTags = _tagWhitelist;
this.AllowedAttributes = _attributeWhitelist;
this.AllowedCssStyles = _cssWhitelist;
this.AllowedSchemas = _schemaWhiteList;
});
</script>

0 comments on commit 8a2457c

Please sign in to comment.