Skip to content
Snippets Groups Projects
Commit 2a23f673 authored by Valentin Perrelle's avatar Valentin Perrelle
Browse files

[dive] improves layout animations

parent 2e4dd218
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ class Dive { ...@@ -233,7 +233,7 @@ class Dive {
/* eslint-disable no-restricted-syntax */ /* eslint-disable no-restricted-syntax */
receiveGraph(data: any): Cytoscape.CollectionReturnValue { receiveGraph(data: any): Cytoscape.CollectionReturnValue {
let newEles = this.cy.collection(); let newNodes = this.cy.collection();
for (const node of data.nodes) for (const node of data.nodes)
{ {
...@@ -255,7 +255,7 @@ class Dive { ...@@ -255,7 +255,7 @@ class Dive {
ele = this.cy.add({ group: 'nodes', data: { ...node, parent } }); ele = this.cy.add({ group: 'nodes', data: { ...node, parent } });
this.addTips(ele); this.addTips(ele);
newEles = ele.union(newEles); newNodes = ele.union(newNodes);
} }
// Add a node for the user to ask for more dependencies // Add a node for the user to ask for more dependencies
...@@ -267,26 +267,24 @@ class Dive { ...@@ -267,26 +267,24 @@ class Dive {
data: { id: idmore, parent: ele.data('parent') }, data: { id: idmore, parent: ele.data('parent') },
classes: 'more', classes: 'more',
}); });
newEles = elemore.union(newEles); newNodes = elemore.union(newNodes);
const depmore = this.cy.add({ this.cy.add({
group: 'edges', group: 'edges',
data: { source: idmore, target: node.id }, data: { source: idmore, target: node.id },
}); });
newEles = this.cy.add(depmore).union(newEles);
} }
} }
for (const dep of data.deps) for (const dep of data.deps)
{ {
const ele = this.cy.add({ this.cy.add({
data: { ...dep, source: dep.src, target: dep.dst }, data: { ...dep, source: dep.src, target: dep.dst },
group: 'edges', group: 'edges',
classes: dep.kind, classes: dep.kind,
}); });
newEles = this.cy.add(ele).union(newEles);
} }
return newEles; return newNodes;
} }
receiveData(data: any): void { receiveData(data: any): void {
...@@ -295,14 +293,14 @@ class Dive { ...@@ -295,14 +293,14 @@ class Dive {
for (const id of data.sub) for (const id of data.sub)
this.remove(this.cy.$id(id)); this.remove(this.cy.$id(id));
const newEles = this.receiveGraph(data.add); const newNodes = this.receiveGraph(data.add);
this.cy.endBatch(); this.cy.endBatch();
this.selectNode(this.cy.$id(data.root)); this.selectNode(this.cy.$id(data.root));
if (newEles) if (newNodes)
this.recomputeLayout(); this.recomputeLayout(newNodes);
} }
get layout(): string { get layout(): string {
...@@ -318,16 +316,31 @@ class Dive { ...@@ -318,16 +316,31 @@ class Dive {
name: layout, name: layout,
fit: true, fit: true,
animate: true, animate: true,
randomize: true, /* Not all layouts supports that */ randomize: false, /* Keep previous positions if layout supports it */
...extendedOptions, ...extendedOptions,
}; };
this.recomputeLayout(); this.recomputeLayout();
} }
recomputeLayout(): void { recomputeLayout(newNodes: Cytoscape.Collection = this.cy.collection()): void {
if (this.layoutOptions && this.cy.container()) if (this.layoutOptions && this.cy.container()) {
this.cy.layout(this.layoutOptions).run(); /* Animate opacity from 0 to 100 for new elements */
const newEles = newNodes.union(newNodes.neighborhood('edge'));
newEles.style('opacity', 0);
this.cy.layout({
animationEasing: 'ease-in-out-quad',
/* Do not move new nodes */
animateFilter: (node: Cytoscape.Singular) => !newNodes.contains(node),
/* But make them appear slowly */
stop: () => newEles.animate({
style: { opacity: 1.0 },
duration: 500,
}),
...this.layoutOptions,
} as unknown as Cytoscape.LayoutOptions).run();
}
} }
async exec<In, Out>( async exec<In, Out>(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment