123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- 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();
- // }
- });
|