@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
194 lines (193 loc) • 8.36 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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
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 __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
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 _ = __importStar(require("lodash"));
var mobx_1 = require("mobx");
var coordMap_1 = require("../../constants/map/coordMap");
var map_1 = require("../../constants/map/map");
var services_1 = require("../../../../services");
var validateName_1 = require("../../constants/map/validateName");
var bind_1 = __importDefault(require("../../../../utils/bind"));
var store_1 = __importDefault(require("../store"));
var MigrationChinaStore = /** @class */ (function (_super) {
__extends(MigrationChinaStore, _super);
function MigrationChinaStore() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.mapType = map_1.MapType.China;
return _this;
}
Object.defineProperty(MigrationChinaStore.prototype, "chinaMapProvince", {
get: function () {
return validateName_1.chinaMapProvince.map(function (item) { return services_1.formatString(item); });
},
enumerable: false,
configurable: true
});
Object.defineProperty(MigrationChinaStore.prototype, "chinaMapCity", {
get: function () {
return validateName_1.chinaMapCity.map(function (item) { return services_1.formatString(item); });
},
enumerable: false,
configurable: true
});
Object.defineProperty(MigrationChinaStore.prototype, "chinaMapArea", {
get: function () {
return validateName_1.chinaMapAREA.map(function (item) { return services_1.formatString(item); });
},
enumerable: false,
configurable: true
});
MigrationChinaStore.prototype.transformName = function (name) {
if (name === void 0) { name = ''; }
var res = name.replace(/^(.*?)(省|市|自治区|壮族自治区|回族自治区|维吾尔自治区|特别行政区)$/, '$1');
if (this.chinaMapProvince.indexOf(res) !== -1) {
return res;
}
if (this.chinaMapCity.indexOf(res) !== -1) {
return res;
}
if (this.chinaMapArea.indexOf(res) !== -1) {
return res;
}
return '';
};
Object.defineProperty(MigrationChinaStore.prototype, "chinaCoordMap", {
get: function () {
return coordMap_1.geolevalCoorMapOptions[this.geoLevalType];
},
enumerable: false,
configurable: true
});
Object.defineProperty(MigrationChinaStore.prototype, "datas", {
get: function () {
var _this = this;
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 = _this.transformName(String(item[fromBucketIndex][0]));
var fromCoord = _this.chinaCoordMap[fromCity];
var toCity = _this.transformName(String(item[toBucketIndex][0]));
var toCoord = _this.chinaCoordMap[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([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationChinaStore.prototype, "chinaMapProvince", null);
__decorate([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationChinaStore.prototype, "chinaMapCity", null);
__decorate([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationChinaStore.prototype, "chinaMapArea", null);
__decorate([
bind_1.default,
__metadata("design:type", Function),
__metadata("design:paramtypes", [String]),
__metadata("design:returntype", void 0)
], MigrationChinaStore.prototype, "transformName", null);
__decorate([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationChinaStore.prototype, "chinaCoordMap", null);
__decorate([
mobx_1.computed,
__metadata("design:type", Object),
__metadata("design:paramtypes", [])
], MigrationChinaStore.prototype, "datas", null);
return MigrationChinaStore;
}(store_1.default));
exports.default = MigrationChinaStore;