123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987 |
- import * as zrUtil from 'zrender/lib/core/util.js';
- import Model from '../model/Model.js';
- import DataDiffer from './DataDiffer.js';
- import { DefaultDataProvider } from './helper/dataProvider.js';
- import { summarizeDimensions } from './helper/dimensionHelper.js';
- import SeriesDimensionDefine from './SeriesDimensionDefine.js';
- import { SOURCE_FORMAT_TYPED_ARRAY, SOURCE_FORMAT_ORIGINAL } from '../util/types.js';
- import { convertOptionIdName, isDataItemOption } from '../util/model.js';
- import { setCommonECData } from '../util/innerStore.js';
- import { isSourceInstance } from './Source.js';
- import DataStore from './DataStore.js';
- import { isSeriesDataSchema } from './helper/SeriesDataSchema.js';
- var isObject = zrUtil.isObject;
- var map = zrUtil.map;
- var CtorInt32Array = typeof Int32Array === 'undefined' ? Array : Int32Array;
- var ID_PREFIX = 'e\0\0';
- var INDEX_NOT_FOUND = -1;
- var TRANSFERABLE_PROPERTIES = ['hasItemOption', '_nameList', '_idList', '_invertedIndicesMap', '_dimSummary', 'userOutput', '_rawData', '_dimValueGetter', '_nameDimIdx', '_idDimIdx', '_nameRepeatCount'];
- var CLONE_PROPERTIES = ['_approximateExtent'];
- var prepareInvertedIndex;
- var getId;
- var getIdNameFromStore;
- var normalizeDimensions;
- var transferProperties;
- var cloneListForMapAndSample;
- var makeIdFromName;
- var SeriesData = function () {
-
- function SeriesData(dimensionsInput, hostModel) {
- this.type = 'list';
- this._dimOmitted = false;
- this._nameList = [];
- this._idList = [];
-
-
-
-
- this._visual = {};
-
- this._layout = {};
-
- this._itemVisuals = [];
-
- this._itemLayouts = [];
-
- this._graphicEls = [];
-
- this._approximateExtent = {};
- this._calculationInfo = {};
-
-
-
-
- this.hasItemOption = false;
-
-
- this.TRANSFERABLE_METHODS = ['cloneShallow', 'downSample', 'lttbDownSample', 'map'];
-
- this.CHANGABLE_METHODS = ['filterSelf', 'selectRange'];
- this.DOWNSAMPLE_METHODS = ['downSample', 'lttbDownSample'];
- var dimensions;
- var assignStoreDimIdx = false;
- if (isSeriesDataSchema(dimensionsInput)) {
- dimensions = dimensionsInput.dimensions;
- this._dimOmitted = dimensionsInput.isDimensionOmitted();
- this._schema = dimensionsInput;
- } else {
- assignStoreDimIdx = true;
- dimensions = dimensionsInput;
- }
- dimensions = dimensions || ['x', 'y'];
- var dimensionInfos = {};
- var dimensionNames = [];
- var invertedIndicesMap = {};
- var needsHasOwn = false;
- var emptyObj = {};
- for (var i = 0; i < dimensions.length; i++) {
-
- var dimInfoInput = dimensions[i];
- var dimensionInfo = zrUtil.isString(dimInfoInput) ? new SeriesDimensionDefine({
- name: dimInfoInput
- }) : !(dimInfoInput instanceof SeriesDimensionDefine) ? new SeriesDimensionDefine(dimInfoInput) : dimInfoInput;
- var dimensionName = dimensionInfo.name;
- dimensionInfo.type = dimensionInfo.type || 'float';
- if (!dimensionInfo.coordDim) {
- dimensionInfo.coordDim = dimensionName;
- dimensionInfo.coordDimIndex = 0;
- }
- var otherDims = dimensionInfo.otherDims = dimensionInfo.otherDims || {};
- dimensionNames.push(dimensionName);
- dimensionInfos[dimensionName] = dimensionInfo;
- if (emptyObj[dimensionName] != null) {
- needsHasOwn = true;
- }
- if (dimensionInfo.createInvertedIndices) {
- invertedIndicesMap[dimensionName] = [];
- }
- if (otherDims.itemName === 0) {
- this._nameDimIdx = i;
- }
- if (otherDims.itemId === 0) {
- this._idDimIdx = i;
- }
- if (process.env.NODE_ENV !== 'production') {
- zrUtil.assert(assignStoreDimIdx || dimensionInfo.storeDimIndex >= 0);
- }
- if (assignStoreDimIdx) {
- dimensionInfo.storeDimIndex = i;
- }
- }
- this.dimensions = dimensionNames;
- this._dimInfos = dimensionInfos;
- this._initGetDimensionInfo(needsHasOwn);
- this.hostModel = hostModel;
- this._invertedIndicesMap = invertedIndicesMap;
- if (this._dimOmitted) {
- var dimIdxToName_1 = this._dimIdxToName = zrUtil.createHashMap();
- zrUtil.each(dimensionNames, function (dimName) {
- dimIdxToName_1.set(dimensionInfos[dimName].storeDimIndex, dimName);
- });
- }
- }
-
- SeriesData.prototype.getDimension = function (dim) {
- var dimIdx = this._recognizeDimIndex(dim);
- if (dimIdx == null) {
- return dim;
- }
- dimIdx = dim;
- if (!this._dimOmitted) {
- return this.dimensions[dimIdx];
- }
-
-
- var dimName = this._dimIdxToName.get(dimIdx);
- if (dimName != null) {
- return dimName;
- }
- var sourceDimDef = this._schema.getSourceDimension(dimIdx);
- if (sourceDimDef) {
- return sourceDimDef.name;
- }
- };
-
- SeriesData.prototype.getDimensionIndex = function (dim) {
- var dimIdx = this._recognizeDimIndex(dim);
- if (dimIdx != null) {
- return dimIdx;
- }
- if (dim == null) {
- return -1;
- }
- var dimInfo = this._getDimInfo(dim);
- return dimInfo ? dimInfo.storeDimIndex : this._dimOmitted ? this._schema.getSourceDimensionIndex(dim) : -1;
- };
-
- SeriesData.prototype._recognizeDimIndex = function (dim) {
- if (zrUtil.isNumber(dim)
-
- || dim != null && !isNaN(dim) && !this._getDimInfo(dim) && (!this._dimOmitted || this._schema.getSourceDimensionIndex(dim) < 0)) {
- return +dim;
- }
- };
- SeriesData.prototype._getStoreDimIndex = function (dim) {
- var dimIdx = this.getDimensionIndex(dim);
- if (process.env.NODE_ENV !== 'production') {
- if (dimIdx == null) {
- throw new Error('Unknown dimension ' + dim);
- }
- }
- return dimIdx;
- };
-
- SeriesData.prototype.getDimensionInfo = function (dim) {
-
- return this._getDimInfo(this.getDimension(dim));
- };
- SeriesData.prototype._initGetDimensionInfo = function (needsHasOwn) {
- var dimensionInfos = this._dimInfos;
- this._getDimInfo = needsHasOwn ? function (dimName) {
- return dimensionInfos.hasOwnProperty(dimName) ? dimensionInfos[dimName] : undefined;
- } : function (dimName) {
- return dimensionInfos[dimName];
- };
- };
-
- SeriesData.prototype.getDimensionsOnCoord = function () {
- return this._dimSummary.dataDimsOnCoord.slice();
- };
- SeriesData.prototype.mapDimension = function (coordDim, idx) {
- var dimensionsSummary = this._dimSummary;
- if (idx == null) {
- return dimensionsSummary.encodeFirstDimNotExtra[coordDim];
- }
- var dims = dimensionsSummary.encode[coordDim];
- return dims ? dims[idx] : null;
- };
- SeriesData.prototype.mapDimensionsAll = function (coordDim) {
- var dimensionsSummary = this._dimSummary;
- var dims = dimensionsSummary.encode[coordDim];
- return (dims || []).slice();
- };
- SeriesData.prototype.getStore = function () {
- return this._store;
- };
-
- SeriesData.prototype.initData = function (data, nameList, dimValueGetter) {
- var _this = this;
- var store;
- if (data instanceof DataStore) {
- store = data;
- }
- if (!store) {
- var dimensions = this.dimensions;
- var provider = isSourceInstance(data) || zrUtil.isArrayLike(data) ? new DefaultDataProvider(data, dimensions.length) : data;
- store = new DataStore();
- var dimensionInfos = map(dimensions, function (dimName) {
- return {
- type: _this._dimInfos[dimName].type,
- property: dimName
- };
- });
- store.initData(provider, dimensionInfos, dimValueGetter);
- }
- this._store = store;
-
- this._nameList = (nameList || []).slice();
- this._idList = [];
- this._nameRepeatCount = {};
- this._doInit(0, store.count());
-
-
- this._dimSummary = summarizeDimensions(this, this._schema);
- this.userOutput = this._dimSummary.userOutput;
- };
-
- SeriesData.prototype.appendData = function (data) {
- var range = this._store.appendData(data);
- this._doInit(range[0], range[1]);
- };
-
- SeriesData.prototype.appendValues = function (values, names) {
- var _a = this._store.appendValues(values, names.length),
- start = _a.start,
- end = _a.end;
- var shouldMakeIdFromName = this._shouldMakeIdFromName();
- this._updateOrdinalMeta();
- if (names) {
- for (var idx = start; idx < end; idx++) {
- var sourceIdx = idx - start;
- this._nameList[idx] = names[sourceIdx];
- if (shouldMakeIdFromName) {
- makeIdFromName(this, idx);
- }
- }
- }
- };
- SeriesData.prototype._updateOrdinalMeta = function () {
- var store = this._store;
- var dimensions = this.dimensions;
- for (var i = 0; i < dimensions.length; i++) {
- var dimInfo = this._dimInfos[dimensions[i]];
- if (dimInfo.ordinalMeta) {
- store.collectOrdinalMeta(dimInfo.storeDimIndex, dimInfo.ordinalMeta);
- }
- }
- };
- SeriesData.prototype._shouldMakeIdFromName = function () {
- var provider = this._store.getProvider();
- return this._idDimIdx == null && provider.getSource().sourceFormat !== SOURCE_FORMAT_TYPED_ARRAY && !provider.fillStorage;
- };
- SeriesData.prototype._doInit = function (start, end) {
- if (start >= end) {
- return;
- }
- var store = this._store;
- var provider = store.getProvider();
- this._updateOrdinalMeta();
- var nameList = this._nameList;
- var idList = this._idList;
- var sourceFormat = provider.getSource().sourceFormat;
- var isFormatOriginal = sourceFormat === SOURCE_FORMAT_ORIGINAL;
-
-
-
-
-
-
-
-
- if (isFormatOriginal && !provider.pure) {
- var sharedDataItem = [];
- for (var idx = start; idx < end; idx++) {
-
- var dataItem = provider.getItem(idx, sharedDataItem);
- if (!this.hasItemOption && isDataItemOption(dataItem)) {
- this.hasItemOption = true;
- }
- if (dataItem) {
- var itemName = dataItem.name;
- if (nameList[idx] == null && itemName != null) {
- nameList[idx] = convertOptionIdName(itemName, null);
- }
- var itemId = dataItem.id;
- if (idList[idx] == null && itemId != null) {
- idList[idx] = convertOptionIdName(itemId, null);
- }
- }
- }
- }
- if (this._shouldMakeIdFromName()) {
- for (var idx = start; idx < end; idx++) {
- makeIdFromName(this, idx);
- }
- }
- prepareInvertedIndex(this);
- };
-
- SeriesData.prototype.getApproximateExtent = function (dim) {
- return this._approximateExtent[dim] || this._store.getDataExtent(this._getStoreDimIndex(dim));
- };
-
- SeriesData.prototype.setApproximateExtent = function (extent, dim) {
- dim = this.getDimension(dim);
- this._approximateExtent[dim] = extent.slice();
- };
- SeriesData.prototype.getCalculationInfo = function (key) {
- return this._calculationInfo[key];
- };
- SeriesData.prototype.setCalculationInfo = function (key, value) {
- isObject(key) ? zrUtil.extend(this._calculationInfo, key) : this._calculationInfo[key] = value;
- };
-
- SeriesData.prototype.getName = function (idx) {
- var rawIndex = this.getRawIndex(idx);
- var name = this._nameList[rawIndex];
- if (name == null && this._nameDimIdx != null) {
- name = getIdNameFromStore(this, this._nameDimIdx, rawIndex);
- }
- if (name == null) {
- name = '';
- }
- return name;
- };
- SeriesData.prototype._getCategory = function (dimIdx, idx) {
- var ordinal = this._store.get(dimIdx, idx);
- var ordinalMeta = this._store.getOrdinalMeta(dimIdx);
- if (ordinalMeta) {
- return ordinalMeta.categories[ordinal];
- }
- return ordinal;
- };
-
- SeriesData.prototype.getId = function (idx) {
- return getId(this, this.getRawIndex(idx));
- };
- SeriesData.prototype.count = function () {
- return this._store.count();
- };
-
- SeriesData.prototype.get = function (dim, idx) {
- var store = this._store;
- var dimInfo = this._dimInfos[dim];
- if (dimInfo) {
- return store.get(dimInfo.storeDimIndex, idx);
- }
- };
-
- SeriesData.prototype.getByRawIndex = function (dim, rawIdx) {
- var store = this._store;
- var dimInfo = this._dimInfos[dim];
- if (dimInfo) {
- return store.getByRawIndex(dimInfo.storeDimIndex, rawIdx);
- }
- };
- SeriesData.prototype.getIndices = function () {
- return this._store.getIndices();
- };
- SeriesData.prototype.getDataExtent = function (dim) {
- return this._store.getDataExtent(this._getStoreDimIndex(dim));
- };
- SeriesData.prototype.getSum = function (dim) {
- return this._store.getSum(this._getStoreDimIndex(dim));
- };
- SeriesData.prototype.getMedian = function (dim) {
- return this._store.getMedian(this._getStoreDimIndex(dim));
- };
- SeriesData.prototype.getValues = function (dimensions, idx) {
- var _this = this;
- var store = this._store;
- return zrUtil.isArray(dimensions) ? store.getValues(map(dimensions, function (dim) {
- return _this._getStoreDimIndex(dim);
- }), idx) : store.getValues(dimensions);
- };
-
- SeriesData.prototype.hasValue = function (idx) {
- var dataDimIndicesOnCoord = this._dimSummary.dataDimIndicesOnCoord;
- for (var i = 0, len = dataDimIndicesOnCoord.length; i < len; i++) {
-
-
-
- if (isNaN(this._store.get(dataDimIndicesOnCoord[i], idx))) {
- return false;
- }
- }
- return true;
- };
-
- SeriesData.prototype.indexOfName = function (name) {
- for (var i = 0, len = this._store.count(); i < len; i++) {
- if (this.getName(i) === name) {
- return i;
- }
- }
- return -1;
- };
- SeriesData.prototype.getRawIndex = function (idx) {
- return this._store.getRawIndex(idx);
- };
- SeriesData.prototype.indexOfRawIndex = function (rawIndex) {
- return this._store.indexOfRawIndex(rawIndex);
- };
-
- SeriesData.prototype.rawIndexOf = function (dim, value) {
- var invertedIndices = dim && this._invertedIndicesMap[dim];
- if (process.env.NODE_ENV !== 'production') {
- if (!invertedIndices) {
- throw new Error('Do not supported yet');
- }
- }
- var rawIndex = invertedIndices[value];
- if (rawIndex == null || isNaN(rawIndex)) {
- return INDEX_NOT_FOUND;
- }
- return rawIndex;
- };
-
- SeriesData.prototype.indicesOfNearest = function (dim, value, maxDistance) {
- return this._store.indicesOfNearest(this._getStoreDimIndex(dim), value, maxDistance);
- };
- SeriesData.prototype.each = function (dims, cb, ctx) {
- 'use strict';
- if (zrUtil.isFunction(dims)) {
- ctx = cb;
- cb = dims;
- dims = [];
- }
-
- var fCtx = ctx || this;
- var dimIndices = map(normalizeDimensions(dims), this._getStoreDimIndex, this);
- this._store.each(dimIndices, fCtx ? zrUtil.bind(cb, fCtx) : cb);
- };
- SeriesData.prototype.filterSelf = function (dims, cb, ctx) {
- 'use strict';
- if (zrUtil.isFunction(dims)) {
- ctx = cb;
- cb = dims;
- dims = [];
- }
-
- var fCtx = ctx || this;
- var dimIndices = map(normalizeDimensions(dims), this._getStoreDimIndex, this);
- this._store = this._store.filter(dimIndices, fCtx ? zrUtil.bind(cb, fCtx) : cb);
- return this;
- };
-
- SeriesData.prototype.selectRange = function (range) {
- 'use strict';
- var _this = this;
- var innerRange = {};
- var dims = zrUtil.keys(range);
- var dimIndices = [];
- zrUtil.each(dims, function (dim) {
- var dimIdx = _this._getStoreDimIndex(dim);
- innerRange[dimIdx] = range[dim];
- dimIndices.push(dimIdx);
- });
- this._store = this._store.selectRange(innerRange);
- return this;
- };
-
- SeriesData.prototype.mapArray = function (dims, cb, ctx) {
- 'use strict';
- if (zrUtil.isFunction(dims)) {
- ctx = cb;
- cb = dims;
- dims = [];
- }
-
- ctx = ctx || this;
- var result = [];
- this.each(dims, function () {
- result.push(cb && cb.apply(this, arguments));
- }, ctx);
- return result;
- };
- SeriesData.prototype.map = function (dims, cb, ctx, ctxCompat) {
- 'use strict';
-
- var fCtx = ctx || ctxCompat || this;
- var dimIndices = map(normalizeDimensions(dims), this._getStoreDimIndex, this);
- var list = cloneListForMapAndSample(this);
- list._store = this._store.map(dimIndices, fCtx ? zrUtil.bind(cb, fCtx) : cb);
- return list;
- };
- SeriesData.prototype.modify = function (dims, cb, ctx, ctxCompat) {
- var _this = this;
-
- var fCtx = ctx || ctxCompat || this;
- if (process.env.NODE_ENV !== 'production') {
- zrUtil.each(normalizeDimensions(dims), function (dim) {
- var dimInfo = _this.getDimensionInfo(dim);
- if (!dimInfo.isCalculationCoord) {
- console.error('Danger: only stack dimension can be modified');
- }
- });
- }
- var dimIndices = map(normalizeDimensions(dims), this._getStoreDimIndex, this);
-
-
-
-
- this._store.modify(dimIndices, fCtx ? zrUtil.bind(cb, fCtx) : cb);
- };
-
- SeriesData.prototype.downSample = function (dimension, rate, sampleValue, sampleIndex) {
- var list = cloneListForMapAndSample(this);
- list._store = this._store.downSample(this._getStoreDimIndex(dimension), rate, sampleValue, sampleIndex);
- return list;
- };
-
- SeriesData.prototype.lttbDownSample = function (valueDimension, rate) {
- var list = cloneListForMapAndSample(this);
- list._store = this._store.lttbDownSample(this._getStoreDimIndex(valueDimension), rate);
- return list;
- };
- SeriesData.prototype.getRawDataItem = function (idx) {
- return this._store.getRawDataItem(idx);
- };
-
-
- SeriesData.prototype.getItemModel = function (idx) {
- var hostModel = this.hostModel;
- var dataItem = this.getRawDataItem(idx);
- return new Model(dataItem, hostModel, hostModel && hostModel.ecModel);
- };
-
- SeriesData.prototype.diff = function (otherList) {
- var thisList = this;
- return new DataDiffer(otherList ? otherList.getStore().getIndices() : [], this.getStore().getIndices(), function (idx) {
- return getId(otherList, idx);
- }, function (idx) {
- return getId(thisList, idx);
- });
- };
-
- SeriesData.prototype.getVisual = function (key) {
- var visual = this._visual;
- return visual && visual[key];
- };
- SeriesData.prototype.setVisual = function (kvObj, val) {
- this._visual = this._visual || {};
- if (isObject(kvObj)) {
- zrUtil.extend(this._visual, kvObj);
- } else {
- this._visual[kvObj] = val;
- }
- };
-
-
- SeriesData.prototype.getItemVisual = function (idx, key) {
- var itemVisual = this._itemVisuals[idx];
- var val = itemVisual && itemVisual[key];
- if (val == null) {
-
- return this.getVisual(key);
- }
- return val;
- };
-
- SeriesData.prototype.hasItemVisual = function () {
- return this._itemVisuals.length > 0;
- };
-
-
- SeriesData.prototype.ensureUniqueItemVisual = function (idx, key) {
- var itemVisuals = this._itemVisuals;
- var itemVisual = itemVisuals[idx];
- if (!itemVisual) {
- itemVisual = itemVisuals[idx] = {};
- }
- var val = itemVisual[key];
- if (val == null) {
- val = this.getVisual(key);
-
- if (zrUtil.isArray(val)) {
- val = val.slice();
- } else if (isObject(val)) {
- val = zrUtil.extend({}, val);
- }
- itemVisual[key] = val;
- }
- return val;
- };
-
- SeriesData.prototype.setItemVisual = function (idx, key, value) {
- var itemVisual = this._itemVisuals[idx] || {};
- this._itemVisuals[idx] = itemVisual;
- if (isObject(key)) {
- zrUtil.extend(itemVisual, key);
- } else {
- itemVisual[key] = value;
- }
- };
-
- SeriesData.prototype.clearAllVisual = function () {
- this._visual = {};
- this._itemVisuals = [];
- };
- SeriesData.prototype.setLayout = function (key, val) {
- isObject(key) ? zrUtil.extend(this._layout, key) : this._layout[key] = val;
- };
-
- SeriesData.prototype.getLayout = function (key) {
- return this._layout[key];
- };
-
- SeriesData.prototype.getItemLayout = function (idx) {
- return this._itemLayouts[idx];
- };
-
- SeriesData.prototype.setItemLayout = function (idx, layout, merge) {
- this._itemLayouts[idx] = merge ? zrUtil.extend(this._itemLayouts[idx] || {}, layout) : layout;
- };
-
- SeriesData.prototype.clearItemLayouts = function () {
- this._itemLayouts.length = 0;
- };
-
- SeriesData.prototype.setItemGraphicEl = function (idx, el) {
- var seriesIndex = this.hostModel && this.hostModel.seriesIndex;
- setCommonECData(seriesIndex, this.dataType, idx, el);
- this._graphicEls[idx] = el;
- };
- SeriesData.prototype.getItemGraphicEl = function (idx) {
- return this._graphicEls[idx];
- };
- SeriesData.prototype.eachItemGraphicEl = function (cb, context) {
- zrUtil.each(this._graphicEls, function (el, idx) {
- if (el) {
- cb && cb.call(context, el, idx);
- }
- });
- };
-
- SeriesData.prototype.cloneShallow = function (list) {
- if (!list) {
- list = new SeriesData(this._schema ? this._schema : map(this.dimensions, this._getDimInfo, this), this.hostModel);
- }
- transferProperties(list, this);
- list._store = this._store;
- return list;
- };
-
- SeriesData.prototype.wrapMethod = function (methodName, injectFunction) {
- var originalMethod = this[methodName];
- if (!zrUtil.isFunction(originalMethod)) {
- return;
- }
- this.__wrappedMethods = this.__wrappedMethods || [];
- this.__wrappedMethods.push(methodName);
- this[methodName] = function () {
- var res = originalMethod.apply(this, arguments);
- return injectFunction.apply(this, [res].concat(zrUtil.slice(arguments)));
- };
- };
-
-
-
- SeriesData.internalField = function () {
- prepareInvertedIndex = function (data) {
- var invertedIndicesMap = data._invertedIndicesMap;
- zrUtil.each(invertedIndicesMap, function (invertedIndices, dim) {
- var dimInfo = data._dimInfos[dim];
-
- var ordinalMeta = dimInfo.ordinalMeta;
- var store = data._store;
- if (ordinalMeta) {
- invertedIndices = invertedIndicesMap[dim] = new CtorInt32Array(ordinalMeta.categories.length);
-
-
- for (var i = 0; i < invertedIndices.length; i++) {
- invertedIndices[i] = INDEX_NOT_FOUND;
- }
- for (var i = 0; i < store.count(); i++) {
-
- invertedIndices[store.get(dimInfo.storeDimIndex, i)] = i;
- }
- }
- });
- };
- getIdNameFromStore = function (data, dimIdx, idx) {
- return convertOptionIdName(data._getCategory(dimIdx, idx), null);
- };
-
- getId = function (data, rawIndex) {
- var id = data._idList[rawIndex];
- if (id == null && data._idDimIdx != null) {
- id = getIdNameFromStore(data, data._idDimIdx, rawIndex);
- }
- if (id == null) {
- id = ID_PREFIX + rawIndex;
- }
- return id;
- };
- normalizeDimensions = function (dimensions) {
- if (!zrUtil.isArray(dimensions)) {
- dimensions = dimensions != null ? [dimensions] : [];
- }
- return dimensions;
- };
-
- cloneListForMapAndSample = function (original) {
- var list = new SeriesData(original._schema ? original._schema : map(original.dimensions, original._getDimInfo, original), original.hostModel);
-
- transferProperties(list, original);
- return list;
- };
- transferProperties = function (target, source) {
- zrUtil.each(TRANSFERABLE_PROPERTIES.concat(source.__wrappedMethods || []), function (propName) {
- if (source.hasOwnProperty(propName)) {
- target[propName] = source[propName];
- }
- });
- target.__wrappedMethods = source.__wrappedMethods;
- zrUtil.each(CLONE_PROPERTIES, function (propName) {
- target[propName] = zrUtil.clone(source[propName]);
- });
- target._calculationInfo = zrUtil.extend({}, source._calculationInfo);
- };
- makeIdFromName = function (data, idx) {
- var nameList = data._nameList;
- var idList = data._idList;
- var nameDimIdx = data._nameDimIdx;
- var idDimIdx = data._idDimIdx;
- var name = nameList[idx];
- var id = idList[idx];
- if (name == null && nameDimIdx != null) {
- nameList[idx] = name = getIdNameFromStore(data, nameDimIdx, idx);
- }
- if (id == null && idDimIdx != null) {
- idList[idx] = id = getIdNameFromStore(data, idDimIdx, idx);
- }
- if (id == null && name != null) {
- var nameRepeatCount = data._nameRepeatCount;
- var nmCnt = nameRepeatCount[name] = (nameRepeatCount[name] || 0) + 1;
- id = name;
- if (nmCnt > 1) {
- id += '__ec__' + nmCnt;
- }
- idList[idx] = id;
- }
- };
- }();
- return SeriesData;
- }();
- export default SeriesData;
|