Skip to content

Commit

Permalink
Add animation to service map layout
Browse files Browse the repository at this point in the history
We had previously deleted the animation because the method we were using for adding nodes to the map would wipe the whole map out before redrawing it and make for very awkward animation.

The way it works now is the Cytoscape component calls `add` on the cytoscape instance when new elements are added, so the animation looks ok.

Fixes #54796.
  • Loading branch information
smith committed Jan 27, 2020
1 parent 1e91775 commit 5b6cd72
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import { defaultIcon, iconForNode } from './icons';
const layout = {
name: 'dagre',
nodeDimensionsIncludeLabels: true,
rankDir: 'LR'
rankDir: 'LR',
animate: true,
animationEasing: theme.euiAnimSlightBounce,
animationDuration: parseInt(theme.euiAnimSpeedNormal, 10)
};

function isService(el: cytoscape.NodeSingular) {
Expand Down

0 comments on commit 5b6cd72

Please sign in to comment.