1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/ui/src/components/topology/graph-simulation.js

136 lines
2.9 KiB
JavaScript
Raw Normal View History

2017-02-14 13:30:57 +02:00
const d3 = require('d3');
const hypotenuse = (a, b) =>
Math.sqrt(a*a + b*b);
const rectRadius = (size) => {
const {
width,
height
} = size;
return Math.round(hypotenuse(width, height)/2);
};
const createLinks = (services) =>
services.reduce((acc, service, index) =>
service.connections ?
acc.concat(
service.connections.map((connection, index) => ({
source: service.uuid,
target: connection
}))
) : acc
, []);
2017-02-14 13:30:57 +02:00
const createSimulation = (
services,
2017-02-14 13:30:57 +02:00
nodeSize,
svgSize,
onTick,
onEnd
) => {
// This is not going to work given that as well as the d3 layout stuff, other things might be at play too
// We should pass two objects to the components - one for positioning and one for data
const nodes = services.map((service, index) => ({
id: service.uuid,
2017-02-14 13:30:57 +02:00
index: index
}));
const links = createLinks(services);
2017-02-14 13:30:57 +02:00
const {
width,
height
} = svgSize;
const nodeRadius = rectRadius(nodeSize);
return ({
simulation: d3.forceSimulation(nodes)
.force('link', d3.forceLink(links).id(d => d.id))
.force('collide', d3.forceCollide(nodeRadius))
.force('center', d3.forceCenter(width/2, height/2))
.on('tick', onTick)
.on('end', onEnd),
nodes: nodes,
links: links
});
2017-02-14 13:30:57 +02:00
};
// TODO we need to kill the previous simulation
const updateSimulation = (
simulation,
services,
simNodes,
simLinks,
2017-02-14 13:30:57 +02:00
nodeSize,
svgSize,
onTick,
onEnd
) => {
const nodes = services.map((service, index) => {
const simNode = simNodes.reduce((acc, n, i) => {
return service.uuid === n.id ? n : acc;
}, null);
return simNode ? {
id: simNode.id,
// fx: simNode.x,
// fy: simNode.y,
2017-02-14 13:30:57 +02:00
index: index
} : {
id: service.uuid,
2017-02-14 13:30:57 +02:00
index: index
};
});
const links = createLinks(services);
2017-02-14 13:30:57 +02:00
const {
width,
height
} = svgSize;
const nodeRadius = rectRadius(nodeSize);
return ({
simulation: d3.forceSimulation(nodes)
.force('link', d3.forceLink(links).id(d => d.id))
.force('collide', d3.forceCollide(nodeRadius))
.force('center', d3.forceCenter(width/2, height/2))
.on('tick', onTick)
.on('end', onEnd),
nodes: nodes,
links: links
});
2017-02-14 13:30:57 +02:00
};
module.exports = {
createSimulation,
updateSimulation
};
/*
const simulation = d3.forceSimulation(dataNodes)
// .alpha(1).alphaDecay(0.1)
// .force('charge', d3.forceManyBody())
.force('link', d3.forceLink(dataLinks)
//.distance(() => linkDistance)
.id(d => d.id))
.force('collide', d3.forceCollide(nodeRadius))
.force('center', d3.forceCenter(1024/2, 860/2))
.on('tick', () => {
console.log('SIMULATION TICK');
console.log('tickCounter = ', tickCounter);
tickCounter++;
this.forceUpdate();
})
.on('end', () => {
console.log('SIMULATION END');
console.log('tickCounter = ', tickCounter);
// this.forceUpdate();
})
*/