1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { __extends } from "tslib";
- import EE from '@antv/event-emitter';
- import { mix } from '../util/util';
- var Base = /** @class */ (function (_super) {
- __extends(Base, _super);
- function Base(cfg) {
- var _this = _super.call(this) || this;
- /**
- * 是否被销毁
- * @type {boolean}
- */
- _this.destroyed = false;
- var defaultCfg = _this.getDefaultCfg();
- _this.cfg = mix(defaultCfg, cfg);
- return _this;
- }
- /**
- * @protected
- * 默认的配置项
- * @returns {object} 默认的配置项
- */
- Base.prototype.getDefaultCfg = function () {
- return {};
- };
- // 实现接口的方法
- Base.prototype.get = function (name) {
- return this.cfg[name];
- };
- // 实现接口的方法
- Base.prototype.set = function (name, value) {
- this.cfg[name] = value;
- };
- // 实现接口的方法
- Base.prototype.destroy = function () {
- this.cfg = {
- destroyed: true,
- };
- this.off();
- this.destroyed = true;
- };
- return Base;
- }(EE));
- export default Base;
- //# sourceMappingURL=base.js.map
|