{
const chart = d3.select(html`<canvas width="${width}" width="300" height="100"></canvas>`)
const radius = 10;
const height = 100;
const forceData = JSON.parse(JSON.stringify(data));
const links = [
{source:'BRA',target:'MOZ'},
{source:'BRA',target:'DEU'},
{source:'BRA',target:'GEO'},
{source:'BRA',target:'CHN'},
]
const context = chart.node().getContext('2d');
const canvas = context.canvas;
let transform = d3.zoomIdentity;
const simulation = d3.forceSimulation(forceData)
.force("link", d3.forceLink(links).id(d => d.id))
.force("charge", d3.forceManyBody())
.force("center", d3.forceCenter(width / 2, 50));
context.fillStyle = "steelBlue";
simulation.on("tick", () => {
render()
});
function render(){
context.save();
context.clearRect(0, 0, width, height);
console.log('ticking')
links.forEach(function(d) {
context.beginPath();
context.moveTo(d.source.x, d.source.y);
context.lineTo(d.target.x, d.target.y);
context.lineWidth = Math.sqrt(d.value);
context.strokeStyle = '#aaa';
context.stroke();
});
forceData.forEach(function(d, i) {
context.beginPath();
context.moveTo(d.x + radius, d.y);
context.arc(d.x, d.y, radius, 0, 2 * Math.PI);
context.fill();
});
context.restore();
}
function dragsubject() {
for(let i=0;i<forceData.length;i++){
const circle = forceData[i];
const x = circle.x - d3.event.x;
const y = circle.y - d3.event.y;
if (x * x + y * y < radius * radius) return circle;
}
}
d3.select(chart.node())
.call(d3.drag()
.container(canvas)
.subject(dragsubject)
.on('start',dragstarted)
.on("drag", dragged)
.on("drag.render", render)
);
function dragstarted(d) {
if (!d3.event.active) simulation.alphaTarget(0.3).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragged() {
d3.event.subject.x = d3.event.x;
d3.event.subject.y = d3.event.y;
}
yield chart.node()
}