@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
101 lines (100 loc) • 4.58 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var mobx_1 = require("mobx");
var store_1 = __importDefault(require("../store"));
var RelationCircularChartStore = /** @class */ (function (_super) {
__extends(RelationCircularChartStore, _super);
function RelationCircularChartStore() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(RelationCircularChartStore.prototype, "datas", {
get: function () {
var _a = this, metricIndex = _a.metricIndex, fromBucketIndex = _a.fromBucketIndex, toBucketIndex = _a.toBucketIndex;
var rows = this.dataset.rows;
if (metricIndex === -1 || fromBucketIndex === -1 || toBucketIndex === -1) {
return { layout: 'circular', nodes: [], links: [] };
}
var allNodes = [];
var links = [];
rows.forEach(function (item) {
var value = item[metricIndex][0];
var fromName = String(item[fromBucketIndex][0]);
var toName = String(item[toBucketIndex][0]);
if (toName === fromName) {
return;
}
var fromNode = allNodes.find(function (node) { return node.name === fromName; });
if (fromNode) {
fromNode.size += value;
}
else {
allNodes.push({
name: fromName,
x: 0,
y: 0,
size: value
});
}
var toNode = allNodes.find(function (node) { return node.name === toName; });
if (!toNode) {
allNodes.push({
name: toName,
x: 0,
y: 0,
size: 0
});
}
// 找到是已经存在关系
var link = links.find(function (l) { return l.source === toName && l.target === fromName; });
if (link) {
// 存在关系则修改箭头为双向箭头
link.sizes[0] = value;
link.symbol[0] = 'arrow';
return;
}
// 没有存在的关系则建立关系
links.push({
source: fromName,
target: toName,
symbol: ['none', 'arrow'],
sizes: [0, value]
});
});
return { layout: 'circular', nodes: allNodes, links: links };
},
enumerable: false,
configurable: true
});
__decorate([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], RelationCircularChartStore.prototype, "datas", null);
return RelationCircularChartStore;
}(store_1.default));
exports.default = RelationCircularChartStore;