/** * @author windy * @version 2.0 * Created by windy on 2021/6/30 */ // 系统参数常量 !(function () { var system = { dependencies: {}, layoutOptimize: false, responsiveMode: false, workerMode: false, size: { // 尺寸 // 通用尺寸 TOOL_BAR_HEIGHT: 24, LIST_ITEM_HEIGHT: 24, TRIGGER_HEIGHT: 24, TOAST_TOP: 10, H_GAP_SIZE: "M", V_GAP_SIZE: "S" } }; // 具体尺寸还没定,先写着 var sizeMap = { "S": 10, "M": 20, "L": 24 }; var provider = function () { this.SYSTEM = system; this.setSize = function (opt) { BI.deepExtend(system, {size: opt}); }; this.setResponsiveMode = function (mode) { system.responsiveMode = !!mode; }; this.setWorkerMode = function (mode) { system.workerMode = !!mode; }; this.setLayoutOptimize = function (layoutOptimize) { system.layoutOptimize = layoutOptimize; }; this.addDependency = function (moduleId, minVersion, maxVersion) { system.dependencies[moduleId] = { min: minVersion, max: maxVersion }; }; this.addDependencies = function (moduleConfig) { BI.extend(system.dependencies, moduleConfig); }; this.$get = function () { return BI.inherit(BI.OB, { getSize: function () { var size = system.size; var H_GAP_SIZE = sizeMap[size.H_GAP_SIZE]; var V_GAP_SIZE = sizeMap[size.V_GAP_SIZE]; return BI.extend({}, size, { H_GAP_SIZE: H_GAP_SIZE, V_GAP_SIZE: V_GAP_SIZE }); }, getResponsiveMode: function () { return system.responsiveMode; }, getWorkerMode: function () { return system.workerMode; }, getLayoutOptimize: function () { return system.layoutOptimize; }, getDependencies: function () { return system.dependencies; } }); }; }; BI.provider("bi.provider.system", provider); })(); BI.prepares.push(function () { BI.SIZE_CONSANTS = BI.Providers.getProvider("bi.provider.system").getSize(); // 不再增加线型的配置了,之后不维护前置版本直接删掉,都用实线连接线 BI.STYLE_CONSTANTS = {}; BI.STYLE_CONSTANTS.LINK_LINE_TYPE = BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT === 24 ? "dashed" : "solid"; });