fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
integration wip: handle backspace/delete
[fnpeditor.git]
/
src
/
editor
/
modules
/
nodeFamilyTree
/
nodeFamilyTree.js
diff --git
a/src/editor/modules/nodeFamilyTree/nodeFamilyTree.js
b/src/editor/modules/nodeFamilyTree/nodeFamilyTree.js
index
610901a
..
cb7b57a
100644
(file)
--- a/
src/editor/modules/nodeFamilyTree/nodeFamilyTree.js
+++ b/
src/editor/modules/nodeFamilyTree/nodeFamilyTree.js
@@
-10,7
+10,20
@@
define([
return function(sandbox) {
var template = _.template(templateSrc),
return function(sandbox) {
var template = _.template(templateSrc),
- listens = false;
+ listens = false,
+ items = [];
+
+ var getItemId = function(item) {
+ var idx = -1;
+ var found = _.find(items, function(i) {
+ idx += 1;
+ return item.sameNode(i);
+ });
+ if(found) {
+ return idx;
+ }
+ return -1;
+ }
var startListening = function(document) {
listens = true;
var startListening = function(document) {
listens = true;
@@
-48,11
+61,15
@@
return function(sandbox) {
parent;
this.currentNodeElement = nodeElement;
parent;
this.currentNodeElement = nodeElement;
+ items = [];
if(nodeElementParent) {
if(nodeElementParent) {
+ items.push(nodeElementParent);
parent = {
parent = {
+ id: items.length - 1,
repr: wlxmlUtils.wlxmlTagNames[nodeElementParent.getTagName()] + (nodeElementParent.getClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[nodeElementParent.getClass()] : '')
};
repr: wlxmlUtils.wlxmlTagNames[nodeElementParent.getTagName()] + (nodeElementParent.getClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[nodeElementParent.getClass()] : '')
};
+
}
var nodeContents = nodeElement.contents(),
}
var nodeContents = nodeElement.contents(),
@@
-68,10
+85,17
@@
return function(sandbox) {
}
text = '"' + text + '"';
}
}
text = '"' + text + '"';
}
- contents.push({repr: _.escape(text), bold: child.sameNode(textElement)});
+ contents.push({
+ id: items.length,
+ repr: _.escape(text), bold: child.sameNode(textElement)
+ });
} else {
} else {
- contents.push({repr: wlxmlUtils.wlxmlTagNames[child.getTagName()] + (child.getClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[child.getClass()] : '')});
+ contents.push({
+ id: items.length,
+ repr: wlxmlUtils.wlxmlTagNames[child.getTagName()] + (child.getClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[child.getClass()] : '')
+ });
}
}
+ items.push(child);
});
this.dom.empty();
this.dom.append($(template({parent: parent, contents: contents})));
});
this.dom.empty();
this.dom.append($(template({parent: parent, contents: contents})));
@@
-84,10
+108,12
@@
return function(sandbox) {
});
},
highlightNode: function(canvasNode) {
});
},
highlightNode: function(canvasNode) {
- this.dom.find('a[data-id="'+canvasNode.getId()+'"]').addClass('rng-common-hoveredNode');
+ var id = getItemId(canvasNode);
+ this.dom.find('a[rng-module-nodeFamilyTree-item-id="'+id+'"]').addClass('rng-common-hoveredNode');
},
dimNode: function(canvasNode) {
},
dimNode: function(canvasNode) {
- this.dom.find('a[data-id="'+canvasNode.getId()+'"]').removeClass('rng-common-hoveredNode');
+ var id = getItemId(canvasNode);
+ this.dom.find('a[rng-module-nodeFamilyTree-item-id="'+id+'"]').removeClass('rng-common-hoveredNode');
}
};
}
};
@@
-107,10
+133,10
@@
return function(sandbox) {
getView: function() {
return view.dom;
},
getView: function() {
return view.dom;
},
- highlight
Node
: function(canvasNode) {
+ highlight
Element
: function(canvasNode) {
view.highlightNode(canvasNode);
},
view.highlightNode(canvasNode);
},
- dim
Node
: function(canvasNode) {
+ dim
Element
: function(canvasNode) {
view.dimNode(canvasNode);
}
};
view.dimNode(canvasNode);
}
};