123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- import { __extends } from "tslib";
- import * as zrUtil from 'zrender/lib/core/util.js';
- var TYPE_DELIMITER = '.';
- var IS_CONTAINER = '___EC__COMPONENT__CONTAINER___';
- var IS_EXTENDED_CLASS = '___EC__EXTENDED_CLASS___';
- export function parseClassType(componentType) {
- var ret = {
- main: '',
- sub: ''
- };
- if (componentType) {
- var typeArr = componentType.split(TYPE_DELIMITER);
- ret.main = typeArr[0] || '';
- ret.sub = typeArr[1] || '';
- }
- return ret;
- }
- function checkClassType(componentType) {
- zrUtil.assert(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(componentType), 'componentType "' + componentType + '" illegal');
- }
- export function isExtendedClass(clz) {
- return !!(clz && clz[IS_EXTENDED_CLASS]);
- }
- export function enableClassExtend(rootClz, mandatoryMethods) {
- rootClz.$constructor = rootClz; // FIXME: not necessary?
- rootClz.extend = function (proto) {
- if (process.env.NODE_ENV !== 'production') {
- zrUtil.each(mandatoryMethods, function (method) {
- if (!proto[method]) {
- console.warn('Method `' + method + '` should be implemented' + (proto.type ? ' in ' + proto.type : '') + '.');
- }
- });
- }
- var superClass = this;
- var ExtendedClass;
- if (isESClass(superClass)) {
- ExtendedClass = function (_super) {
- __extends(class_1, _super);
- function class_1() {
- return _super.apply(this, arguments) || this;
- }
- return class_1;
- }(superClass);
- } else {
-
-
-
-
-
-
-
- ExtendedClass = function () {
- (proto.$constructor || superClass).apply(this, arguments);
- };
- zrUtil.inherits(ExtendedClass, this);
- }
- zrUtil.extend(ExtendedClass.prototype, proto);
- ExtendedClass[IS_EXTENDED_CLASS] = true;
- ExtendedClass.extend = this.extend;
- ExtendedClass.superCall = superCall;
- ExtendedClass.superApply = superApply;
- ExtendedClass.superClass = superClass;
- return ExtendedClass;
- };
- }
- function isESClass(fn) {
- return zrUtil.isFunction(fn) && /^class\s/.test(Function.prototype.toString.call(fn));
- }
- export function mountExtend(SubClz, SupperClz) {
- SubClz.extend = SupperClz.extend;
- }
- var classBase = Math.round(Math.random() * 10);
- export function enableClassCheck(target) {
- var classAttr = ['__\0is_clz', classBase++].join('_');
- target.prototype[classAttr] = true;
- if (process.env.NODE_ENV !== 'production') {
- zrUtil.assert(!target.isInstance, 'The method "is" can not be defined.');
- }
- target.isInstance = function (obj) {
- return !!(obj && obj[classAttr]);
- };
- }
- function superCall(context, methodName) {
- var args = [];
- for (var _i = 2; _i < arguments.length; _i++) {
- args[_i - 2] = arguments[_i];
- }
- return this.superClass.prototype[methodName].apply(context, args);
- }
- function superApply(context, methodName, args) {
- return this.superClass.prototype[methodName].apply(context, args);
- }
- export function enableClassManagement(target) {
-
- var storage = {};
- target.registerClass = function (clz) {
-
-
-
-
-
- var componentFullType = clz.type || clz.prototype.type;
- if (componentFullType) {
- checkClassType(componentFullType);
-
- clz.prototype.type = componentFullType;
- var componentTypeInfo = parseClassType(componentFullType);
- if (!componentTypeInfo.sub) {
- if (process.env.NODE_ENV !== 'production') {
- if (storage[componentTypeInfo.main]) {
- console.warn(componentTypeInfo.main + ' exists.');
- }
- }
- storage[componentTypeInfo.main] = clz;
- } else if (componentTypeInfo.sub !== IS_CONTAINER) {
- var container = makeContainer(componentTypeInfo);
- container[componentTypeInfo.sub] = clz;
- }
- }
- return clz;
- };
- target.getClass = function (mainType, subType, throwWhenNotFound) {
- var clz = storage[mainType];
- if (clz && clz[IS_CONTAINER]) {
- clz = subType ? clz[subType] : null;
- }
- if (throwWhenNotFound && !clz) {
- throw new Error(!subType ? mainType + '.' + 'type should be specified.' : 'Component ' + mainType + '.' + (subType || '') + ' is used but not imported.');
- }
- return clz;
- };
- target.getClassesByMainType = function (componentType) {
- var componentTypeInfo = parseClassType(componentType);
- var result = [];
- var obj = storage[componentTypeInfo.main];
- if (obj && obj[IS_CONTAINER]) {
- zrUtil.each(obj, function (o, type) {
- type !== IS_CONTAINER && result.push(o);
- });
- } else {
- result.push(obj);
- }
- return result;
- };
- target.hasClass = function (componentType) {
-
- var componentTypeInfo = parseClassType(componentType);
- return !!storage[componentTypeInfo.main];
- };
-
- target.getAllClassMainTypes = function () {
- var types = [];
- zrUtil.each(storage, function (obj, type) {
- types.push(type);
- });
- return types;
- };
-
- target.hasSubTypes = function (componentType) {
- var componentTypeInfo = parseClassType(componentType);
- var obj = storage[componentTypeInfo.main];
- return obj && obj[IS_CONTAINER];
- };
- function makeContainer(componentTypeInfo) {
- var container = storage[componentTypeInfo.main];
- if (!container || !container[IS_CONTAINER]) {
- container = storage[componentTypeInfo.main] = {};
- container[IS_CONTAINER] = true;
- }
- return container;
- }
- }
|