X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/817629a2384a90a41d668db3c1f5c7a15baeaa5c..258a2d6877a76d51253f5f70d4a7df6bfe81b90f:/modules/visualEditor.js diff --git a/modules/visualEditor.js b/modules/visualEditor.js index dfa8335..012f7a9 100644 --- a/modules/visualEditor.js +++ b/modules/visualEditor.js @@ -98,6 +98,7 @@ rng.modules.visualEditor = function(sandbox) { insertNewNode: function(wlxmlTag, wlxmlClass) { //TODO: Insert inline var anchor = $(window.getSelection().anchorNode); + var anchorOffset = window.getSelection().anchorOffset; if(anchor[0].nodeType === Node.TEXT_NODE) anchor = anchor.parent(); if(anchor.text() === '') { @@ -106,7 +107,10 @@ rng.modules.visualEditor = function(sandbox) { todel.remove(); } var newNode = this._createNode(wlxmlTag || anchor.attr('wlxml-tag'), wlxmlClass || anchor.attr('wlxml-class')); - anchor.after(newNode); + if(anchorOffset === 0) + anchor.before(newNode) + else + anchor.after(newNode); mediator.nodeCreated(newNode); isDirty = true; }, @@ -283,10 +287,10 @@ rng.modules.visualEditor = function(sandbox) { var pane = this.node.find('#rng-visualEditor-edit'); pane.html( $(sandbox.getTemplate('editPane')({tag: node.attr('wlxml-tag'), klass: node.attr('wlxml-class')}))); - var parent = { + var parent = node.parent('[wlxml-tag]').length ? { repr: node.parent().attr('wlxml-tag') + ' / ' + (node.parent().attr('wlxml-class') || '[[no class]]'), id: node.parent().attr('id') - } + } : undefined; var children = []; node.children('[wlxml-tag]').each(function() { var child = $(this); @@ -326,9 +330,42 @@ rng.modules.visualEditor = function(sandbox) { } } + var statusBarView = { + node: view.node.find('#rng-visualEditor-statusbar'), + setup: function() { + var view = this; + view.node.on('mouseenter', 'a', function(e) { + var target = $(e.target); + mediator.nodeHighlightedById(target.attr('data-id')); + }); + view.node.on('mouseleave', 'a', function(e) { + var target = $(e.target); + mediator.nodeDimmedById(target.attr('data-id')); + }); + view.node.on('click', 'a', function(e) { + e.preventDefault(); + mediator.nodeSelectedById($(e.target).attr('data-id')); + }); + }, + + showNode: function(node) { + this.node.empty(); + this.node.html(sandbox.getTemplate('statusBarNodeDisplay')({node: node, parents: node.parents('[wlxml-tag]')})); + //node.parents('[wlxml-tag]') + }, + + highlightNode: function(id) { + this.node.find('a[data-id="'+id+'"]').addClass('rng-hover'); + }, + dimNode: function(id) { + this.node.find('a[data-id="' +id+'"]').removeClass('rng-hover'); + } + } + view.setup(); sideBarView.setup(); toolbarView.setup(); + statusBarView.setup(); var mediator = { getCurrentNode: function() { @@ -339,6 +376,7 @@ rng.modules.visualEditor = function(sandbox) { }, nodeSelected: function(node) { sideBarView.updateEditPane(node); + statusBarView.showNode(node); }, nodeSelectedById: function(id) { view.selectNodeById(id); @@ -369,10 +407,12 @@ rng.modules.visualEditor = function(sandbox) { nodeHovered: function(node) { view.highlightNode(node); sideBarView.highlightNode(node.attr('id')); + statusBarView.highlightNode(node.attr('id')); }, nodeBlured: function(node) { view.dimNode(node); sideBarView.dimNode(node.attr('id')); + statusBarView.dimNode(node.attr('id')); }, wrapWithNodeRequest: function(wlxmlTag, wlxmlClass) { view.wrapSelectionWithNewNode(wlxmlTag, wlxmlClass);