| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { cluster, hierarchy } from 'd3-hierarchy';
- export const hierarchyFunction = (layoutFunction) => (options) => {
- return (data) => {
- const { field = 'value', nodeSize, separation, sortBy, as = ['x', 'y'], } = options;
- const [x, y] = as;
- // Process root data.
- const root = hierarchy(data, (d) => d.children)
- .sum((d) => d[field])
- .sort(sortBy);
- // Layout
- const c = layoutFunction();
- c.size([1, 1]);
- if (nodeSize)
- c.nodeSize(nodeSize);
- if (separation)
- c.separation(separation);
- c(root);
- const nodes = [];
- root.each((node) => {
- node[x] = node.x;
- node[y] = node.y;
- node.name = node.data.name;
- nodes.push(node);
- });
- const edges = root.links();
- edges.forEach((edge) => {
- edge[x] = [edge.source[x], edge.target[x]];
- edge[y] = [edge.source[y], edge.target[y]];
- });
- return { nodes, edges };
- };
- };
- export const Cluster = (options) => {
- return hierarchyFunction(cluster)(options);
- };
- Cluster.props = {};
- //# sourceMappingURL=cluster.js.map
|