NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/data-set/lib/api/hierarchy.js
2023-09-14 14:47:11 +08:00

45 lines
1.2 KiB
Java

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var util_1 = require("@antv/util");
var view_1 = require("../view");
util_1.assign(view_1.View.prototype, {
getAllNodes: function () {
var nodes = [];
var root = this.root;
if (root && root.each) {
// d3-hierarchy
root.each(function (node) {
nodes.push(node);
});
}
else if (root && root.eachNode) {
// @antv/hierarchy
root.eachNode(function (node) {
nodes.push(node);
});
}
return nodes;
},
getAllLinks: function () {
var links = [];
var nodes = [this.root];
var node;
while ((node = nodes.pop())) {
var children = node.children;
if (children) {
children.forEach(function (child) {
links.push({
source: node,
target: child,
});
nodes.push(child);
});
}
}
return links;
},
});
util_1.assign(view_1.View.prototype, {
getAllEdges: view_1.View.prototype.getAllLinks,
});