@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
98 lines (97 loc) • 4.33 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);
};
import * as _ from 'lodash';
import { computed } from 'mobx';
import { worldCoordMap } from '../../constants/map/coordMap';
import { MapType } from '../../constants/map/map';
import MigrationChartStore from '../store';
var MigrationWorldStore = /** @class */ (function (_super) {
__extends(MigrationWorldStore, _super);
function MigrationWorldStore() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.mapType = MapType.World;
return _this;
}
Object.defineProperty(MigrationWorldStore.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 { citys: [], relations: [] };
}
var cityMap = {};
var relations = [];
rows.forEach(function (item) {
var value = item[metricIndex][0];
var fromCity = String(item[fromBucketIndex][0]);
var fromCoord = worldCoordMap[fromCity];
var toCity = String(item[toBucketIndex][0]);
var toCoord = worldCoordMap[toCity];
if (fromCity === toCity || !fromCoord || !toCoord) {
return;
}
if (cityMap[fromCity]) {
cityMap[fromCity].outflowSize += value;
}
else {
cityMap[fromCity] = {
title: fromCity,
value: fromCoord,
visualMap: false,
inflowSize: 0,
outflowSize: value
};
}
if (cityMap[toCity]) {
cityMap[toCity].inflowSize += value;
}
else {
cityMap[toCity] = {
title: toCity,
value: toCoord,
visualMap: false,
inflowSize: value,
outflowSize: 0
};
}
relations.push({
title: fromCity + " -> " + toCity,
coords: [fromCoord, toCoord],
size: value,
value: value
});
});
var citys = _.values(cityMap);
return { citys: citys, relations: relations };
},
enumerable: false,
configurable: true
});
__decorate([
computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationWorldStore.prototype, "datas", null);
return MigrationWorldStore;
}(MigrationChartStore));
export default MigrationWorldStore;