require(['/api/config'], function (ApiConfig) { // see ckeditor_base.js getUrl() window.CKEDITOR_GETURL = function (resource) { if (resource.indexOf( '/' ) === 0) { 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([ 'jquery', '/bower_components/hyperjson/hyperjson.js', '/common/sframe-app-framework.js', '/common/cursor.js', '/common/TypingTests.js', '/customize/messages.js', '/pad/links.js', '/bower_components/nthen/index.js', '/common/media-tag.js', '/api/config', '/common/common-hash.js', '/common/common-util.js', '/bower_components/chainpad/chainpad.dist.js', '/customize/application_config.js', '/bower_components/diff-dom/diffDOM.js', 'css!/bower_components/bootstrap/dist/css/bootstrap.min.css', 'css!/bower_components/components-font-awesome/css/font-awesome.min.css', 'less!/customize/src/less2/main.less', ], function ( $, Hyperjson, Framework, Cursor, TypingTest, Messages, Links, nThen, MediaTag, ApiConfig, Hash, Util, ChainPad, AppConfig) { var DiffDom = window.diffDOM; var slice = function (coll) { return Array.prototype.slice.call(coll); }; var removeListeners = function (root) { slice(root.attributes).map(function (attr) { if (/^on/.test(attr.name)) { root.attributes.removeNamedItem(attr.name); } }); slice(root.children).forEach(removeListeners); }; var hjsonToDom = function (H) { var dom = Hyperjson.toDOM(H); removeListeners(dom); return dom; }; var module = window.REALTIME_MODULE = window.APP = { Hyperjson: Hyperjson, logFights: true, fights: [], Cursor: Cursor, }; // Filter elements to serialize 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'))) ) ); }; var isNotMagicLine = function (el) { return !(el && typeof(el.getAttribute) === 'function' && el.getAttribute('class') && el.getAttribute('class').split(' ').indexOf('non-realtime') !== -1); }; var shouldSerialize = function (el) { return isNotMagicLine(el) && !isWidget(el); }; // Filter attributes in the serialized elements var widgetFilter = function (hj) { // Send a widget ID == 0 to avoid a fight between broswers about it and // 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) { var child = (hj[2] || [])[0]; if (child && child[0] === 'MEDIA-TAG') { delete child[1].class; delete child[1].contenteditable; delete child[1]['data-cke-widget-data']; delete child[1]['data-cke-widget-keep-attr']; delete child[1]['data-widget']; hj[0] = child[0]; hj[1] = child[1]; hj[2] = child[2]; return hj; } }*/ 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"; hj[1]['data-cke-widget-id'] = "0"; } // Remove the title attribute of the drag&drop icons since they are localized and create fights over the language to use if (split.indexOf('cke_widget_drag_handler') !== -1 || split.indexOf('cke_image_resizer') !== -1) { hj[1].title = undefined; } } return hj; }; var hjsonFilters = function (hj) { /* catch `type="_moz"` before it goes over the wire */ var brFilter = function (hj) { if (hj[1].type === '_moz') { hj[1].type = undefined; } return hj; }; var mediatagContentFilter = function (hj) { if (hj[0] === 'MEDIA-TAG') { hj[2] = []; } return hj; }; brFilter(hj); mediatagContentFilter(hj); widgetFilter(hj); return hj; }; var domFromHTML = function (html) { return new DOMParser().parseFromString(html, 'text/html'); }; var forbiddenTags = [ 'SCRIPT', //'IFRAME', 'OBJECT', 'APPLET', //'VIDEO', //'AUDIO' ]; var getHTML = function (inner) { return ('\n' + '\n' + inner.innerHTML); }; var CKEDITOR_CHECK_INTERVAL = 100; var ckEditorAvailable = function (cb) { var intr; var check = function () { if (window.CKEDITOR) { clearTimeout(intr); cb(window.CKEDITOR); } }; intr = setInterval(function () { console.log("Ckeditor was not defined. Trying again in %sms", CKEDITOR_CHECK_INTERVAL); check(); }, CKEDITOR_CHECK_INTERVAL); check(); }; var mkHelpMenu = function (framework) { var $toolbarContainer = $('.cke_toolbox_main'); var helpMenu = framework._.sfCommon.createHelpMenu(['text', 'pad']); $toolbarContainer.before(helpMenu.menu); framework._.toolbar.$drawer.append(helpMenu.button); }; var mkDiffOptions = function (cursor, readOnly) { return { preDiffApply: function (info) { /* 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; } } // Do not change the widget ids if (info.node && info.node.tagName === 'SPAN' && info.diff.action === 'modifyAttribute' && 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') { return true; } console.log(info); } if (info.node && info.node.tagName === 'MEDIA-TAG') { console.log(info); } // CkEditor drag&drop icon container if (info.node && info.node.tagName === 'SPAN' && info.node.getAttribute('class') && info.node.getAttribute('class').split(' ').indexOf('cke_widget_drag_handler_container') !== -1) { //console.log('Preventing removal of the drag&drop icon container of a macro', info.node); return true; } // CkEditor drag&drop title (language fight) if (info.node && info.node.getAttribute && 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 ) ) { //console.log('Preventing removal of the drag&drop icon container of a macro', info.node); return true; } /* 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; } } if (info.node && info.node.tagName === 'BODY') { if (info.diff.action === 'removeAttribute' && ['class', 'spellcheck'].indexOf(info.diff.name) !== -1) { 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 // probably intentional if (info.diff.action === 'removeElement') { // and you're about to remove it... 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; } } } // 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; } if (info.diff.action === "removeElement") { console.log(info); } if (info.node && info.node.name === "MEDIA-TAG") { console.log(info); } cursor.update(); // no use trying to recover the cursor if it doesn't exist if (!cursor.exists()) { return; } /* 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); if (!frame) { return; } if (typeof info.diff.oldValue === 'string' && typeof info.diff.newValue === 'string') { var pushes = cursor.pushDelta(info.diff.oldValue, info.diff.newValue); if (frame & 1) { // push cursor start if necessary if (pushes.commonStart < cursor.Range.start.offset) { cursor.Range.start.offset += pushes.delta; } } if (frame & 2) { // push cursor end if necessary if (pushes.commonStart < cursor.Range.end.offset) { cursor.Range.end.offset += pushes.delta; } } } }, 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); } } }; }; //////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////// var addToolbarHideBtn = function (framework, $bar) { // Expand / collapse the toolbar var cfg = { element: $bar.find('.cke_toolbox_main') }; var onClick = function (visible) { framework._.sfCommon.setAttribute(['pad', 'showToolbar'], visible); }; framework._.sfCommon.getAttribute(['pad', 'showToolbar'], function (err, data) { if (($(window).height() >= 800 || $(window).width() >= 800) && (typeof(data) === "undefined" || data)) { $('.cke_toolbox_main').show(); } else { $('.cke_toolbox_main').hide(); } var $collapse = framework._.sfCommon.createButton('toggle', true, cfg, onClick); framework._.toolbar.$rightside.append($collapse); }); }; var displayMediaTags = function (framework, dom, mediaTagMap) { setTimeout(function () { // Just in case var tags = dom.querySelectorAll('media-tag:empty'); Array.prototype.slice.call(tags).forEach(function (el) { MediaTag(el); $(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 }); }); }); }; var restoreMediaTags = function (tempDom, mediaTagMap) { var tags = tempDom.querySelectorAll('media-tag:empty'); Array.prototype.slice.call(tags).forEach(function (tag) { var src = tag.getAttribute('src'); if (mediaTagMap[src]) { mediaTagMap[src].forEach(function (n) { tag.appendChild(n); }); } }); }; var andThen2 = function (editor, Ckeditor, framework) { var mediaTagMap = {}; var $bar = $('#cke_1_toolbox'); var $contentContainer = $('#cke_1_contents'); var $html = $bar.closest('html'); 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()); } var ml = Ckeditor.instances.editor1.plugins.magicline.backdoor.that.line.$; [ml, ml.parentElement].forEach(function (el) { el.setAttribute('class', 'non-realtime'); }); var ifrWindow = $html.find('iframe')[0].contentWindow; var documentBody = ifrWindow.document.body; var inner = window.inner = documentBody; var cursor = module.cursor = Cursor(inner); var openLink = function (e) { var el = e.currentTarget; if (!el || el.nodeName !== 'A') { return; } var href = el.getAttribute('href'); if (href) { framework._.sfCommon.openUnsafeURL(href); } }; mkHelpMenu(framework); framework.onEditableChange(function (unlocked) { if (!framework.isReadOnly()) { $(inner).attr('contenteditable', '' + Boolean(unlocked)); } $(inner).css({ background: unlocked ? '#fff' : '#eee' }); }); framework.setMediaTagEmbedder(function ($mt) { $mt.attr('contenteditable', 'false'); //$mt.attr('tabindex', '1'); console.log($mt); //var element = new window.CKEDITOR.dom.element($mt[0]); //editor.insertElement(element); console.log($mt[0].outerHTML); editor.insertHtml($mt[0].outerHTML); //editor.widgets.initOn( element, 'mediatag' ) }); framework.setTitleRecommender(function () { var text; 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; } }); var DD = new DiffDom(mkDiffOptions(cursor, framework.isReadOnly())); // apply patches, and try not to lose the cursor in the process! framework.onContentUpdate(function (hjson) { if (!Array.isArray(hjson)) { throw new Error(Messages.typeError); } var userDocStateDom = hjsonToDom(hjson); userDocStateDom.setAttribute("contenteditable", inner.getAttribute('contenteditable')); restoreMediaTags(userDocStateDom, mediaTagMap); // Deal with adjasent text nodes userDocStateDom.normalize(); $(userDocStateDom).find('media-tag:not(.cke_widget_element)').each(function (i, el) { console.log(el); var element = window.CKEDITOR.dom.element.createFromHtml(el); console.log(element); editor.widgets.initOn( element, 'mediatag' ) console.log(el, element); }); inner.normalize(); var patch = (DD).diff(inner, userDocStateDom); (DD).apply(inner, patch); displayMediaTags(framework, inner, mediaTagMap); //editor.widgets.instances = {}; editor.widgets.checkWidgets(); if (framework.isReadOnly()) { var $links = $(inner).find('a'); // off so that we don't end up with multiple identical handlers $links.off('click', openLink).on('click', openLink); } }); framework.setTextContentGetter(function () { var innerCopy = inner.cloneNode(true); displayMediaTags(framework, innerCopy, mediaTagMap); innerCopy.normalize(); $(innerCopy).find('*').each(function (i, el) { $(el).append(' '); }); var str = $(innerCopy).text(); str = str.replace(/\s\s+/g, ' '); return str; }); framework.setContentGetter(function () { displayMediaTags(framework, inner, mediaTagMap); inner.normalize(); return Hyperjson.fromDOM(inner, isNotMagicLine, hjsonFilters); }); $bar.find('#cke_1_toolbar_collapser').hide(); if (!framework.isReadOnly()) { addToolbarHideBtn(framework, $contentContainer); } else { $('.cke_toolbox_main').hide(); } framework.onReady(function (newPad) { editor.focus(); 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()) { cursor.setToStart(); } if (framework.isReadOnly()) { $(inner).attr('contenteditable', 'false'); } var fmConfig = { ckeditor: editor, body: $('body'), onUploaded: function (ev, data) { var parsed = Hash.parsePadUrl(data.url); var hexFileName = Util.base64ToHex(parsed.hashData.channel); var src = '/blob/' + hexFileName.slice(0,2) + '/' + hexFileName; var mt = ''; //editor.insertElement(window.CKEDITOR.dom.element.createFromHtml(mt)); //editor.insertHtml(mt); var element = window.CKEDITOR.dom.element.createFromHtml(mt); editor.insertElement(element); editor.widgets.initOn( element, 'mediatag' ) } }; window.APP.FM = framework._.sfCommon.createFileManager(fmConfig); framework._.sfCommon.getAttribute(['pad', 'width'], function (err, data) { if (data) { var $iframe = $('html').find('iframe').contents(); $iframe.find('html').addClass('cke_body_width'); } }); /*setTimeout(function () { $('iframe.cke_wysiwyg_frame').focus(); editor.focus(); console.log(editor); console.log(editor.focusManager); $(window).trigger('resize'); });*/ }); framework.onDefaultContentNeeded(function () { inner.innerHTML = '

'; }); var importMediaTags = function (dom, cb) { var $dom = $(dom); $dom.find('media-tag').each(function (i, el) { $(el).empty(); }); cb($dom[0]); }; framework.setFileImporter({ accept: 'text/html' }, function (content, f, cb) { importMediaTags(domFromHTML(content).body, function (dom) { cb(Hyperjson.fromDOM(dom)); }); }, true); var exportMediaTags = function (inner, cb) { var $clone = $(inner).clone(); nThen(function (waitFor) { $(inner).find('media-tag').each(function (i, el) { if (!$(el).data('blob')) { return; } Util.blobToImage($(el).data('blob'), waitFor(function (imgSrc) { $clone.find('media-tag[src="' + $(el).attr('src') + '"] img') .attr('src', imgSrc); })); }); }).nThen(function () { cb($clone[0]); }); }; framework.setFileExporter('html', function (cb) { exportMediaTags(inner, function (toExport) { cb(new Blob([ getHTML(toExport) ], { type: "text/html;charset=utf-8" })); }); }, true); framework.setNormalizer(function (hjson) { return [ 'BODY', { "class": "cke_editable cke_editable_themed cke_contents_ltr cke_show_borders", "contenteditable": "true", "spellcheck":"false" }, hjson[2] ]; }); /* hitting enter makes a new line, but places the cursor inside of the
instead of the

. This makes it such that you cannot type until you click, which is rather unnacceptable. If the cursor is ever inside such a
, 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); editor.on('change', framework.localChange); // export the typing tests to the window. // call like `test = easyTest()` // terminate the test like `test.cancel()` window.easyTest = function () { cursor.update(); var start = cursor.Range.start; var test = TypingTest.testInput(inner, start.el, start.offset, framework.localChange); framework.localChange(); return test; }; $bar.find('.cke_button').click(function () { var e = this; var classString = e.getAttribute('class'); var classes = classString.split(' ').filter(function (c) { return /cke_button__/.test(c); }); var id = classes[0]; if (typeof(id) === 'string') { framework.feedback(id.toUpperCase()); } }); framework.start(); }; var main = function () { var Ckeditor; var editor; var framework; nThen(function (waitFor) { Framework.create({ toolbarContainer: '#cke_1_toolbox', contentContainer: '#cke_editor1 > .cke_inner', patchTransformer: ChainPad.NaiveJSONTransformer, /*thumbnail: { getContainer: function () { return $('iframe').contents().find('html')[0]; }, filter: function (el, before) { if (before) { module.cursor.update(); $(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'); var sel = module.cursor.makeSelection(); var range = module.cursor.makeRange(); module.cursor.fixSelection(sel, range); } }*/ }, waitFor(function (fw) { window.APP.framework = framework = fw; })); nThen(function (waitFor) { ckEditorAvailable(waitFor(function (ck) { Ckeditor = ck; require(['/pad/wysiwygarea-plugin.js'], waitFor()); })); $(waitFor()); }).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; var backColor = AppConfig.appBackgroundColor; var newCss = '.cke_body_width { background: '+ backColor +'; height: 100%; }' + '.cke_body_width body {' + 'max-width: 50em; padding: 20px 30px; margin: 0 auto; min-height: 100%;'+ 'box-sizing: border-box; overflow: auto;'+ '}' + '.cke_body_width body > *:first-child { margin-top: 0; }'; Ckeditor.addCss(newCss); Ckeditor.plugins.addExternal('mediatag','/pad/', 'mediatag-plugin.js'); module.ckeditor = editor = Ckeditor.replace('editor1', { customConfig: '/customize/ckeditor-config.js', }); editor.on('instanceReady', waitFor()); }).nThen(function () { editor.plugins.mediatag.translations = { title: Messages.pad_mediatagTitle, width: Messages.pad_mediatagWidth, height: Messages.pad_mediatagHeight }; Links.addSupportForOpeningLinksInNewTab(Ckeditor)({editor: editor}); }).nThen(function () { // Move ckeditor parts to have a structure like the other apps var $toolbarContainer = $('#cke_1_top'); var $contentContainer = $('#cke_1_contents'); var $mainContainer = $('#cke_editor1'); $contentContainer.prepend($toolbarContainer.find('.cke_toolbox_main')); $mainContainer.prepend($toolbarContainer); $contentContainer.find('.cke_toolbox_main').addClass('cke_reset_all'); $toolbarContainer.removeClass('cke_reset_all'); }).nThen(waitFor()); }).nThen(function (/*waitFor*/) { andThen2(editor, Ckeditor, framework); }); }; main(); });