MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {}; MWF.xDesktop.requireApp("process.FormDesigner", "Module.$Element", null, false); MWF.xApplication.process.FormDesigner.Module.Log = MWF.FCLog = new Class({ Extends: MWF.FC$Element, Implements: [Options, Events], options: { "style": "default", "propertyPath": "../x_component_process_FormDesigner/Module/Log/log.html" }, initialize: function(form, options){ this.setOptions(options); this.path = "../x_component_process_FormDesigner/Module/Log/"; this.cssPath = "../x_component_process_FormDesigner/Module/Log/"+this.options.style+"/css.wcss"; this._loadCss(); this.moduleType = "element"; this.moduleName = "log"; this.form = form; this.container = null; this.containerNode = null; }, load : function(json, node, parent){ this.json = json; this.node= node; this.node.store("module", this); //this.node.empty(); this.node.setStyles(this.css.moduleNode); this._loadNodeStyles(); this._initModule(); this._loadTreeNode(parent); this.setCustomStyles(); this.parentContainer = this.treeNode.parentNode.module; this._setEditStyle_custom("id"); this.parseModules(); this.json.moduleName = this.moduleName; }, clearTemplateStyles: function(styles){ if (styles){ if (styles.properties) this.removeStyles(styles.properties, "tableProperties"); if (styles.tableStyles) this.removeStyles(styles.tableStyles, "tableStyles"); if (styles.titleStyles) this.removeStyles(styles.titleStyles, "titleTdStyles"); if (styles.contentStyles) this.removeStyles(styles.contentStyles, "contentTdStyles"); } }, setTemplateStyles: function(styles){ if (styles.properties) this.copyStyles(styles.properties, "tableProperties"); if (styles.tableStyles) this.copyStyles(styles.tableStyles, "tableStyles"); if (styles.titleStyles) this.copyStyles(styles.titleStyles, "titleTdStyles"); if (styles.contentStyles) this.copyStyles(styles.contentStyles, "contentTdStyles"); }, _createMoveNode: function(){ this.moveNode = new Element("div", { "MWFType": "log", "id": this.json.id, "styles": this.css.moduleNodeMove, "events": { "selectstart": function(){ return false; } } }).inject(this.form.container); }, _createNode: function(){ this.node = this.moveNode.clone(true, true); this.node.setStyles(this.css.moduleNode); this.node.set("id", this.json.id); this.node.addEvent("selectstart", function(){ return false; }); this._createIcon(); }, _createIcon: function(){ this.iconNode = new Element("div", { "styles": this.css.iconNode }).inject(this.node); new Element("div", { "styles": this.css.iconNodeIcon }).inject(this.iconNode); new Element("div", { "styles": this.css.iconNodeText, "text": "LOG" }).inject(this.iconNode); }, _loadNodeStyles: function(){ this.iconNode = this.node.getElement("div").setStyles(this.css.iconNode); this.iconNode.getFirst("div").setStyles(this.css.iconNodeIcon); this.iconNode.getLast("div").setStyles(this.css.iconNodeText); }, // _preprocessingModuleData: function(){ // this.node.clearStyles(); // this.json.recoveryStyles = Object.clone(this.json.styles); // if (this.json.recoveryStyles) Object.each(this.json.recoveryStyles, function(value, key){ // if ((value.indexOf("x_processplatform_assemble_surface")!=-1 || value.indexOf("x_portal_assemble_surface")!=-1)){ // //需要运行时处理 // }else{ // this.node.setStyle(key, value); // delete this.json.styles[key]; // } // }.bind(this)); // this.node.empty(); // this.json.preprocessing = "y"; // }, // _recoveryModuleData: function(){ // if (this.json.recoveryStyles) this.json.styles = this.json.recoveryStyles; // this.json.recoveryStyles = null; // this._createIcon(); // } });