X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/5be499ab63f91b65065fe34f3a6d645efc9ae7b6..bedc5daf8a42c50c84b8c43b5924c10d07ed0b3a:/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
diff --git a/modules/nodeBreadCrumbs/nodeBreadCrumbs.js b/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
index cefe7b4..e9fc107 100644
--- a/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
+++ b/modules/nodeBreadCrumbs/nodeBreadCrumbs.js
@@ -1,62 +1,67 @@
-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('nodeHighlighted', view.nodes[target.attr('data-id')]);
- });
- this.dom.on('mouseleave', 'a', function(e) {
- var target = $(e.target);
- sandbox.publish('nodeDimmed', view.nodes[target.attr('data-id')]);
- });
- this.dom.on('click', 'a', function(e) {
- e.preventDefault();
- var target = $(e.target);
- sandbox.publish('nodeSelected', view.nodes[target.attr('data-id')]);
- });
- },
-
- setNode: function(node) {
- this.dom.empty();
- var nodes = this.nodes = {};
- this.nodes[node.id] = node;
- var parents = node.parents();
- parents.each(function() {
- var parent = this;
- nodes[parent.id] = parent;
- });
- this.dom.html(template({node: node, parents: parents}));
- },
-
- 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; },
- 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('nodeHighlighted', view.nodes[target.attr('data-id')]);
+ });
+ this.dom.on('mouseleave', 'a', function(e) {
+ var target = $(e.target);
+ sandbox.publish('nodeDimmed', view.nodes[target.attr('data-id')]);
+ });
+ this.dom.on('click', 'a', function(e) {
+ e.preventDefault();
+ var target = $(e.target);
+ sandbox.publish('nodeSelected', view.nodes[target.attr('data-id')]);
+ });
+ },
+
+ setNode: function(node) {
+ this.dom.empty();
+ var nodes = this.nodes = {};
+ this.currentNode = node;
+ this.nodes[node.getId()] = node;
+ var parents = node.parents();
+ parents.each(function() {
+ var parent = this;
+ nodes[parent.getId()] = parent;
+ });
+ this.dom.html(template({node: node, parents: parents}));
+ },
+
+ 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; },
+ setNode: function(canvasNode) {
+ if(!canvasNode.isSame(view.currentNode)) {
+ view.setNode(canvasNode);
+ }
+ },
+ highlightNode: function(id) { view.highlightNode(id); },
+ dimNode: function(id) { view.dimNode(id); }
+ };
+};
+
});
\ No newline at end of file