X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/ab5fdbdbf582607e4d3072b03c6aaff383653674..67387c5b199cba829f5f7563ff93020328cbe0ef:/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
diff --git a/modules/nodeBreadCrumbs/nodeBreadCrumbs.js b/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
index 4a787f4..9bf211e 100644
--- a/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
+++ b/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
@@ -1,54 +1,66 @@
-define([
-'libs/jquery-1.9.1.min',
-'libs/underscore-min',
-'libs/text!./template.html'], function($, _, templateSrc) {
-
-'use strict';
-
-return function(sandbox) {
-    
-    var template = _.template(templateSrc);
-    
-    var view = {
-        dom: $('
' + template({node:null, parents: null}) + '
'),
-        setup: function() {
-            this.dom.on('mouseenter', 'a', function(e) {
-                var target = $(e.target);
-                sandbox.publish('nodeHighlighted', target.attr('data-id'));
-            });
-            this.dom.on('mouseleave', 'a', function(e) {
-                var target = $(e.target);
-                sandbox.publish('nodeDimmed', target.attr('data-id'));
-            });
-            this.dom.on('click', 'a', function(e) {
-                e.preventDefault();
-                var target = $(e.target);
-                sandbox.publish('nodeSelected', target.attr('data-id'));
-            });
-        },
-        
-        setNode: function(node) {
-            this.dom.empty();
-            this.dom.html(template({node: node, parents: node.parents('[wlxml-tag]')}));
-        },
-        
-        highlightNode: function(id) {
-            this.dom.find('a[data-id="'+id+'"]').addClass('rng-common-hoveredNode');
-        },
-        dimNode: function(id) {
-            this.dom.find('a[data-id="' +id+'"]').removeClass('rng-common-hoveredNode');
-        }
-    }
-    
-    view.setup();
-    
-    return {
-        start: function() { sandbox.publish('ready'); },
-        getView: function() { return view.dom; },
-        setNode: function(node) { view.setNode(node); },
-        highlightNode: function(id) { view.highlightNode(id); },
-        dimNode: function(id) { view.dimNode(id); }
-    }
-}
-
+define([
+'libs/jquery-1.9.1.min',
+'libs/underscore-min',
+'libs/text!./template.html'], function($, _, templateSrc) {
+
+'use strict';
+
+return function(sandbox) {
+    
+    var template = _.template(templateSrc);
+    
+    var view = {
+        dom: $('' + template({node:null, parents: null}) + '
'),
+        setup: function() {
+            var view = this;
+            this.dom.on('mouseenter', 'a', function(e) {
+                var target = $(e.target);
+                sandbox.publish('elementEntered', target.data('element'));
+            });
+            this.dom.on('mouseleave', 'a', function(e) {
+                var target = $(e.target);
+                sandbox.publish('elementLeft', target.data('element'));
+            });
+            this.dom.on('click', 'a', function(e) {
+                e.preventDefault();
+                var target = $(e.target);
+                sandbox.publish('elementClicked', target.data('element'));
+            });
+        },
+        
+        setNodeElement: function(nodeElement) {
+            this.dom.empty();
+            this.currentNodeElement = nodeElement;
+            var parents = nodeElement.parents();
+            this.dom.html(template({node: nodeElement, parents: parents}));
+
+            this.dom.find('li > a[href="#"]').each(function(idx, a) {
+                $(a).data('element', parents[parents.length - 1 - idx]);
+            });
+            this.dom.find('a.active').data('element', nodeElement);
+        },
+        
+        highlightNode: function(node) {
+            this.dom.find('a[data-id="'+node.id+'"]').addClass('rng-common-hoveredNode');
+        },
+        dimNode: function(node) {
+            this.dom.find('a[data-id="'+node.id+'"]').removeClass('rng-common-hoveredNode');
+        }
+    };
+    
+    view.setup();
+    
+    return {
+        start: function() { sandbox.publish('ready'); },
+        getView: function() { return view.dom; },
+        setNodeElement: function(nodeElement) {
+            if(!nodeElement.sameNode(view.currentNodeElement)) {
+                view.setNodeElement(nodeElement);
+            }
+        },
+        highlightNode: function(id) { view.highlightNode(id); },
+        dimNode: function(id) { view.dimNode(id); }
+    };
+};
+
 });
\ No newline at end of file