X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0214643f72c6aaa8e85eaba2ad27f2ca03ca6401..5c8c1676ef0036d6feceee576423ed0f1d28ae7c:/modules/documentCanvas/documentCanvas.js diff --git a/modules/documentCanvas/documentCanvas.js b/modules/documentCanvas/documentCanvas.js index 7e7fdf0..031ca1f 100644 --- a/modules/documentCanvas/documentCanvas.js +++ b/modules/documentCanvas/documentCanvas.js @@ -92,7 +92,7 @@ return function(sandbox) { anchor.before(newNode) else anchor.after(newNode); - mediator.nodeCreated(newNode); + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); }, @@ -115,7 +115,8 @@ return function(sandbox) { $(node).replaceWith(newNode); newNode.before(prefix); newNode.after(suffix); - mediator.nodeCreated(newNode); + + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); } @@ -141,7 +142,8 @@ return function(sandbox) { node.replaceWith(newNode); newNode.before(prefixNode); newNode.after(suffixNode); - mediator.nodeCreated(newNode); + + this.selectNode(newNode); //isDirty = true; sandbox.publish('contentChanged'); } @@ -155,9 +157,9 @@ return function(sandbox) { _markSelected: function(node) { this.dimNode(node); - this.node.find('.rng-current').removeClass('rng-current'); + this.node.find('.rng-module-documentCanvas-currentNode').removeClass('rng-module-documentCanvas-currentNode'); - node.addClass('rng-current'); + node.addClass('rng-module-documentCanvas-currentNode'); this.currentNode = node; sandbox.publish('nodeSelected', node); @@ -184,14 +186,14 @@ return function(sandbox) { var label = node.attr('wlxml-tag'); if(node.attr('wlxml-class')) label += ' / ' + node.attr('wlxml-class'); - var tag = $('
').addClass('rng-visualEditor-nodeHoverTag').text(label); + var tag = $('
').addClass('rng-module-documentCanvas-hoveredNodeTag').text(label); node.append(tag); } }, dimNode: function(node) { if(!this.gridToggled) { node.removeClass('rng-hover'); - node.find('.rng-visualEditor-nodeHoverTag').remove(); + node.find('.rng-module-documentCanvas-hoveredNodeTag').remove(); } }, highlightNodeById: function(id) { @@ -246,8 +248,16 @@ return function(sandbox) { }, selectNode: function(id) { view.selectNodeById(id); + }, + toggleGrid: function(toggle) { + view.toggleGrid(toggle); + }, + insertNewNode: function(wlxmlTag, wlxmlClass) { + view.insertNewNode(wlxmlTag, wlxmlClass); + }, + wrapSelectionWithNewNode: function(wlxmlTag, wlxmlClass) { + view.wrapSelectionWithNewNode(wlxmlTag, wlxmlClass); } - } };