NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/base.js
2023-09-14 14:47:11 +08:00

57 lines
1.4 KiB
Java

import { __extends } from "tslib";
import EE from '@antv/event-emitter';
/**
* G2 Chart、View、Geometry 以及 Element 等的基类,提供事件以及一些通用的方法。
*/
var Base = /** @class */ (function (_super) {
__extends(Base, _super);
function Base(cfg) {
var _this = _super.call(this) || this;
/** 标识对象是否已销毁 */
_this.destroyed = false;
var _a = cfg.visible, visible = _a === void 0 ? true : _a;
_this.visible = visible;
return _this;
}
/**
* 显示。
*/
Base.prototype.show = function () {
var visible = this.visible;
if (!visible) {
this.visible = true;
this.changeVisible(true);
}
};
/**
* 隐藏。
*/
Base.prototype.hide = function () {
var visible = this.visible;
if (visible) {
this.visible = false;
this.changeVisible(false);
}
};
/**
* 销毁。
*/
Base.prototype.destroy = function () {
this.off();
this.destroyed = true;
};
/**
* 显示或者隐藏。
* @param visible
* @returns
*/
Base.prototype.changeVisible = function (visible) {
if (this.visible === visible) {
return;
}
this.visible = visible;
};
return Base;
}(EE));
export default Base;
//# sourceMappingURL=base.js.map