You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
4.1 KiB
JavaScript
128 lines
4.1 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/bower_components/marked/marked.min.js',
|
|
'/bower_components/diff-dom/diffDOM.js'
|
|
],function ($, Marked) {
|
|
var DiffMd = {};
|
|
|
|
var DiffDOM = window.diffDOM;
|
|
var renderer = new Marked.Renderer();
|
|
|
|
Marked.setOptions({
|
|
renderer: renderer
|
|
});
|
|
|
|
DiffMd.render = function (md) {
|
|
return Marked(md);
|
|
};
|
|
|
|
// Tasks list
|
|
var checkedTaskItemPtn = /^\s*\[x\]\s*/;
|
|
var uncheckedTaskItemPtn = /^\s*\[ \]\s*/;
|
|
renderer.listitem = function (text) {
|
|
var isCheckedTaskItem = checkedTaskItemPtn.test(text);
|
|
var isUncheckedTaskItem = uncheckedTaskItemPtn.test(text);
|
|
if (isCheckedTaskItem) {
|
|
text = text.replace(checkedTaskItemPtn,
|
|
'<i class="fa fa-check-square" aria-hidden="true"></i> ') + '\n';
|
|
}
|
|
if (isUncheckedTaskItem) {
|
|
text = text.replace(uncheckedTaskItemPtn,
|
|
'<i class="fa fa-square-o" aria-hidden="true"></i> ') + '\n';
|
|
}
|
|
var cls = (isCheckedTaskItem || isUncheckedTaskItem) ? ' class="todo-list-item"' : '';
|
|
return '<li'+ cls + '>' + text + '</li>\n';
|
|
};
|
|
|
|
var forbiddenTags = [
|
|
'SCRIPT',
|
|
'IFRAME',
|
|
'OBJECT',
|
|
'APPLET',
|
|
'VIDEO',
|
|
'AUDIO',
|
|
];
|
|
var unsafeTag = function (info) {
|
|
if (['addAttribute', 'modifyAttribute'].indexOf(info.diff.action) !== -1) {
|
|
if (/^on/.test(info.diff.name)) {
|
|
console.log("Rejecting forbidden element attribute with name", info.diff.name);
|
|
return true;
|
|
}
|
|
}
|
|
if (['addElement', 'replaceElement'].indexOf(info.diff.action) !== -1) {
|
|
var msg = "Rejecting forbidden tag of type (%s)";
|
|
if (info.diff.element && forbiddenTags.indexOf(info.diff.element.nodeName) !== -1) {
|
|
console.log(msg, info.diff.element.nodeName);
|
|
return true;
|
|
} else if (info.diff.newValue && forbiddenTags.indexOf(info.diff.newValue.nodeName) !== -1) {
|
|
console.log("Replacing restricted element type (%s) with PRE", info.diff.newValue.nodeName);
|
|
info.diff.newValue.nodeName = 'PRE';
|
|
}
|
|
}
|
|
};
|
|
|
|
var slice = function (coll) {
|
|
return Array.prototype.slice.call(coll);
|
|
};
|
|
|
|
/* remove listeners from the DOM */
|
|
var removeListeners = function (root) {
|
|
slice(root.attributes).map(function (attr) {
|
|
if (/^on/.test(attr.name)) {
|
|
root.attributes.removeNamedItem(attr.name);
|
|
}
|
|
});
|
|
// all the way down
|
|
slice(root.children).forEach(removeListeners);
|
|
};
|
|
|
|
var domFromHTML = function (html) {
|
|
var Dom = new DOMParser().parseFromString(html, "text/html");
|
|
removeListeners(Dom.body);
|
|
return Dom;
|
|
};
|
|
|
|
var DD = new DiffDOM({
|
|
preDiffApply: function (info) {
|
|
if (unsafeTag(info)) { return true; }
|
|
}
|
|
});
|
|
|
|
var makeDiff = function (A, B, id) {
|
|
var Err;
|
|
var Els = [A, B].map(function (frag) {
|
|
if (typeof(frag) === 'object') {
|
|
if (!frag || (frag && !frag.body)) {
|
|
Err = "No body";
|
|
return;
|
|
}
|
|
var els = frag.body.querySelectorAll('#'+id);
|
|
if (els.length) {
|
|
return els[0];
|
|
}
|
|
}
|
|
Err = 'No candidate found';
|
|
});
|
|
if (Err) { return Err; }
|
|
var patch = DD.diff(Els[0], Els[1]);
|
|
return patch;
|
|
};
|
|
|
|
DiffMd.apply = function (newHtml, $content) {
|
|
var id = $content.attr('id');
|
|
if (!id) { throw new Error("The element must have a valid id"); }
|
|
var $div = $('<div>', {id: id}).append(newHtml);
|
|
var Dom = domFromHTML($('<div>').append($div).html());
|
|
var oldDom = domFromHTML($content[0].outerHTML);
|
|
var patch = makeDiff(oldDom, Dom, id);
|
|
if (typeof(patch) === 'string') {
|
|
throw new Error(patch);
|
|
} else {
|
|
DD.apply($content[0], patch);
|
|
}
|
|
};
|
|
|
|
return DiffMd;
|
|
});
|
|
|