cryptpad/www/pad/inner.js

1093 lines
45 KiB
JavaScript
Raw Normal View History

2020-05-05 09:19:32 +00:00
require(['/api/config'], function(ApiConfig) {
2017-08-28 10:25:05 +00:00
// see ckeditor_base.js getUrl()
2020-05-05 09:19:32 +00:00
window.CKEDITOR_GETURL = function(resource) {
if (resource.indexOf('/') === 0) {
2017-08-28 10:25:05 +00:00
resource = window.CKEDITOR.basePath.replace(/\/bower_components\/.*/, '') + resource;
} else if (resource.indexOf(':/') === -1) {
resource = window.CKEDITOR.basePath + resource;
}
if (resource[resource.length - 1] !== '/' && resource.indexOf('ver=') === -1) {
var args = ApiConfig.requireConf.urlArgs;
if (resource.indexOf('/bower_components/') !== -1) {
args = 'ver=' + window.CKEDITOR.timestamp;
}
resource += (resource.indexOf('?') >= 0 ? '&' : '?') + args;
}
return resource;
};
require(['/bower_components/ckeditor/ckeditor.js']);
});
define([
2017-08-28 10:25:05 +00:00
'jquery',
'/bower_components/hyperjson/hyperjson.js',
'/common/sframe-app-framework.js',
2017-08-28 10:25:05 +00:00
'/common/cursor.js',
'/common/TypingTests.js',
'/customize/messages.js',
2017-08-28 10:25:05 +00:00
'/pad/links.js',
2020-04-20 13:22:45 +00:00
'/pad/comments.js',
2018-10-18 16:50:38 +00:00
'/pad/export.js',
2018-12-10 10:57:39 +00:00
'/pad/cursor.js',
2017-08-28 10:25:05 +00:00
'/bower_components/nthen/index.js',
2017-09-15 11:21:37 +00:00
'/common/media-tag.js',
2017-08-28 10:25:05 +00:00
'/api/config',
'/common/common-hash.js',
'/common/common-util.js',
'/common/common-interface.js',
'/common/hyperscript.js',
'/bower_components/chainpad/chainpad.dist.js',
'/customize/application_config.js',
'/common/test.js',
2017-08-28 10:25:05 +00:00
'/bower_components/diff-dom/diffDOM.js',
'css!/bower_components/bootstrap/dist/css/bootstrap.min.css',
2018-03-21 17:31:53 +00:00
'css!/bower_components/components-font-awesome/css/font-awesome.min.css',
2018-07-14 13:15:23 +00:00
'less!/pad/app-pad.less'
2020-05-05 09:19:32 +00:00
], function(
2017-08-28 10:25:05 +00:00
$,
Hyperjson,
Framework,
2017-08-28 10:25:05 +00:00
Cursor,
TypingTest,
Messages,
2017-08-28 10:25:05 +00:00
Links,
2020-04-20 13:22:45 +00:00
Comments,
2018-10-18 16:50:38 +00:00
Exporter,
2018-12-10 10:57:39 +00:00
Cursors,
2017-08-28 10:25:05 +00:00
nThen,
2017-09-15 11:21:37 +00:00
MediaTag,
2017-09-25 15:35:25 +00:00
ApiConfig,
Hash,
Util,
UI,
h,
ChainPad,
AppConfig,
Test
2020-05-05 09:19:32 +00:00
) {
2017-08-28 10:25:05 +00:00
var DiffDom = window.diffDOM;
2020-05-05 09:19:32 +00:00
var slice = function(coll) {
2017-08-28 10:25:05 +00:00
return Array.prototype.slice.call(coll);
};
2020-05-05 09:19:32 +00:00
var removeListeners = function(root) {
slice(root.attributes).map(function(attr) {
2017-08-28 10:25:05 +00:00
if (/^on/.test(attr.name)) {
root.attributes.removeNamedItem(attr.name);
}
});
slice(root.children).forEach(removeListeners);
};
2020-05-05 09:19:32 +00:00
var hjsonToDom = function(H) {
2017-08-28 10:25:05 +00:00
var dom = Hyperjson.toDOM(H);
removeListeners(dom);
return dom;
};
var module = window.REALTIME_MODULE = window.APP = {
Hyperjson: Hyperjson,
logFights: true,
fights: [],
Cursor: Cursor,
};
// MEDIATAG: Filter elements to serialize
// * Remove the drag&drop and resizers from the hyperjson
2020-05-05 09:19:32 +00:00
var isWidget = function(el) {
return typeof(el.getAttribute) === "function" &&
(el.getAttribute('data-cke-hidden-sel') ||
(el.getAttribute('class') &&
(/cke_widget_drag/.test(el.getAttribute('class')) ||
/cke_image_resizer/.test(el.getAttribute('class')))
)
);
2018-04-20 13:33:14 +00:00
};
2020-05-05 09:19:32 +00:00
var isNotMagicLine = function(el) {
2017-08-28 10:25:05 +00:00
return !(el && typeof(el.getAttribute) === 'function' &&
el.getAttribute('class') &&
el.getAttribute('class').split(' ').indexOf('non-realtime') !== -1);
};
2018-12-10 10:57:39 +00:00
var isCursor = Cursors.isCursor;
2020-05-05 09:19:32 +00:00
var shouldSerialize = function(el) {
2018-12-10 10:57:39 +00:00
return isNotMagicLine(el) && !isWidget(el) && !isCursor(el);
2018-04-20 13:33:14 +00:00
};
// MEDIATAG: Filter attributes in the serialized elements
2020-05-05 09:19:32 +00:00
var widgetFilter = function(hj) {
// Send a widget ID == 0 to avoid a fight between browsers and
2018-04-20 13:33:14 +00:00
// prevent the container from having the "selected" class (blue border)
if (hj[1].class) {
var split = hj[1].class.split(' ');
if (split.indexOf('cke_widget_wrapper') !== -1 &&
split.indexOf('cke_widget_block') !== -1) {
hj[1].class = "cke_widget_wrapper cke_widget_block";
hj[1]['data-cke-widget-id'] = "0";
}
if (split.indexOf('cke_widget_wrapper') !== -1 &&
split.indexOf('cke_widget_inline') !== -1) {
hj[1].class = "cke_widget_wrapper cke_widget_inline";
2018-04-23 12:33:39 +00:00
delete hj[1]['data-cke-widget-id'];
//hj[1]['data-cke-widget-id'] = "0";
2018-04-20 13:33:14 +00:00
}
// Remove the title attribute of the drag&drop icons (translation conflicts)
2020-05-05 09:19:32 +00:00
if (split.indexOf('cke_widget_drag_handler') !== -1 ||
2018-04-20 13:33:14 +00:00
split.indexOf('cke_image_resizer') !== -1) {
hj[1].title = undefined;
}
}
return hj;
};
2020-05-05 09:19:32 +00:00
var hjsonFilters = function(hj) {
2017-09-25 15:35:25 +00:00
/* catch `type="_moz"` before it goes over the wire */
2020-05-05 09:19:32 +00:00
var brFilter = function(hj) {
2017-09-25 15:35:25 +00:00
if (hj[1].type === '_moz') { hj[1].type = undefined; }
return hj;
};
2020-05-05 09:19:32 +00:00
var mediatagContentFilter = function(hj) {
2017-09-25 15:35:25 +00:00
if (hj[0] === 'MEDIA-TAG') { hj[2] = []; }
return hj;
};
2020-05-05 09:19:32 +00:00
var commentActiveFilter = function(hj) {
if (hj[0] === 'COMMENT') { delete(hj[1] || {}).class; }
return hj;
};
2017-09-15 11:21:37 +00:00
brFilter(hj);
mediatagContentFilter(hj);
commentActiveFilter(hj);
2018-04-20 13:33:14 +00:00
widgetFilter(hj);
2017-08-28 10:25:05 +00:00
return hj;
};
2020-05-05 09:19:32 +00:00
var domFromHTML = function(html) {
2017-08-28 10:25:05 +00:00
return new DOMParser().parseFromString(html, 'text/html');
};
var forbiddenTags = [
'SCRIPT',
2017-09-15 11:21:37 +00:00
//'IFRAME',
2017-08-28 10:25:05 +00:00
'OBJECT',
'APPLET',
2017-09-15 11:21:37 +00:00
//'VIDEO',
//'AUDIO'
2017-08-28 10:25:05 +00:00
];
var CKEDITOR_CHECK_INTERVAL = 100;
2020-05-05 09:19:32 +00:00
var ckEditorAvailable = function(cb) {
2017-08-28 10:25:05 +00:00
var intr;
2020-05-05 09:19:32 +00:00
var check = function() {
2017-08-28 10:25:05 +00:00
if (window.CKEDITOR) {
clearTimeout(intr);
cb(window.CKEDITOR);
}
};
2020-05-05 09:19:32 +00:00
intr = setInterval(function() {
2017-08-28 10:25:05 +00:00
console.log("Ckeditor was not defined. Trying again in %sms", CKEDITOR_CHECK_INTERVAL);
check();
}, CKEDITOR_CHECK_INTERVAL);
check();
};
2020-05-05 09:19:32 +00:00
var mkHelpMenu = function(framework) {
2018-02-27 16:38:29 +00:00
var $toolbarContainer = $('.cke_toolbox_main');
2020-01-09 16:30:15 +00:00
$toolbarContainer.before(framework._.sfCommon.getBurnAfterReadingWarning());
var helpMenu = framework._.sfCommon.createHelpMenu(['text', 'pad']);
2018-02-27 16:38:29 +00:00
$toolbarContainer.before(helpMenu.menu);
framework._.toolbar.$drawer.append(helpMenu.button);
2018-02-27 16:38:29 +00:00
};
2020-05-05 09:19:32 +00:00
var mkDiffOptions = function(cursor, readOnly) {
2017-08-28 10:25:05 +00:00
return {
2020-05-05 09:19:32 +00:00
preDiffApply: function(info) {
2017-08-28 10:25:05 +00:00
/*
Don't accept attributes that begin with 'on'
these are probably listeners, and we don't want to
send scripts over the wire.
*/
if (['addAttribute', 'modifyAttribute'].indexOf(info.diff.action) !== -1) {
if (info.diff.name === 'href') {
// console.log(info.diff);
//var href = info.diff.newValue;
// TODO normalize HTML entities
if (/javascript *: */.test(info.diff.newValue)) {
// TODO remove javascript: links
}
}
if (/^on/.test(info.diff.name)) {
console.log("Rejecting forbidden element attribute with name (%s)", info.diff.name);
return true;
}
}
2018-04-19 15:45:08 +00:00
2018-12-10 10:57:39 +00:00
// Other users cursor
if (Cursors.preDiffApply(info)) {
return true;
}
2018-04-19 15:45:08 +00:00
2018-12-13 12:22:19 +00:00
if (info.node && info.node.tagName === 'DIV' &&
info.node.getAttribute('class') &&
/cp-link-clicked/.test(info.node.getAttribute('class'))) {
if (info.diff.action === 'removeElement') {
return true;
}
}
// MEDIATAG
// Never modify widget ids
2018-04-23 12:33:39 +00:00
if (info.node && info.node.tagName === 'SPAN' && info.diff.name === 'data-cke-widget-id') {
return true;
}
if (info.node && info.node.tagName === 'SPAN' &&
info.node.getAttribute('class') &&
/cke_widget_wrapper/.test(info.node.getAttribute('class'))) {
if (info.diff.action === 'modifyAttribute' && info.diff.name === 'class') {
2018-04-20 13:33:14 +00:00
return true;
}
//console.log(info);
}
// CkEditor drag&drop icon container
if (info.node && info.node.tagName === 'SPAN' &&
2020-05-05 09:19:32 +00:00
info.node.getAttribute('class') &&
info.node.getAttribute('class').split(' ').indexOf('cke_widget_drag_handler_container') !== -1) {
return true;
}
// CkEditor drag&drop title (language fight)
if (info.node && info.node.getAttribute &&
2020-05-05 09:19:32 +00:00
info.node.getAttribute('class') &&
(info.node.getAttribute('class').split(' ').indexOf('cke_widget_drag_handler') !== -1 ||
info.node.getAttribute('class').split(' ').indexOf('cke_image_resizer') !== -1)) {
return true;
}
2018-04-19 15:45:08 +00:00
2017-08-28 10:25:05 +00:00
/*
Also reject any elements which would insert any one of
our forbidden tag types: script, iframe, object,
applet, video, or audio
*/
if (['addElement', 'replaceElement'].indexOf(info.diff.action) !== -1) {
if (info.diff.element && forbiddenTags.indexOf(info.diff.element.nodeName) !== -1) {
console.log("Rejecting forbidden tag of type (%s)", info.diff.element.nodeName);
return true;
} else if (info.diff.newValue && forbiddenTags.indexOf(info.diff.newValue.nodeType) !== -1) {
console.log("Rejecting forbidden tag of type (%s)", info.diff.newValue.nodeName);
return true;
}
}
// Don't remote the "active" class of our comments
if (info.node && info.node.tagName === 'COMMENT') {
2020-05-05 09:19:32 +00:00
if (info.diff.action === 'removeAttribute' && ['class'].indexOf(info.diff.name) !== -1) {
return true;
}
}
2017-08-28 10:25:05 +00:00
if (info.node && info.node.tagName === 'BODY') {
2020-05-05 09:19:32 +00:00
if (info.diff.action === 'removeAttribute' && ['class', 'spellcheck'].indexOf(info.diff.name) !== -1) {
2017-08-28 10:25:05 +00:00
return true;
}
}
/* DiffDOM will filter out magicline plugin elements
in practice this will make it impossible to use it
while someone else is typing, which could be annoying.
we should check when such an element is going to be
removed, and prevent that from happening. */
if (info.node && info.node.tagName === 'SPAN' &&
info.node.getAttribute('contentEditable') === "false") {
// it seems to be a magicline plugin element...
// but it can also be a widget (MEDIATAG), in which case the removal was
2018-04-20 13:33:14 +00:00
// probably intentional
2017-08-28 10:25:05 +00:00
if (info.diff.action === 'removeElement') {
// and you're about to remove it...
2018-04-20 13:33:14 +00:00
if (!info.node.getAttribute('class') ||
!/cke_widget_wrapper/.test(info.node.getAttribute('class'))) {
// This element is not a widget!
// this probably isn't what you want
/*
I have never seen this in the console, but the
magic line is still getting removed on remote
edits. This suggests that it's getting removed
by something other than diffDom.
*/
console.log("preventing removal of the magic line!");
// return true to prevent diff application
return true;
}
2017-08-28 10:25:05 +00:00
}
}
2018-12-21 17:16:29 +00:00
// Do not change the spellcheck value in view mode
if (readOnly && info.node && info.node.tagName === 'BODY' &&
info.diff.action === 'modifyAttribute' && info.diff.name === 'spellcheck') {
return true;
}
2017-08-28 10:25:05 +00:00
// Do not change the contenteditable value in view mode
if (readOnly && info.node && info.node.tagName === 'BODY' &&
info.diff.action === 'modifyAttribute' && info.diff.name === 'contenteditable') {
return true;
}
2020-05-05 09:19:32 +00:00
/*
cursor.update();
2020-05-05 09:19:32 +00:00
// no use trying to recover the cursor if it doesn't exist
if (!cursor.exists()) { return; }
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
/* frame is either 0, 1, 2, or 3, depending on which
cursor frames were affected: none, first, last, or both
*/
/*
var frame = info.frame = cursor.inNode(info.node);
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
if (!frame) { return; }
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
if (frame && typeof info.diff.oldValue === 'string' && typeof info.diff.newValue === 'string') {
//var pushes = cursor.pushDelta(info.diff.oldValue, info.diff.newValue);
var ops = ChainPad.Diff.diff(info.diff.oldValue, info.diff.newValue);
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
if (frame & 1) {
// push cursor start if necessary
cursor.transformRange(cursor.Range.start, ops);
}
if (frame & 2) {
// push cursor end if necessary
cursor.transformRange(cursor.Range.end, ops);
}
}
*/
2017-08-28 10:25:05 +00:00
},
2020-05-05 09:19:32 +00:00
/*
postDiffApply: function (info) {
if (info.frame) {
if (info.node) {
if (info.frame & 1) { cursor.fixStart(info.node); }
if (info.frame & 2) { cursor.fixEnd(info.node); }
} else { console.error("info.node did not exist"); }
var sel = cursor.makeSelection();
var range = cursor.makeRange();
cursor.fixSelection(sel, range);
}
}
*/
2017-08-28 10:25:05 +00:00
};
};
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
2020-05-05 09:19:32 +00:00
var addToolbarHideBtn = function(framework, $bar) {
// Expand / collapse the toolbar
var cfg = {
2020-04-27 13:13:51 +00:00
element: $bar
};
2020-05-05 09:19:32 +00:00
var onClick = function(visible) {
framework._.sfCommon.setAttribute(['pad', 'showToolbar'], visible);
};
2020-05-05 09:19:32 +00:00
framework._.sfCommon.getAttribute(['pad', 'showToolbar'], function(err, data) {
2020-05-13 12:42:22 +00:00
var state = false;
2020-05-05 09:19:32 +00:00
if (($(window).height() >= 800 || $(window).width() >= 800) &&
2020-05-13 12:42:22 +00:00
(typeof(data) === "undefined" || data)) {
state = true;
$('.cke_toolbox_main').show();
} else {
$('.cke_toolbox_main').hide();
}
var $collapse = framework._.sfCommon.createButton('toggle', true, cfg, onClick);
2020-05-13 12:42:22 +00:00
framework._.toolbar.$bottomL.append($collapse);
if (state) {
$collapse.addClass('cp-toolbar-button-active');
}
});
};
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
var displayMediaTags = function(framework, dom, mediaTagMap) {
setTimeout(function() { // Just in case
var tags = dom.querySelectorAll('media-tag:empty');
2020-05-05 09:19:32 +00:00
Array.prototype.slice.call(tags).forEach(function(el) {
MediaTag(el);
2020-05-05 09:19:32 +00:00
$(el).on('keydown', function(e) {
if ([8, 46].indexOf(e.which) !== -1) {
$(el).remove();
framework.localChange();
}
});
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.type === 'childList') {
var list_values = [].slice.call(el.children);
mediaTagMap[el.getAttribute('src')] = list_values;
}
});
});
observer.observe(el, {
attributes: false,
childList: true,
characterData: false
});
});
});
};
2020-05-05 09:19:32 +00:00
var restoreMediaTags = function(tempDom, mediaTagMap) {
var tags = tempDom.querySelectorAll('media-tag:empty');
2020-05-05 09:19:32 +00:00
Array.prototype.slice.call(tags).forEach(function(tag) {
var src = tag.getAttribute('src');
if (mediaTagMap[src]) {
2020-05-05 09:19:32 +00:00
mediaTagMap[src].forEach(function(n) {
2018-04-23 13:35:55 +00:00
tag.appendChild(n.cloneNode());
});
}
});
};
2020-05-05 09:19:32 +00:00
var andThen2 = function(editor, Ckeditor, framework) {
var mediaTagMap = {};
2018-02-27 16:38:29 +00:00
var $contentContainer = $('#cke_1_contents');
var $html = $('html');
2017-08-28 10:25:05 +00:00
var $faLink = $html.find('head link[href*="/bower_components/components-font-awesome/css/font-awesome.min.css"]');
if ($faLink.length) {
$html.find('iframe').contents().find('head').append($faLink.clone());
}
2020-04-20 13:22:16 +00:00
var ml = editor._.magiclineBackdoor.that.line.$;
2020-05-05 09:19:32 +00:00
[ml, ml.parentElement].forEach(function(el) {
2017-08-28 10:25:05 +00:00
el.setAttribute('class', 'non-realtime');
});
2020-04-20 13:22:16 +00:00
window.editor = editor;
2018-12-13 12:22:19 +00:00
var $iframe = $('html').find('iframe').contents();
2017-08-28 10:25:05 +00:00
var ifrWindow = $html.find('iframe')[0].contentWindow;
2019-01-09 15:16:44 +00:00
var customCss = '/customize/ckeditor-contents.css?' + window.CKEDITOR.CRYPTPAD_URLARGS;
$iframe.find('head').append('<link href="' + customCss + '" type="text/css" rel="stylesheet" _fcktemp="true"/>');
2019-01-08 16:47:22 +00:00
framework._.sfCommon.addShortcuts(ifrWindow);
2017-08-28 10:25:05 +00:00
var documentBody = ifrWindow.document.body;
2020-04-20 13:22:45 +00:00
var inner = window.inner = documentBody;
var $inner = $(inner);
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
var observer = new MutationObserver(function(muts) {
muts.forEach(function(mut) {
if (mut.type === 'childList') {
var $a;
for (var i = 0; i < mut.addedNodes.length; i++) {
$a = $(mut.addedNodes[i]);
2020-05-05 09:19:32 +00:00
if ($a.is('p') && $a.find('> span:empty').length &&
$a.find('> br').length && $a.children().length === 2) {
$a.find('> span').append($a.find('> br'));
}
}
}
});
});
observer.observe(documentBody, {
childList: true
});
2020-04-20 13:22:45 +00:00
var metadataMgr = framework._.sfCommon.getMetadataMgr();
var privateData = metadataMgr.getPrivateData();
var common = framework._.sfCommon;
var comments = Comments.create({
framework: framework,
metadataMgr: metadataMgr,
common: common,
editor: editor,
2020-04-22 14:23:45 +00:00
ifrWindow: ifrWindow,
2020-04-24 15:53:33 +00:00
$iframe: $iframe,
2020-04-22 14:23:45 +00:00
$inner: $inner,
2020-04-24 15:53:33 +00:00
$contentContainer: $contentContainer,
2020-04-22 14:23:45 +00:00
$container: $('#cp-app-pad-comments')
2020-04-20 13:22:45 +00:00
});
2018-12-10 10:57:39 +00:00
// My cursor
2017-08-28 10:25:05 +00:00
var cursor = module.cursor = Cursor(inner);
2018-12-10 10:57:39 +00:00
// Display other users cursor
var cursors = Cursors.create(inner, hjsonToDom, cursor);
2020-05-05 09:19:32 +00:00
var openLink = function(e) {
2017-08-28 10:25:05 +00:00
var el = e.currentTarget;
if (!el || el.nodeName !== 'A') { return; }
var href = el.getAttribute('href');
if (href) {
framework._.sfCommon.openUnsafeURL(href);
}
2017-08-28 10:25:05 +00:00
};
2020-05-25 21:12:12 +00:00
if (!privateData.isEmbed) {
mkHelpMenu(framework);
}
2018-02-27 16:38:29 +00:00
2020-05-05 09:19:32 +00:00
framework._.sfCommon.getAttribute(['pad', 'width'], function(err, data) {
2020-04-27 11:01:42 +00:00
var active = data || typeof(data) === "undefined";
if (active) {
$contentContainer.addClass('cke_body_width');
} else {
editor.execCommand('pagemode');
}
});
2020-05-05 09:19:32 +00:00
framework.onEditableChange(function(unlocked) {
2017-10-13 10:40:51 +00:00
if (!framework.isReadOnly()) {
2018-12-13 12:22:19 +00:00
$inner.attr('contenteditable', '' + Boolean(unlocked));
2017-10-13 10:40:51 +00:00
}
2018-12-13 12:22:19 +00:00
$inner.css({ background: unlocked ? '#fff' : '#eee' });
2017-10-13 10:40:51 +00:00
});
2020-05-05 09:19:32 +00:00
framework.setMediaTagEmbedder(function($mt) {
$mt.attr('contenteditable', 'false');
2018-04-19 15:45:08 +00:00
//$mt.attr('tabindex', '1');
2018-04-23 13:38:21 +00:00
//MEDIATAG
2018-04-23 12:33:39 +00:00
var element = new window.CKEDITOR.dom.element($mt[0]);
editor.insertElement(element);
2020-05-05 09:19:32 +00:00
editor.widgets.initOn(element, 'mediatag');
});
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
framework.setTitleRecommender(function() {
2017-08-28 10:25:05 +00:00
var text;
2020-05-05 09:19:32 +00:00
if (['h1', 'h2', 'h3'].some(function(t) {
var $header = $inner.find(t + ':first-of-type');
if ($header.length && $header.text()) {
text = $header.text();
return true;
}
})) { return text; }
});
2017-08-28 10:25:05 +00:00
var DD = new DiffDom(mkDiffOptions(cursor, framework.isReadOnly()));
2017-08-28 10:25:05 +00:00
2018-12-10 10:57:39 +00:00
var cursorStopped = false;
2018-12-14 15:40:15 +00:00
var cursorTo;
2020-05-05 09:19:32 +00:00
var updateCursor = function() {
2018-12-14 15:40:15 +00:00
if (cursorTo) { clearTimeout(cursorTo); }
// If we're receiving content
if (cursorStopped) { return void setTimeout(updateCursor, 100); }
2020-05-05 09:19:32 +00:00
cursorTo = setTimeout(function() {
2018-12-14 15:40:15 +00:00
framework.updateCursor();
}, 500); // 500ms to make sure it is sent after chainpad sync
2018-12-10 10:57:39 +00:00
};
2017-08-28 10:25:05 +00:00
// apply patches, and try not to lose the cursor in the process!
2020-05-05 09:19:32 +00:00
framework.onContentUpdate(function(hjson) {
if (!Array.isArray(hjson)) { throw new Error(Messages.typeError); }
var userDocStateDom = hjsonToDom(hjson);
2018-12-10 10:57:39 +00:00
cursorStopped = true;
userDocStateDom.setAttribute("contenteditable",
inner.getAttribute('contenteditable'));
2017-08-28 10:25:05 +00:00
restoreMediaTags(userDocStateDom, mediaTagMap);
2020-03-30 14:41:47 +00:00
cursors.removeCursors(inner);
// Deal with adjasent text nodes
userDocStateDom.normalize();
inner.normalize();
2020-05-05 09:19:32 +00:00
$(userDocStateDom).find('span[data-cke-display-name="media-tag"]:empty').each(function(i, el) {
$(el).remove();
});
2018-11-26 15:23:16 +00:00
// Get cursor position
cursor.offsetUpdate();
var oldText = inner.outerHTML;
// Apply the changes
2017-08-28 10:25:05 +00:00
var patch = (DD).diff(inner, userDocStateDom);
(DD).apply(inner, patch);
2019-11-22 14:50:32 +00:00
editor.fire('cp-wc'); // Update word count
2018-11-26 15:23:16 +00:00
// Restore cursor position
var newText = inner.outerHTML;
var ops = ChainPad.Diff.diff(oldText, newText);
cursor.restoreOffset(ops);
2020-05-05 09:19:32 +00:00
setTimeout(function() {
2018-12-14 15:40:15 +00:00
cursorStopped = false;
updateCursor();
}, 200);
2018-12-10 10:57:39 +00:00
// MEDIATAG: Migrate old mediatags to the widget system
2020-05-05 09:19:32 +00:00
$inner.find('media-tag:not(.cke_widget_element)').each(function(i, el) {
var element = new window.CKEDITOR.dom.element(el);
2020-05-05 09:19:32 +00:00
editor.widgets.initOn(element, 'mediatag');
});
displayMediaTags(framework, inner, mediaTagMap);
// MEDIATAG: Initialize mediatag widgets inserted in the document by other users
2018-04-19 15:45:08 +00:00
editor.widgets.checkWidgets();
if (framework.isReadOnly()) {
2018-12-13 12:22:19 +00:00
var $links = $inner.find('a');
2017-08-28 10:25:05 +00:00
// off so that we don't end up with multiple identical handlers
$links.off('click', openLink).on('click', openLink);
}
2020-04-20 13:22:45 +00:00
2020-04-22 14:23:45 +00:00
comments.onContentUpdate();
});
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
framework.setTextContentGetter(function() {
2018-02-01 09:09:08 +00:00
var innerCopy = inner.cloneNode(true);
displayMediaTags(framework, innerCopy, mediaTagMap);
innerCopy.normalize();
2020-05-05 09:19:32 +00:00
$(innerCopy).find('*').each(function(i, el) {
2018-02-01 09:09:08 +00:00
$(el).append(' ');
});
var str = $(innerCopy).text();
str = str.replace(/\s\s+/g, ' ');
return str;
});
2020-05-05 09:19:32 +00:00
framework.setContentGetter(function() {
$inner.find('span[data-cke-display-name="media-tag"]:empty').each(function(i, el) {
$(el).remove();
});
2018-12-10 10:57:39 +00:00
// We have to remove the cursors before getting the content because they split
// the text nodes and OT/ChainPad would freak out
2020-02-14 17:11:22 +00:00
cursors.removeCursors(inner);
2018-12-10 10:57:39 +00:00
2020-04-22 14:23:45 +00:00
comments.onContentUpdate();
displayMediaTags(framework, inner, mediaTagMap);
inner.normalize();
2018-12-10 10:57:39 +00:00
var hjson = Hyperjson.fromDOM(inner, shouldSerialize, hjsonFilters);
return hjson;
});
2017-08-28 10:25:05 +00:00
if (!framework.isReadOnly()) {
2020-04-27 13:13:51 +00:00
addToolbarHideBtn(framework, $('.cke_toolbox_main'));
} else {
$('.cke_toolbox_main').hide();
}
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
framework.onReady(function(newPad) {
2018-02-28 12:16:30 +00:00
editor.focus();
2017-08-28 10:25:05 +00:00
if (!module.isMaximized) {
module.isMaximized = true;
$('iframe.cke_wysiwyg_frame').css('width', '');
$('iframe.cke_wysiwyg_frame').css('height', '');
}
$('body').addClass('app-pad');
if (newPad) {
cursor.setToEnd();
} else if (framework.isReadOnly()) {
2017-08-28 10:25:05 +00:00
cursor.setToStart();
}
2017-12-20 11:15:43 +00:00
if (framework.isReadOnly()) {
2018-12-13 12:22:19 +00:00
$inner.attr('contenteditable', 'false');
2017-12-20 11:15:43 +00:00
}
var fmConfig = {
ckeditor: editor,
body: $('body'),
2020-05-05 09:19:32 +00:00
onUploaded: function(ev, data) {
var parsed = Hash.parsePadUrl(data.url);
2018-05-25 16:00:10 +00:00
var secret = Hash.getSecrets('file', parsed.hash, data.password);
2019-08-27 13:31:22 +00:00
var fileHost = privateData.fileHost || privateData.origin;
var src = fileHost + Hash.getBlobPathFromHex(secret.channel);
2018-05-25 16:00:10 +00:00
var key = Hash.encodeBase64(secret.keys.cryptKey);
var mt = '<media-tag contenteditable="false" src="' + src + '" data-crypto-key="cryptpad:' + key + '"></media-tag>';
2018-04-23 13:38:21 +00:00
// MEDIATAG
2018-04-23 12:33:39 +00:00
var element = window.CKEDITOR.dom.element.createFromHtml(mt);
if (ev && ev.insertElement) {
ev.insertElement(element);
} else {
editor.insertElement(element);
}
2020-05-05 09:19:32 +00:00
editor.widgets.initOn(element, 'mediatag');
}
};
2017-09-25 15:35:25 +00:00
window.APP.FM = framework._.sfCommon.createFileManager(fmConfig);
2020-05-05 09:19:32 +00:00
framework._.sfCommon.getAttribute(['pad', 'spellcheck'], function(err, data) {
2018-12-21 17:16:29 +00:00
if (framework.isReadOnly()) { return; }
if (data) {
$iframe.find('body').attr('spellcheck', true);
}
});
2020-04-20 09:56:12 +00:00
2020-05-05 09:19:32 +00:00
framework._.sfCommon.isPadStored(function(err, val) {
2020-02-05 12:33:32 +00:00
if (!val) { return; }
2018-12-13 12:22:19 +00:00
var b64images = $inner.find('img[src^="data:image"]:not(.cke_reset)');
2020-02-05 12:33:32 +00:00
if (b64images.length && framework._.sfCommon.isLoggedIn()) {
var no = h('button.cp-corner-cancel', Messages.cancel);
var yes = h('button.cp-corner-primary', Messages.ok);
2020-02-03 14:14:52 +00:00
var actions = h('div', [no, yes]);
2020-05-05 09:19:32 +00:00
var modal = UI.cornerPopup(Messages.pad_base64, actions, '', { big: true });
$(no).click(function() {
modal.delete();
});
2020-05-05 09:19:32 +00:00
$(yes).click(function() {
modal.delete();
2020-05-05 09:19:32 +00:00
b64images.each(function(i, el) {
var src = $(el).attr('src');
var blob = Util.dataURIToBlob(src);
var ext = '.' + (blob.type.split('/')[1] || 'png');
2020-05-05 09:19:32 +00:00
var name = (framework._.title.getTitle() || 'Pad') + '_image';
blob.name = name + ext;
var ev = {
2020-05-05 09:19:32 +00:00
insertElement: function(newEl) {
var element = new window.CKEDITOR.dom.element(el);
newEl.replace(element);
setTimeout(framework.localChange);
}
};
window.APP.FM.handleFile(blob, ev);
});
});
}
});
2020-04-22 14:23:45 +00:00
comments.ready();
2018-02-28 12:16:30 +00:00
/*setTimeout(function () {
$('iframe.cke_wysiwyg_frame').focus();
editor.focus();
console.log(editor);
console.log(editor.focusManager);
$(window).trigger('resize');
});*/
});
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
framework.onDefaultContentNeeded(function() {
2018-02-28 12:16:30 +00:00
inner.innerHTML = '<p></p>';
});
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
var importMediaTags = function(dom, cb) {
var $dom = $(dom);
2020-05-05 09:19:32 +00:00
$dom.find('media-tag').each(function(i, el) {
$(el).empty();
});
cb($dom[0]);
};
2020-05-05 09:19:32 +00:00
framework.setFileImporter({ accept: 'text/html' }, function(content, f, cb) {
importMediaTags(domFromHTML(content).body, function(dom) {
cb(Hyperjson.fromDOM(dom));
});
}, true);
2020-05-05 09:19:32 +00:00
framework.setFileExporter(Exporter.ext, function(cb) {
2018-10-18 16:50:38 +00:00
Exporter.main(inner, cb);
}, true);
2020-05-05 09:19:32 +00:00
framework.setNormalizer(function(hjson) {
return [
'BODY',
{
"class": "cke_editable cke_editable_themed cke_contents_ltr cke_show_borders",
"contenteditable": "true",
2020-05-05 09:19:32 +00:00
"spellcheck": "false"
},
hjson[2]
];
});
2017-08-28 10:25:05 +00:00
2018-12-10 10:57:39 +00:00
/* Display the cursor of other users and send our cursor */
2020-03-30 14:41:47 +00:00
framework.setCursorGetter(cursors.cursorGetter);
framework.onCursorUpdate(cursors.onCursorUpdate);
2018-12-14 15:40:15 +00:00
inner.addEventListener('click', updateCursor);
inner.addEventListener('keyup', updateCursor);
2018-12-10 10:57:39 +00:00
2018-11-22 13:45:12 +00:00
2017-08-28 10:25:05 +00:00
/* hitting enter makes a new line, but places the cursor inside
of the <br> instead of the <p>. This makes it such that you
cannot type until you click, which is rather unnacceptable.
If the cursor is ever inside such a <br>, you probably want
to push it out to the parent element, which ought to be a
paragraph tag. This needs to be done on keydown, otherwise
the first such keypress will not be inserted into the P. */
inner.addEventListener('keydown', cursor.brFix);
/*
CkEditor emits a change event when it detects new content in the editable area.
Our problem is that this event is sent asynchronously and late after a keystroke.
The result is that between the keystroke and the change event, chainpad may
receive remote changes and so it can wipe the newly inserted content (because
chainpad work synchronously), and the merged text is missing a few characters.
To fix this, we have to call `framework.localChange` sooner. We can't listen for
the "keypress" event because it is trigger before the character is inserted.
The solution is the "input" event, triggered by the browser as soon as the
character is inserted.
*/
2020-05-05 09:19:32 +00:00
inner.addEventListener('input', function() {
2018-12-14 15:40:15 +00:00
framework.localChange();
updateCursor();
2019-11-22 14:50:32 +00:00
editor.fire('cp-wc'); // Update word count
2018-12-14 15:40:15 +00:00
});
editor.on('change', framework.localChange);
2017-08-28 10:25:05 +00:00
2019-11-22 14:50:32 +00:00
var wordCount = h('span.cp-app-pad-wordCount');
$('.cke_toolbox_main').append(wordCount);
2020-05-05 09:19:32 +00:00
editor.on('cp-wc-update', function() {
if (!editor.wordCount || typeof(editor.wordCount.wordCount) === "undefined") {
2019-11-22 14:50:32 +00:00
wordCount.innerText = '';
return;
}
wordCount.innerText = Messages._getKey('pad_wordCount', [editor.wordCount.wordCount]);
});
2017-08-28 10:25:05 +00:00
// export the typing tests to the window.
// call like `test = easyTest()`
// terminate the test like `test.cancel()`
2020-05-05 09:19:32 +00:00
window.easyTest = function() {
2017-08-28 10:25:05 +00:00
cursor.update();
2018-11-16 10:28:05 +00:00
//var start = cursor.Range.start;
2018-11-08 09:46:07 +00:00
//var test = TypingTest.testInput(inner, start.el, start.offset, framework.localChange);
2018-11-22 13:45:12 +00:00
var test = TypingTest.testPad(editor, framework.localChange);
framework.localChange();
2017-08-28 10:25:05 +00:00
return test;
};
// Fix the scrollbar if it's reset when clicking on a button (firefox only?)
2018-11-16 10:28:05 +00:00
var buttonScrollTop;
2020-05-05 09:19:32 +00:00
$('.cke_toolbox_main').find('.cke_button, .cke_combo_button').mousedown(function() {
buttonScrollTop = $('iframe').contents().scrollTop();
2020-05-05 09:19:32 +00:00
setTimeout(function() {
$('iframe').contents().scrollTop(buttonScrollTop);
});
});
2020-05-05 09:19:32 +00:00
$('.cke_toolbox_main').find('.cke_button').click(function() {
2017-08-28 10:25:05 +00:00
var e = this;
var classString = e.getAttribute('class');
2020-05-05 09:19:32 +00:00
var classes = classString.split(' ').filter(function(c) {
2017-08-28 10:25:05 +00:00
return /cke_button__/.test(c);
});
var id = classes[0];
if (typeof(id) === 'string') {
framework.feedback(id.toUpperCase());
2017-08-28 10:25:05 +00:00
}
});
framework.start();
2017-08-28 10:25:05 +00:00
};
2020-05-05 09:19:32 +00:00
var main = function() {
2017-08-28 10:25:05 +00:00
var Ckeditor;
var editor;
var framework;
2017-08-28 10:25:05 +00:00
2020-05-05 09:19:32 +00:00
nThen(function(waitFor) {
Framework.create({
toolbarContainer: '#cp-app-pad-toolbar',
contentContainer: '#cp-app-pad-editor',
patchTransformer: ChainPad.NaiveJSONTransformer,
2018-02-27 16:38:29 +00:00
/*thumbnail: {
2017-10-26 10:31:16 +00:00
getContainer: function () { return $('iframe').contents().find('html')[0]; },
filter: function (el, before) {
if (before) {
2017-11-02 18:11:27 +00:00
module.cursor.update();
2017-10-26 10:31:16 +00:00
$(el).parents().css('overflow', 'visible');
$(el).css('max-width', '1200px');
$(el).css('max-height', Math.max(600, $(el).width()) + 'px');
$(el).css('overflow', 'hidden');
$(el).find('body').css('background-color', 'transparent');
return;
}
$(el).parents().css('overflow', '');
$(el).css('max-width', '');
$(el).css('max-height', '');
$(el).css('overflow', '');
$(el).find('body').css('background-color', '#fff');
2017-11-02 18:11:27 +00:00
var sel = module.cursor.makeSelection();
var range = module.cursor.makeRange();
module.cursor.fixSelection(sel, range);
2017-10-26 10:31:16 +00:00
}
2018-02-27 16:38:29 +00:00
}*/
2020-05-05 09:19:32 +00:00
}, waitFor(function(fw) { window.APP.framework = framework = fw; }));
2020-05-05 09:19:32 +00:00
nThen(function(waitFor) {
ckEditorAvailable(waitFor(function(ck) {
Ckeditor = ck;
require(['/pad/wysiwygarea-plugin.js'], waitFor());
}));
$(waitFor());
2020-05-05 09:19:32 +00:00
}).nThen(function(waitFor) {
Ckeditor.config.toolbarCanCollapse = true;
if (screen.height < 800) {
Ckeditor.config.toolbarStartupExpanded = false;
$('meta[name=viewport]').attr('content',
'width=device-width, initial-scale=1.0, user-scalable=no');
} else {
$('meta[name=viewport]').attr('content',
'width=device-width, initial-scale=1.0, user-scalable=yes');
}
// Used in ckeditor-config.js
Ckeditor.CRYPTPAD_URLARGS = ApiConfig.requireConf.urlArgs;
Ckeditor._mediatagTranslations = {
title: Messages.pad_mediatagTitle,
width: Messages.pad_mediatagWidth,
height: Messages.pad_mediatagHeight,
ratio: Messages.pad_mediatagRatio,
border: Messages.pad_mediatagBorder,
preview: Messages.pad_mediatagPreview,
'import': Messages.pad_mediatagImport,
options: Messages.pad_mediatagOptions
};
2020-04-24 10:49:21 +00:00
Ckeditor._commentsTranslations = {
comment: Messages.comments_comment,
};
2020-05-05 09:19:32 +00:00
Ckeditor.plugins.addExternal('mediatag', '/pad/', 'mediatag-plugin.js');
Ckeditor.plugins.addExternal('blockbase64', '/pad/', 'disable-base64.js');
Ckeditor.plugins.addExternal('comments', '/pad/', 'comment.js');
Ckeditor.plugins.addExternal('wordcount', '/pad/wordcount/', 'plugin.js');
module.ckeditor = editor = Ckeditor.replace('editor1', {
customConfig: '/customize/ckeditor-config.js',
});
2020-04-27 11:01:42 +00:00
editor.addCommand('pagemode', {
2020-05-05 09:19:32 +00:00
exec: function() {
2020-04-27 11:01:42 +00:00
if (!framework) { return; }
var $contentContainer = $('#cke_1_contents');
var $button = $('.cke_button__pagemode');
var isLarge = $button.hasClass('cke_button_on');
if (isLarge) {
$button.addClass('cke_button_off').removeClass('cke_button_on');
$contentContainer.addClass('cke_body_width');
} else {
$button.addClass('cke_button_on').removeClass('cke_button_off');
$contentContainer.removeClass('cke_body_width');
}
framework._.sfCommon.setAttribute(['pad', 'width'], isLarge);
}
});
editor.ui.addButton('PageMode', {
label: Messages.pad_useFullWidth,
command: 'pagemode',
icon: '/pad/icons/arrows-h.png',
toolbar: 'document,60'
});
editor.on('instanceReady', waitFor());
2020-05-05 09:19:32 +00:00
}).nThen(function() {
2020-05-05 16:11:00 +00:00
var _getPath = Ckeditor.plugins.getPath;
Ckeditor.plugins.getPath = function (name) {
if (name === 'preview') {
return window.location.origin + "/bower_components/ckeditor/plugins/preview/";
}
return _getPath(name);
};
2020-05-26 09:27:58 +00:00
window.__defineGetter__('_cke_htmlToLoad', function() {});
2020-05-05 09:19:32 +00:00
editor.plugins.mediatag.import = function($mt) {
framework._.sfCommon.importMediaTag($mt);
};
2020-04-24 11:17:56 +00:00
Links.init(Ckeditor, editor);
2020-05-05 09:19:32 +00:00
}).nThen(function() {
2018-02-27 16:38:29 +00:00
// Move ckeditor parts to have a structure like the other apps
var $contentContainer = $('#cke_1_contents');
var $mainContainer = $('#cke_editor1 > .cke_inner');
var $ckeToolbar = $('#cke_1_top').find('.cke_toolbox_main');
$mainContainer.prepend($ckeToolbar.addClass('cke_reset_all'));
$contentContainer.append(h('div#cp-app-pad-comments'));
2020-04-24 16:46:29 +00:00
$ckeToolbar.find('.cke_button__image_icon').parent().hide();
}).nThen(waitFor());
2020-05-05 09:19:32 +00:00
}).nThen(function( /*waitFor*/ ) {
function launchAnchorTest(test) {
// -------- anchor test: make sure the exported anchor contains <a name="..."> -------
console.log('---- anchor test: make sure the exported anchor contains <a name="..."> -----.');
function tryAndTestExport() {
console.log("Starting tryAndTestExport.");
2020-05-05 09:19:32 +00:00
editor.on('dialogShow', function(evt) {
console.log("Anchor dialog detected.");
var dialog = evt.data;
2020-05-05 09:19:32 +00:00
$(dialog.parts.contents.$).find("input").val('xx-' + Math.round(Math.random() * 1000));
2018-08-14 15:11:08 +00:00
dialog.click(window.CKEDITOR.dialog.okButton(editor).id);
2020-05-05 09:19:32 +00:00
});
var existingText = editor.getData();
editor.insertText("A bit of text");
console.log("Launching anchor command.");
editor.execCommand(editor.ui.get('Anchor').command);
console.log("Anchor command launched.");
var waitH = window.setInterval(function() {
console.log("Waited 2s for the dialog to appear");
2018-08-14 15:11:08 +00:00
var anchors = window.CKEDITOR.plugins["link"].getEditorAnchors(editor);
2020-05-05 09:19:32 +00:00
if (!anchors || anchors.length === 0) {
test.fail("No anchors found. Please adjust document");
} else {
console.log(anchors.length + " anchors found.");
2018-10-18 16:50:38 +00:00
var exported = Exporter.getHTML(window.inner);
console.log("Obtained exported: " + exported);
var allFound = true;
2020-05-05 09:19:32 +00:00
for (var i = 0; i < anchors.length; i++) {
var anchor = anchors[i];
console.log("Anchor " + anchor.name);
var expected = "<a id=\"" + anchor.id + "\" name=\"" + anchor.name + "\" ";
2020-05-05 09:19:32 +00:00
var found = exported.indexOf(expected) >= 0;
console.log("Found " + expected + " " + found + ".");
allFound = allFound && found;
}
console.log("Cleaning up.");
2020-05-05 09:19:32 +00:00
if (allFound) {
// clean-up
editor.execCommand('undo');
editor.execCommand('undo');
2020-05-05 09:19:32 +00:00
var nint = window.setInterval(function() {
2018-08-14 15:11:08 +00:00
console.log("Waiting for undo to yield same result.");
2020-05-05 09:19:32 +00:00
if (existingText === editor.getData()) {
window.clearInterval(nint);
test.pass();
}
}, 500);
2020-05-05 09:19:32 +00:00
} else {
test.fail("Not all expected a elements found for document at " + window.top.location + ".");
}
}
window.clearInterval(waitH);
2020-05-05 09:19:32 +00:00
}, 2000);
}
var intervalHandle = window.setInterval(function() {
2020-05-05 09:19:32 +00:00
if (editor.status === "ready") {
window.clearInterval(intervalHandle);
console.log("Editor is ready.");
tryAndTestExport();
} else {
console.log("Waiting for editor to be ready.");
}
}, 100);
}
Test(function(test) {
launchAnchorTest(test);
});
andThen2(editor, Ckeditor, framework);
2017-08-28 10:25:05 +00:00
});
};
main();
2020-05-05 16:11:00 +00:00
});