X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/be2c8ef28fbbcf62764e5bdedf9131a1aad8317b..02a91f42fa120c3f1d5f08100cf0f85bc571b5d1:/modules/documentCanvas/canvas/documentElement.js diff --git a/modules/documentCanvas/canvas/documentElement.js b/modules/documentCanvas/canvas/documentElement.js index 2225e0c..5e3983e 100644 --- a/modules/documentCanvas/canvas/documentElement.js +++ b/modules/documentCanvas/canvas/documentElement.js @@ -32,9 +32,17 @@ $.extend(DocumentElement.prototype, { }); return toret; }, + parent: function() { + return documentElementFromHTMLElement(this.$element.parent()[0]); + }, sameNode: function(other) { return other && (typeof other === typeof this) && other.$element[0] === this.$element[0]; + }, + + wrapWithNodeElement: function(wlxmlNode) { + this.$element.wrap($('<' + wlxmlNode.tag + ' class="' + wlxmlNode.klass + '"">')[0]); + return documentElementFromHTMLElement(this.$element.parent().get(0)); } }); @@ -49,12 +57,32 @@ var DocumentTextElement = function(htmlElement) { DocumentNodeElement.prototype = new DocumentElement(); DocumentTextElement.prototype = new DocumentElement(); +$.extend(DocumentNodeElement.prototype, { + append: function(params) { + var to_append = DocumentNodeElement.createDOM(params.tag, params.klass); + this.$element.append(to_append); + return documentElementFromHTMLElement(to_append); + }, + after: function(params) { + var to_append = DocumentNodeElement.createDOM(params.tag, params.klass); + this.$element.after(to_append); + return documentElementFromHTMLElement(to_append); + } +}); + +DocumentNodeElement.createDOM = function(tag, klass) { + var dom = $('<' + tag + '>'); + if(klass) + dom.attr('class', klass); + return dom; +}; + var documentElementFromHTMLElement = function(htmlElement) { if(htmlElement.nodeType === Node.ELEMENT_NODE) return new DocumentNodeElement(htmlElement); if(htmlElement.nodeType === Node.TEXT_NODE) return new DocumentTextElement(htmlElement); -} +}; return { wrap: function(htmlElement) {