function WordCloud(
text,
{
size = (group) => group.length,
word = (d) => d,
marginTop = 0,
marginRight = 0,
marginBottom = 0,
marginLeft = 0,
width = 640,
height = 400,
maxWords = 250,
fontFamily = "sans-serif",
fontScale = 16,
padding = 8,
rotate = 0,
invalidation
} = {}
) {
const words =
typeof text === "string" ? text.split(/\W+/g) : Array.from(text);
const data = d3
.rollups(words, size, (w) => w)
.sort(([, a], [, b]) => d3.descending(a, b))
.slice(0, maxWords)
.map(([key, size]) => ({ text: word(key), size }));
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.attr("width", width)
.attr("font-family", fontFamily)
.attr("text-anchor", "middle")
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");
const g = svg
.append("g")
.attr("transform", `translate(${marginLeft},${marginTop})`);
const cloud = d3Cloud()
.size([width - marginLeft - marginRight, height - marginTop - marginBottom])
.words(data)
.padding(padding)
.random(DeterministicHack)
.spiral("archimedean")
.rotate(rotate)
.font(fontFamily)
.fontSize((d) => Math.sqrt(d.size) * fontScale)
.on("word", ({ size, x, y, rotate, text }) => {
g.append("text")
.attr("font-size", size)
.attr("transform", `translate(${x},${y}) rotate(${rotate})`)
.text(text);
});
cloud.start();
invalidation && invalidation.then(() => cloud.stop());
return svg.node();
}