@visactor/vtable-calendar 1.22.13-alpha.0 → 1.22.13-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vtable-calendar.js +96 -44
- package/dist/vtable-calendar.min.js +1 -1
- package/package.json +2 -2
package/dist/vtable-calendar.js
CHANGED
|
@@ -627,28 +627,59 @@
|
|
|
627
627
|
}
|
|
628
628
|
addEventListener(type, listener, options) {
|
|
629
629
|
if (!listener) return;
|
|
630
|
+
const capture = this._resolveCapture(options),
|
|
631
|
+
once = this._resolveOnce(options),
|
|
632
|
+
listenerTypeMap = this._getOrCreateListenerTypeMap(type),
|
|
633
|
+
wrappedMap = this._getOrCreateWrappedMap(listenerTypeMap, listener);
|
|
634
|
+
if (wrappedMap.has(capture)) return;
|
|
630
635
|
const wrappedListener = event => {
|
|
631
636
|
const transformedEvent = this._eventListenerTransformer(event);
|
|
632
|
-
"function" == typeof listener ? listener(transformedEvent) : listener.handleEvent && listener.handleEvent(transformedEvent);
|
|
637
|
+
"function" == typeof listener ? listener(transformedEvent) : listener.handleEvent && listener.handleEvent(transformedEvent), once && this._deleteListenerRecord(type, listener, capture);
|
|
633
638
|
};
|
|
634
|
-
|
|
639
|
+
wrappedMap.set(capture, {
|
|
640
|
+
wrappedListener: wrappedListener,
|
|
641
|
+
options: options
|
|
642
|
+
}), this._nativeAddEventListener(type, wrappedListener, options);
|
|
635
643
|
}
|
|
636
644
|
removeEventListener(type, listener, options) {
|
|
637
|
-
var _a;
|
|
645
|
+
var _a, _b;
|
|
638
646
|
if (!listener) return;
|
|
639
|
-
const
|
|
640
|
-
|
|
647
|
+
const capture = this._resolveCapture(options),
|
|
648
|
+
wrappedRecord = null === (_b = null === (_a = this._listenerMap.get(type)) || void 0 === _a ? void 0 : _a.get(listener)) || void 0 === _b ? void 0 : _b.get(capture);
|
|
649
|
+
wrappedRecord && (this._nativeRemoveEventListener(type, wrappedRecord.wrappedListener, capture), this._deleteListenerRecord(type, listener, capture));
|
|
641
650
|
}
|
|
642
651
|
dispatchEvent(event) {
|
|
643
652
|
return this._nativeDispatchEvent(event);
|
|
644
653
|
}
|
|
645
654
|
clearAllEventListeners() {
|
|
646
|
-
this._listenerMap.forEach((
|
|
647
|
-
|
|
648
|
-
|
|
655
|
+
this._listenerMap.forEach((listenerMap, type) => {
|
|
656
|
+
listenerMap.forEach(wrappedMap => {
|
|
657
|
+
wrappedMap.forEach((wrappedRecord, capture) => {
|
|
658
|
+
this._nativeRemoveEventListener(type, wrappedRecord.wrappedListener, capture);
|
|
659
|
+
});
|
|
649
660
|
});
|
|
650
661
|
}), this._listenerMap.clear();
|
|
651
662
|
}
|
|
663
|
+
_resolveCapture(options) {
|
|
664
|
+
return "boolean" == typeof options ? options : !!(null == options ? void 0 : options.capture);
|
|
665
|
+
}
|
|
666
|
+
_resolveOnce(options) {
|
|
667
|
+
return "object" == typeof options && !!(null == options ? void 0 : options.once);
|
|
668
|
+
}
|
|
669
|
+
_getOrCreateListenerTypeMap(type) {
|
|
670
|
+
let listenerTypeMap = this._listenerMap.get(type);
|
|
671
|
+
return listenerTypeMap || (listenerTypeMap = new Map(), this._listenerMap.set(type, listenerTypeMap)), listenerTypeMap;
|
|
672
|
+
}
|
|
673
|
+
_getOrCreateWrappedMap(listenerTypeMap, listener) {
|
|
674
|
+
let wrappedMap = listenerTypeMap.get(listener);
|
|
675
|
+
return wrappedMap || (wrappedMap = new Map(), listenerTypeMap.set(listener, wrappedMap)), wrappedMap;
|
|
676
|
+
}
|
|
677
|
+
_deleteListenerRecord(type, listener, capture) {
|
|
678
|
+
const listenerTypeMap = this._listenerMap.get(type);
|
|
679
|
+
if (!listenerTypeMap) return;
|
|
680
|
+
const wrappedMap = listenerTypeMap.get(listener);
|
|
681
|
+
wrappedMap && (wrappedMap.delete(capture), 0 === wrappedMap.size && listenerTypeMap.delete(listener), 0 === listenerTypeMap.size && this._listenerMap.delete(type));
|
|
682
|
+
}
|
|
652
683
|
_nativeAddEventListener(type, listener, options) {
|
|
653
684
|
throw new Error("_nativeAddEventListener must be implemented by derived classes");
|
|
654
685
|
}
|
|
@@ -7162,7 +7193,9 @@
|
|
|
7162
7193
|
var _a;
|
|
7163
7194
|
if (event.manager !== this) throw new Error("It is illegal to free an event not managed by this EventManager!");
|
|
7164
7195
|
const constructor = event.constructor;
|
|
7165
|
-
this.eventPool.has(constructor) || this.eventPool.
|
|
7196
|
+
this.eventPool.has(constructor) || (this.eventPool.get(constructor).forEach(e => {
|
|
7197
|
+
e.eventPhase = event.NONE, e.currentTarget = null, e.path = [], e.detailPath = [], e.target = null;
|
|
7198
|
+
}), this.eventPool.set(constructor, [])), null === (_a = this.eventPool.get(constructor)) || void 0 === _a || _a.push(event);
|
|
7166
7199
|
}
|
|
7167
7200
|
notifyListeners(e, type) {
|
|
7168
7201
|
const listeners = e.currentTarget._events[type];
|
|
@@ -9766,7 +9799,7 @@
|
|
|
9766
9799
|
});
|
|
9767
9800
|
}
|
|
9768
9801
|
release() {
|
|
9769
|
-
this.releaseStatus = "released", this.stopAnimates(), application.graphicService.onRelease(this);
|
|
9802
|
+
this.releaseStatus = "released", this.stopAnimates(), application.graphicService.onRelease(this), super.release();
|
|
9770
9803
|
}
|
|
9771
9804
|
_emitCustomEvent(type, context) {
|
|
9772
9805
|
var _a, _b;
|
|
@@ -17173,12 +17206,12 @@
|
|
|
17173
17206
|
throw new Error("暂不支持");
|
|
17174
17207
|
}
|
|
17175
17208
|
release() {
|
|
17176
|
-
var _a, _b;
|
|
17209
|
+
var _a, _b, _d;
|
|
17177
17210
|
super.release(), this.hooks.beforeRender.unTap("constructor", this.beforeRender), this.hooks.afterRender.unTap("constructor", this.afterRender), this.eventSystem && this.eventSystem.release(), this.layerService.releaseStage(this), this.pluginService.release(), this.forEach(layer => {
|
|
17178
17211
|
layer.release();
|
|
17179
17212
|
}), this.interactiveLayer && (this.interactiveLayer.forEachChildren(item => {
|
|
17180
17213
|
item.setStage && item.setStage(null, null), this.interactiveLayer.removeChild(item);
|
|
17181
|
-
}), this.interactiveLayer.release()), this.window.release(), null === (_a = this._ticker) || void 0 === _a || _a.remTimeline(null == this ? void 0 : this.timeline), null === (_b = this._ticker) || void 0 === _b || _b.removeListener("tick", this.afterTickCb), this.renderService.renderTreeRoots = [];
|
|
17214
|
+
}), this.interactiveLayer.release()), this.window.release(), null === (_a = this._ticker) || void 0 === _a || _a.remTimeline(null == this ? void 0 : this.timeline), null === (_b = this._ticker) || void 0 === _b || _b.removeListener("tick", this.afterTickCb), this.params.ticker || null === (_d = this._ticker) || void 0 === _d || _d.release(), this.renderService.renderTreeRoots = [];
|
|
17182
17215
|
}
|
|
17183
17216
|
setStage(stage) {}
|
|
17184
17217
|
dirty(b, matrix) {
|
|
@@ -21404,7 +21437,7 @@
|
|
|
21404
21437
|
this._sliderRenderBounds = null, this._sliderLimitRange = null;
|
|
21405
21438
|
}
|
|
21406
21439
|
release(all) {
|
|
21407
|
-
super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).
|
|
21440
|
+
super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).removeEventListener("touchmove", this._handleTouchMove, {
|
|
21408
21441
|
passive: !1
|
|
21409
21442
|
}), this._clearDragEvents();
|
|
21410
21443
|
}
|
|
@@ -22987,17 +23020,21 @@
|
|
|
22987
23020
|
} = this.attribute.label;
|
|
22988
23021
|
textStyle = isFunction$3(textStyle) ? merge({}, DEFAULT_AXIS_THEME.label.style, textStyle(tickDatum, index, tickData, layer)) : textStyle;
|
|
22989
23022
|
const labelAlign = this.getLabelAlign(vector, inside, textStyle.angle);
|
|
22990
|
-
|
|
23023
|
+
textStyle = merge(labelAlign, textStyle), isFunction$3(textStyle.text) && (textStyle.text = textStyle.text({
|
|
22991
23024
|
label: tickDatum.label,
|
|
22992
23025
|
value: tickDatum.rawValue,
|
|
22993
23026
|
index: tickDatum.index,
|
|
22994
23027
|
layer: layer
|
|
22995
|
-
}))
|
|
23028
|
+
}));
|
|
23029
|
+
let reactStyle = textStyle.react;
|
|
23030
|
+
return isFunction$3(reactStyle) && (reactStyle = reactStyle(tickDatum, index, tickData, layer)), Object.assign(Object.assign(Object.assign(Object.assign({}, this.getLabelPosition(point, vector, textContent, textStyle)), {
|
|
22996
23031
|
text: null != text ? text : textContent,
|
|
22997
23032
|
_originText: tickDatum.label,
|
|
22998
23033
|
lineHeight: null == textStyle ? void 0 : textStyle.fontSize,
|
|
22999
23034
|
type: type
|
|
23000
|
-
}), textStyle)
|
|
23035
|
+
}), textStyle), {
|
|
23036
|
+
react: reactStyle
|
|
23037
|
+
});
|
|
23001
23038
|
}
|
|
23002
23039
|
getLabelPosition(point, vector, text, style) {
|
|
23003
23040
|
return point;
|
|
@@ -24026,6 +24063,8 @@
|
|
|
24026
24063
|
this.status === STATUS$1.RUNNING && (this.tickCounts++, this.timelines.forEach(timeline => {
|
|
24027
24064
|
timeline.tick(delta);
|
|
24028
24065
|
}), this.emit("tick", delta));
|
|
24066
|
+
}, this._handleGraphTick = () => {
|
|
24067
|
+
this.initHandler(!1);
|
|
24029
24068
|
}, this.init(), this.lastFrameTime = -1, this.tickCounts = 0, this.stage = stage, this.autoStop = !0, this.interval = 16, this.computeTimeOffsetAndJitter();
|
|
24030
24069
|
}
|
|
24031
24070
|
bindStage(stage) {
|
|
@@ -24035,9 +24074,7 @@
|
|
|
24035
24074
|
this.timeOffset = Math.floor(Math.random() * this.interval), this._jitter = Math.min(Math.max(.2 * this.interval, 6), .7 * this.interval);
|
|
24036
24075
|
}
|
|
24037
24076
|
init() {
|
|
24038
|
-
this.interval = 16, this.status = STATUS$1.INITIAL, application.global.hooks.onSetEnv.tap("graph-ticker",
|
|
24039
|
-
this.initHandler(!1);
|
|
24040
|
-
}), application.global.env && this.initHandler(!1);
|
|
24077
|
+
this.interval = 16, this.status = STATUS$1.INITIAL, application.global.hooks.onSetEnv.tap("graph-ticker", this._handleGraphTick), application.global.env && this.initHandler(!1);
|
|
24041
24078
|
}
|
|
24042
24079
|
addTimeline(timeline) {
|
|
24043
24080
|
this.timelines.push(timeline);
|
|
@@ -24110,7 +24147,7 @@
|
|
|
24110
24147
|
}
|
|
24111
24148
|
release() {
|
|
24112
24149
|
var _a;
|
|
24113
|
-
this.stop(), this.timelines = [], null === (_a = this.tickerHandler) || void 0 === _a || _a.release(), this.tickerHandler = null, this.lastFrameTime = -1;
|
|
24150
|
+
this.stop(), this.timelines = [], null === (_a = this.tickerHandler) || void 0 === _a || _a.release(), this.tickerHandler = null, this.lastFrameTime = -1, application.global.hooks.onSetEnv.unTap("graph-ticker", this._handleGraphTick);
|
|
24114
24151
|
}
|
|
24115
24152
|
checkSkip(delta) {
|
|
24116
24153
|
var _a, _b, _c;
|
|
@@ -24370,7 +24407,7 @@
|
|
|
24370
24407
|
let parsedFromProps = null,
|
|
24371
24408
|
props = params.to,
|
|
24372
24409
|
from = params.from;
|
|
24373
|
-
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from), this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, controlOptions, options, type, graphic);
|
|
24410
|
+
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from), parsedFromProps.attrOutChannel && graphic.setAttributes(parsedFromProps.attrOutChannel), this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, controlOptions, options, type, graphic);
|
|
24374
24411
|
let totalDelay = 0;
|
|
24375
24412
|
oneByOneDelay && (totalDelay = oneByOneDelay * (count - index - 1));
|
|
24376
24413
|
const delayAfterValue = isFunction$3(delayAfter) ? delayAfter(null === (_h = null === (_g = graphic.context) || void 0 === _g ? void 0 : _g.data) || void 0 === _h ? void 0 : _h[0], graphic, {}) : delayAfter;
|
|
@@ -24433,7 +24470,7 @@
|
|
|
24433
24470
|
let parsedFromProps = null,
|
|
24434
24471
|
props = effect.to,
|
|
24435
24472
|
from = effect.from;
|
|
24436
|
-
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from);
|
|
24473
|
+
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from), parsedFromProps.attrOutChannel && graphic.setAttributes(parsedFromProps.attrOutChannel);
|
|
24437
24474
|
const custom = null !== (_a = effect.custom) && void 0 !== _a ? _a : AnimateExecutor.builtInAnimateMap[type],
|
|
24438
24475
|
customType = effect.custom ? effect.customType : getCustomType(custom);
|
|
24439
24476
|
this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, controlOptions, options, type, graphic);
|
|
@@ -24452,22 +24489,31 @@
|
|
|
24452
24489
|
animate.play(customAnimate);
|
|
24453
24490
|
}
|
|
24454
24491
|
createPropsFromChannel(channel, graphic) {
|
|
24492
|
+
var _a;
|
|
24455
24493
|
const props = {};
|
|
24456
24494
|
let from = null;
|
|
24457
|
-
|
|
24458
|
-
|
|
24459
|
-
|
|
24460
|
-
|
|
24461
|
-
}
|
|
24495
|
+
if (!channel) return {
|
|
24496
|
+
from: from,
|
|
24497
|
+
props: props,
|
|
24498
|
+
attrOutChannel: null
|
|
24499
|
+
};
|
|
24500
|
+
const attrOutChannel = {};
|
|
24501
|
+
let hasAttrs = !1;
|
|
24502
|
+
const diffAttrs = null === (_a = graphic.context) || void 0 === _a ? void 0 : _a.diffAttrs;
|
|
24503
|
+
if (Array.isArray(channel) && (channel = channel.reduce((res, key) => (void 0 === diffAttrs[key] || (res[key] = {
|
|
24504
|
+
to: diffAttrs[key]
|
|
24505
|
+
}), res), {})), Object.keys(channel).forEach(key => {
|
|
24462
24506
|
var _a, _b, _c, _d;
|
|
24463
24507
|
const config = channel[key];
|
|
24464
24508
|
void 0 !== config.to && ("function" == typeof config.to ? props[key] = config.to(null === (_b = null === (_a = graphic.context) || void 0 === _a ? void 0 : _a.data) || void 0 === _b ? void 0 : _b[0], graphic, {}) : props[key] = config.to), void 0 !== config.from && (from || (from = {}), "function" == typeof config.from ? from[key] = config.from(null === (_d = null === (_c = graphic.context) || void 0 === _c ? void 0 : _c.data) || void 0 === _d ? void 0 : _d[0], graphic, {}) : from[key] = config.from);
|
|
24465
|
-
}), {
|
|
24466
|
-
|
|
24467
|
-
props
|
|
24468
|
-
}
|
|
24509
|
+
}), diffAttrs) for (const key in diffAttrs) {
|
|
24510
|
+
const value = diffAttrs[key];
|
|
24511
|
+
void 0 !== value && (props.hasOwnProperty(key) || (attrOutChannel[key] = value, hasAttrs = !0));
|
|
24512
|
+
}
|
|
24513
|
+
return {
|
|
24469
24514
|
from: from,
|
|
24470
|
-
props: props
|
|
24515
|
+
props: props,
|
|
24516
|
+
attrOutChannel: hasAttrs ? attrOutChannel : null
|
|
24471
24517
|
};
|
|
24472
24518
|
}
|
|
24473
24519
|
resolveValue(value, graphic, defaultValue) {
|
|
@@ -32580,7 +32626,7 @@
|
|
|
32580
32626
|
};
|
|
32581
32627
|
}
|
|
32582
32628
|
release(all) {
|
|
32583
|
-
super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).
|
|
32629
|
+
super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).removeEventListener("touchmove", this._handleTouchMove, {
|
|
32584
32630
|
passive: !1
|
|
32585
32631
|
}), this._clearAllDragEvents();
|
|
32586
32632
|
}
|
|
@@ -56238,11 +56284,11 @@
|
|
|
56238
56284
|
onUpdate(end, ratio, out) {
|
|
56239
56285
|
if (this.from.x !== this.to.x) {
|
|
56240
56286
|
const x = end ? this.to.x : this.from.x + Math.floor((this.to.x - this.from.x) * ratio);
|
|
56241
|
-
this.params.table.scrollLeft = x;
|
|
56287
|
+
this.params.table.scrollLeft = x, 1 === ratio && -1 !== this.to.targetCol && this.params.table.scrollToCol(this.to.targetCol, !1);
|
|
56242
56288
|
}
|
|
56243
56289
|
if (this.from.y !== this.to.y) {
|
|
56244
56290
|
const y = end ? this.to.y : this.from.y + Math.floor((this.to.y - this.from.y) * ratio);
|
|
56245
|
-
this.params.table.scrollTop = y;
|
|
56291
|
+
this.params.table.scrollTop = y, 1 === ratio && -1 !== this.to.targetRow && this.params.table.scrollToRow(this.to.targetRow, !1);
|
|
56246
56292
|
}
|
|
56247
56293
|
}
|
|
56248
56294
|
}
|
|
@@ -56274,7 +56320,9 @@
|
|
|
56274
56320
|
colDecimal && (left += colDecimal * cellRect.width), rowDecimal && (top += rowDecimal * cellRect.height);
|
|
56275
56321
|
const to = {
|
|
56276
56322
|
x: isNumber$2(col) ? left - this.table.getFrozenColsWidth() : this.table.scrollLeft,
|
|
56277
|
-
y: isNumber$2(row) ? top - this.table.getFrozenRowsHeight() : this.table.scrollTop
|
|
56323
|
+
y: isNumber$2(row) ? top - this.table.getFrozenRowsHeight() : this.table.scrollTop,
|
|
56324
|
+
targetCol: null != col ? col : -1,
|
|
56325
|
+
targetRow: null != row ? row : -1
|
|
56278
56326
|
},
|
|
56279
56327
|
duration = isBoolean$2(animationOption) ? animationOption ? 3e3 : 0 : null !== (_a = null == animationOption ? void 0 : animationOption.duration) && void 0 !== _a ? _a : 3e3,
|
|
56280
56328
|
easing = isBoolean$2(animationOption) ? animationOption ? "linear" : "" : null !== (_b = null == animationOption ? void 0 : animationOption.easing) && void 0 !== _b ? _b : "linear";
|
|
@@ -56361,7 +56409,7 @@
|
|
|
56361
56409
|
}
|
|
56362
56410
|
constructor(container, options = {}) {
|
|
56363
56411
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
|
|
56364
|
-
if (super(), this.showFrozenIcon = !0, this.version = "1.22.13-alpha.
|
|
56412
|
+
if (super(), this.showFrozenIcon = !0, this.version = "1.22.13-alpha.10", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), "node" === Env.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container, container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
|
|
56365
56413
|
this.pluginManager = new PluginManager(this, options), this.fireListeners(TABLE_EVENT_TYPE.BEFORE_INIT, {
|
|
56366
56414
|
options: options,
|
|
56367
56415
|
container: container
|
|
@@ -57290,17 +57338,18 @@
|
|
|
57290
57338
|
this.release();
|
|
57291
57339
|
}
|
|
57292
57340
|
release() {
|
|
57293
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
57341
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
|
|
57342
|
+
null === (_c = null === (_b = null === (_a = this.scenegraph) || void 0 === _a ? void 0 : _a.component) || void 0 === _b ? void 0 : _b.vScrollBar) || void 0 === _c || _c.release(), null === (_f = null === (_e = null === (_d = this.scenegraph) || void 0 === _d ? void 0 : _d.component) || void 0 === _e ? void 0 : _e.hScrollBar) || void 0 === _f || _f.release(), this.animationManager.clear(), this.animationManager.ticker.release(), null === (_j = null === (_h = null === (_g = this.scenegraph) || void 0 === _g ? void 0 : _g.stage) || void 0 === _h ? void 0 : _h.ticker) || void 0 === _j || _j.release();
|
|
57294
57343
|
const internalProps = this.internalProps;
|
|
57295
57344
|
if (this.isReleased) return;
|
|
57296
|
-
null === (
|
|
57345
|
+
null === (_l = null === (_k = internalProps.tooltipHandler) || void 0 === _k ? void 0 : _k.release) || void 0 === _l || _l.call(_k), null === (_o = null === (_m = internalProps.menuHandler) || void 0 === _m ? void 0 : _m.release) || void 0 === _o || _o.call(_m), null === (_p = super.release) || void 0 === _p || _p.call(this), this.pluginManager.release(), null === (_r = null === (_q = internalProps.handler) || void 0 === _q ? void 0 : _q.release) || void 0 === _r || _r.call(_q), this.eventManager.release(), null === (_t = null === (_s = internalProps.focusControl) || void 0 === _s ? void 0 : _s.release) || void 0 === _t || _t.call(_s), null === (_u = internalProps.legends) || void 0 === _u || _u.forEach(legend => {
|
|
57297
57346
|
null == legend || legend.release();
|
|
57298
|
-
}), null === (
|
|
57347
|
+
}), null === (_v = internalProps.title) || void 0 === _v || _v.release(), internalProps.title = null, null === (_w = internalProps.emptyTip) || void 0 === _w || _w.release(), internalProps.emptyTip = null, internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach(releaseObj => {
|
|
57299
57348
|
var _a;
|
|
57300
57349
|
return null === (_a = null == releaseObj ? void 0 : releaseObj.release) || void 0 === _a ? void 0 : _a.call(releaseObj);
|
|
57301
57350
|
}), internalProps.releaseList = null), this.scenegraph.stage.release(), this.scenegraph.proxy.release();
|
|
57302
|
-
const parentElement = null === (
|
|
57303
|
-
parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (
|
|
57351
|
+
const parentElement = null === (_x = internalProps.element) || void 0 === _x ? void 0 : _x.parentElement;
|
|
57352
|
+
parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (_0 = null === (_z = null === (_y = this.editorManager) || void 0 === _y ? void 0 : _y.editingEditor) || void 0 === _z ? void 0 : _z.onEnd) || void 0 === _0 || _0.call(_z), this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_1 = this.reactCustomLayout) || void 0 === _1 || _1.clearCache(), clearChartRenderQueue();
|
|
57304
57353
|
}
|
|
57305
57354
|
fireListeners(type, event) {
|
|
57306
57355
|
return super.fireListeners(type, event);
|
|
@@ -58469,6 +58518,7 @@
|
|
|
58469
58518
|
});
|
|
58470
58519
|
}
|
|
58471
58520
|
scrollToCell(cellAddr, animationOption) {
|
|
58521
|
+
var _a;
|
|
58472
58522
|
if (animationOption) return void this.animationManager.scrollTo(cellAddr, animationOption);
|
|
58473
58523
|
const drawRange = this.getDrawRange();
|
|
58474
58524
|
if (isValid$1(cellAddr.col) && cellAddr.col >= this.frozenColCount) {
|
|
@@ -58478,8 +58528,10 @@
|
|
|
58478
58528
|
}
|
|
58479
58529
|
if (isValid$1(cellAddr.row) && cellAddr.row >= this.frozenRowCount) {
|
|
58480
58530
|
const frozenHeight = this.getFrozenRowsHeight(),
|
|
58481
|
-
|
|
58482
|
-
|
|
58531
|
+
rowInt = Math.floor(cellAddr.row),
|
|
58532
|
+
rowFloat = cellAddr.row - rowInt;
|
|
58533
|
+
let top = this.internalProps._rowHeightsMap.getSumInRange(0, rowInt - 1);
|
|
58534
|
+
rowFloat > 0 && (top += (null !== (_a = this.internalProps._rowHeightsMap.get(rowInt)) && void 0 !== _a ? _a : this.getRowHeight(rowInt)) * rowFloat), this.scrollTop = Math.min(top - frozenHeight, this.getAllRowsHeight() - drawRange.height);
|
|
58483
58535
|
}
|
|
58484
58536
|
this.render();
|
|
58485
58537
|
}
|