diff --git a/mindplot/src/main/javascript/layout/BalancedSorter.js b/mindplot/src/main/javascript/layout/BalancedSorter.js index 0d35677b..085757e5 100644 --- a/mindplot/src/main/javascript/layout/BalancedSorter.js +++ b/mindplot/src/main/javascript/layout/BalancedSorter.js @@ -23,18 +23,20 @@ mindplot.layout.BalancedSorter = new Class({ }, predict : function(parent, graph, position) { + var rootNode = graph.getRootNode(parent); if (!position) { var right = this._getChildrenForOrder(parent, graph, 0); var left = this._getChildrenForOrder(parent, graph, 1); } // Filter nodes on one side.. - var order = position ? (position.x > 0 ? 0 : 1) : ((right.length - left.length) > 0 ? 1 : 0); + var order = position ? (position.x > rootNode.getPosition().x ? 0 : 1) : ((right.length - left.length) > 0 ? 1 : 0); + var direction = order%2 == 0 ? 1 : -1; var children = this._getChildrenForOrder(parent, graph, order); // No children? if (children.length == 0) { - return [0, {x:parent.getPosition().x + parent.getSize().width + mindplot.layout.BalancedSorter.INTERNODE_HORIZONTAL_PADDING * 2, y:parent.getPosition().y}]; + return [order, {x:parent.getPosition().x + direction * (parent.getSize().width + mindplot.layout.BalancedSorter.INTERNODE_HORIZONTAL_PADDING * 2), y:parent.getPosition().y}]; } diff --git a/mindplot/src/test/javascript/static/TestSuite.js b/mindplot/src/test/javascript/static/TestSuite.js index 9ac6c16b..07f34d06 100644 --- a/mindplot/src/test/javascript/static/TestSuite.js +++ b/mindplot/src/test/javascript/static/TestSuite.js @@ -19,20 +19,21 @@ mindplot.layout.TestSuite = new Class({ Extends: mindplot.layout.ChildrenSorterStrategy, initialize:function() { -// this.testAligned(); -// this.testSymmetry(); -// this.testBalanced(); -// this.testEvents(); -// this.testEventsComplex(); -// this.testDisconnect(); -// this.testReconnect(); -// this.testRemoveNode(); -// this.testSymmetricPredict(); -// this.testBalancedPredict(); -// this.testSize(); -// this.testFreePosition(); -// this.testFreePredict(); + this.testAligned(); + this.testSymmetry(); + this.testBalanced(); + this.testEvents(); + this.testEventsComplex(); + this.testDisconnect(); + this.testReconnect(); + this.testRemoveNode(); + this.testSymmetricPredict(); + this.testBalancedPredict(); + this.testSize(); + this.testFreePosition(); + this.testFreePredict(); this.testReconnectFreeNode(); + this.testReconnectSingleNode(); }, testAligned: function() { @@ -860,6 +861,25 @@ mindplot.layout.TestSuite = new Class({ // manager.moveNode(8, {x:370, y:30}); // manager.layout(); // manager.plot("testReconnectFreeNode2", {width:1000, height:400}); + }, + + testReconnectSingleNode: function() { + console.log("testReconnectSingleNode:"); + var position = {x:0,y:0}; + var manager = new mindplot.layout.LayoutManager(0, mindplot.layout.TestSuite.ROOT_NODE_SIZE); + + // Prepare a sample graph ... + manager.addNode(1, mindplot.layout.TestSuite.NODE_SIZE, position); + manager.connectNode(0, 1, 0); + manager.layout(); + var graph = manager.plot("testReconnectSingleNode1", {width:1000, height:400}); + this._plotPrediction(graph, manager.predict(0, {x:-50, y:0})); + + + manager.disconnectNode(1); + manager.connectNode(0,1,1); + manager.layout(); + manager.plot("testReconnectSingleNode2", {width:1000, height:400}); } }); diff --git a/mindplot/src/test/javascript/static/layout.html b/mindplot/src/test/javascript/static/layout.html index fa15e882..a540ec6f 100644 --- a/mindplot/src/test/javascript/static/layout.html +++ b/mindplot/src/test/javascript/static/layout.html @@ -132,5 +132,9 @@
+

testReconnectSingleNode:

+
+
+ \ No newline at end of file