X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/56ab6eadd6887a63a83c768abf3c02393d1f4a28..9385033bf213d7d00f0646c1ee3b3aa8a463cf02:/modules/visualEditor.transformations.js diff --git a/modules/visualEditor.transformations.js b/modules/visualEditor.transformations.js index 2d2f630..22deba5 100644 --- a/modules/visualEditor.transformations.js +++ b/modules/visualEditor.transformations.js @@ -8,7 +8,31 @@ if(typeof module !== 'undefined' && module.exports) { transformations.fromXML = { getHTMLTree: function(xml) { - return xml; + var inner = $(xml).clone(); + var toret = $('
'); + toret.append(inner); + toret.find('metadata').remove(); + + var toBlock = ['div', 'document', 'section', 'header']; + var toInline = ['aside']; + + toBlock.forEach(function(tagName) { + tagName = tagName.toLowerCase(); + console.log('running ' + tagName); + toret.find(tagName).replaceWith(function() { + var suffix = tagName !== 'div' ? tagName : 'block'; + return $('
').addClass('rng-' + suffix).append($(this).contents()); + }); + }); + + toInline.forEach(function(tagName) { + tagName = tagName.toLowerCase(); + toret.find(tagName).replaceWith(function() { + var node = this; + return $('').addClass('rng-' + tagName).append($(this).contents()); + }); + }); + return toret.children(); }, getMetaData: function(xml) { var toret = {}; @@ -28,7 +52,26 @@ if(typeof module !== 'undefined' && module.exports) { transformations.toXML = { getXML: function(documentDescription) { - return documentDescription.HTMLTree; + + var inner = $(documentDescription.HTMLTree); + var toret = $('
'); + toret.append(inner); + + toret.find('div, span').replaceWith(function() { + var div = $(this); + var tagName = div.attr('class').split('rng-')[1]; + return $('<'+tagName+'>').append(div.contents()); + }); + + var meta = $(''); + _.each(_.keys(documentDescription.metadata), function(key) { + meta.append($('' + documentDescription.metadata[key] + '')); + }); + + toret.find('document').prepend(meta); + + return toret.html(); + } }