{
const nodes = network.nodes,
links = network.links;
const svg = d3
.create("svg")
.attr("id", "graph")
.attr("viewBox", [0, 0, width, height]);
const lines = svg
.selectAll("line")
.data(links)
.join("line")
.style("stroke", "#333")
.style("stroke-opacity", l => {
console.log(l, opacity(l.value));
return opacity(l.value);
});
const text = svg
.selectAll("text")
.data(nodes)
.join("text")
.attr("fill", "#333")
.style("font-size", d => size(d.value) + "pt")
.style("fill", d => color(d.cluster))
.text(d => d.id);
const ticked = () => {
lines
.attr("x1", l => l.source.x)
.attr("y1", l => l.source.y)
.attr("x2", l => l.target.x)
.attr("y2", l => l.target.y);
text.attr("x", d => d.x).attr("y", d => d.y);
};
const simulation = d3
.forceSimulation(nodes)
.force("charge", d3.forceManyBody().strength(-20))
.force("center", d3.forceCenter(width / 2, height / 2))
.force("link", d3.forceLink(links).id(d => d.id))
.force("boundary", forceBoundary(3, 3, width, height))
.on("tick", ticked);
text.call(drag(simulation));
invalidation.then(() => simulation.stop());
return svg.node();
}