X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/ad64ee06bd810b02f60b474b12d397eb4e95bdff..28faa6e7111db9527643804893de5aee7eb3da33:/modules/documentCanvas/canvas/documentElement.js diff --git a/modules/documentCanvas/canvas/documentElement.js b/modules/documentCanvas/canvas/documentElement.js index 8ef918a..c6c9f22 100644 --- a/modules/documentCanvas/canvas/documentElement.js +++ b/modules/documentCanvas/canvas/documentElement.js @@ -173,56 +173,61 @@ $.extend(DocumentNodeElement.prototype, { var addFormatting = function() { var toret = $('
'); + var formattings = {}; - if(this.data('orig-before') && this.data('orig-before').length) { - this.data('orig-before').forEach(function(toAdd) { - if(toAdd) - toret.prepend(document.createTextNode(toAdd)); - }); + if(this.data('orig-before') !== undefined) { + if(this.data('orig-before')) { + toret.prepend(document.createTextNode(this.data('orig-before'))); + } } else if(level && this.getWlxmlTag() !== 'span') { toret.append('\n' + (new Array(level * 2 + 1)).join(' ')); } - if(this.data('orig-append') && this.data('orig-append').length) { - this.data('orig-append').forEach(function(toAdd) { - if(toAdd) - node.prepend(toAdd); - }); - } else if(this.getWlxmlTag() !== 'span'){ + + toret.append(node); + + if(this.data('orig-after')) { + toret.append(document.createTextNode(this.data('orig-after'))); + } + + /* Inside node */ + if(this.data('orig-begin')) { + node.prepend(this.data('orig-begin')); + formattings.begin = true; + } + + if(this.data('orig-end') !== undefined) { + if(this.data('orig-end')) { + node.append(this.data('orig-end')); + } + } else if(this.getWlxmlTag() !== 'span' && children.length){ node.append('\n' + (new Array(level * 2 + 1)).join(' ')); } - toret.append(node); - return toret.contents(); + + return {parts: toret.contents(), formattings: formattings}; }.bind(this); - var parts = addFormatting(node); + var children = this.children(), - childParts, - prevChildParts; + childParts; - var containsPrefixAndSuffix = function(idx) { - if(idx === children.length - 1 && node.contents().length === 2) - return true; - if(prevChildParts && prevChildParts.length > 1 && prevChildParts[0].nodeType === Node.TEXT_NODE && prevChildParts[1].nodeType === Node.TEXT_NODE) - return true; - return false; - } + var formatting = addFormatting(node); for(var i = children.length - 1; i >= 0; i--) { childParts = children[i].toXML(level + 1); - - if(containsPrefixAndSuffix(i) && children[i] instanceof DocumentTextElement) { + if(typeof childParts === 'string') + childParts = [document.createTextNode(childParts)]; + + if(formatting.formattings.begin) { $(node.contents()[0]).after(childParts); - } else { + } else node.prepend(childParts); - } - prevChildParts = childParts; } - return parts; + return formatting.parts; }, append: function(params) { if(params.tag !== 'span') - this.data('orig-append', []); + this.data('orig-ends', undefined); return manipulate(this, params, 'append'); }, before: function(params) { @@ -287,7 +292,7 @@ $.extend(DocumentNodeElement.prototype, { this.dom().removeAttr('wlxml-class'); }, is: function(what) { - if(what === 'list' && _.contains(['list-items', 'list-items-enum'], this.dom().attr('wlxml-class'))) + if(what === 'list' && _.contains(['list.items', 'list.items.enum'], this.getWlxmlClass())) return true; return false; }, @@ -451,6 +456,22 @@ $.extend(DocumentTextElement.prototype, { return {first: parentElement, second: newElement}; }, + divide: function(params) { + var myText = this.getText(); + + if(params.offset <= 0 || params.offset >= myText.length) + return; + + var lhsText = myText.substr(0, params.offset), + rhsText = myText.substr(params.offset), + newElement = DocumentNodeElement.create({tag: params.tag, klass: params.klass}, this.canvas), + rhsTextElement = DocumentTextElement.create({text: rhsText}); + + this.setText(lhsText); + this.after(newElement); + newElement.after(rhsTextElement); + return newElement; + } }); return {