@visactor/vtable 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/cjs/core/BaseTable.js +20 -14
- package/cjs/core/BaseTable.js.map +1 -1
- package/cjs/core/animation.js +5 -3
- package/cjs/core/animation.js.map +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/vrender.js.map +1 -1
- package/dist/vtable.js +101 -37
- package/dist/vtable.min.js +2 -2
- package/es/core/BaseTable.js +20 -14
- package/es/core/BaseTable.js.map +1 -1
- package/es/core/animation.js +5 -3
- package/es/core/animation.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/vrender.js.map +1 -1
- package/package.json +8 -8
package/es/core/BaseTable.js
CHANGED
|
@@ -90,7 +90,7 @@ export class BaseTable extends EventTarget {
|
|
|
90
90
|
}
|
|
91
91
|
constructor(container, options = {}) {
|
|
92
92
|
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;
|
|
93
|
-
if (super(), this.showFrozenIcon = !0, this.version = "1.22.13-alpha.
|
|
93
|
+
if (super(), this.showFrozenIcon = !0, this.version = "1.22.13-alpha.10", this.id = `VTable${Date.now()}`,
|
|
94
94
|
this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200),
|
|
95
95
|
"node" === Env.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container,
|
|
96
96
|
container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
|
|
@@ -975,26 +975,29 @@ export class BaseTable extends EventTarget {
|
|
|
975
975
|
this.release();
|
|
976
976
|
}
|
|
977
977
|
release() {
|
|
978
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
978
|
+
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;
|
|
979
|
+
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(),
|
|
980
|
+
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(),
|
|
981
|
+
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();
|
|
979
982
|
const internalProps = this.internalProps;
|
|
980
983
|
if (this.isReleased) return;
|
|
981
|
-
null === (
|
|
982
|
-
null === (
|
|
983
|
-
null === (
|
|
984
|
-
null === (
|
|
985
|
-
this.eventManager.release(), null === (
|
|
986
|
-
null === (
|
|
984
|
+
null === (_l = null === (_k = internalProps.tooltipHandler) || void 0 === _k ? void 0 : _k.release) || void 0 === _l || _l.call(_k),
|
|
985
|
+
null === (_o = null === (_m = internalProps.menuHandler) || void 0 === _m ? void 0 : _m.release) || void 0 === _o || _o.call(_m),
|
|
986
|
+
null === (_p = super.release) || void 0 === _p || _p.call(this), this.pluginManager.release(),
|
|
987
|
+
null === (_r = null === (_q = internalProps.handler) || void 0 === _q ? void 0 : _q.release) || void 0 === _r || _r.call(_q),
|
|
988
|
+
this.eventManager.release(), null === (_t = null === (_s = internalProps.focusControl) || void 0 === _s ? void 0 : _s.release) || void 0 === _t || _t.call(_s),
|
|
989
|
+
null === (_u = internalProps.legends) || void 0 === _u || _u.forEach((legend => {
|
|
987
990
|
null == legend || legend.release();
|
|
988
|
-
})), null === (
|
|
989
|
-
null === (
|
|
991
|
+
})), null === (_v = internalProps.title) || void 0 === _v || _v.release(), internalProps.title = null,
|
|
992
|
+
null === (_w = internalProps.emptyTip) || void 0 === _w || _w.release(), internalProps.emptyTip = null,
|
|
990
993
|
internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach((releaseObj => {
|
|
991
994
|
var _a;
|
|
992
995
|
return null === (_a = null == releaseObj ? void 0 : releaseObj.release) || void 0 === _a ? void 0 : _a.call(releaseObj);
|
|
993
996
|
})), internalProps.releaseList = null), this.scenegraph.stage.release(), this.scenegraph.proxy.release();
|
|
994
|
-
const parentElement = null === (
|
|
997
|
+
const parentElement = null === (_x = internalProps.element) || void 0 === _x ? void 0 : _x.parentElement;
|
|
995
998
|
parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element),
|
|
996
|
-
null === (
|
|
997
|
-
this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (
|
|
999
|
+
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),
|
|
1000
|
+
this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_1 = this.reactCustomLayout) || void 0 === _1 || _1.clearCache(),
|
|
998
1001
|
clearChartRenderQueue();
|
|
999
1002
|
}
|
|
1000
1003
|
fireListeners(type, event) {
|
|
@@ -2108,6 +2111,7 @@ export class BaseTable extends EventTarget {
|
|
|
2108
2111
|
});
|
|
2109
2112
|
}
|
|
2110
2113
|
scrollToCell(cellAddr, animationOption) {
|
|
2114
|
+
var _a;
|
|
2111
2115
|
if (animationOption) return void this.animationManager.scrollTo(cellAddr, animationOption);
|
|
2112
2116
|
const drawRange = this.getDrawRange();
|
|
2113
2117
|
if (isValid(cellAddr.col) && cellAddr.col >= this.frozenColCount) {
|
|
@@ -2115,7 +2119,9 @@ export class BaseTable extends EventTarget {
|
|
|
2115
2119
|
this.scrollLeft = Math.min(left - frozenWidth, this.getAllColsWidth() - drawRange.width);
|
|
2116
2120
|
}
|
|
2117
2121
|
if (isValid(cellAddr.row) && cellAddr.row >= this.frozenRowCount) {
|
|
2118
|
-
const frozenHeight = this.getFrozenRowsHeight(),
|
|
2122
|
+
const frozenHeight = this.getFrozenRowsHeight(), rowInt = Math.floor(cellAddr.row), rowFloat = cellAddr.row - rowInt;
|
|
2123
|
+
let top = this.internalProps._rowHeightsMap.getSumInRange(0, rowInt - 1);
|
|
2124
|
+
rowFloat > 0 && (top += (null !== (_a = this.internalProps._rowHeightsMap.get(rowInt)) && void 0 !== _a ? _a : this.getRowHeight(rowInt)) * rowFloat),
|
|
2119
2125
|
this.scrollTop = Math.min(top - frozenHeight, this.getAllRowsHeight() - drawRange.height);
|
|
2120
2126
|
}
|
|
2121
2127
|
this.render();
|