| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220 |
- MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {};
- MWF.require("MWF.widget.Common", null, false);
- MWF.xApplication.process.FormDesigner.Module.Form = MWF.FCForm = new Class({
- Extends: MWF.widget.Common,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "propertyPath": "../x_component_process_FormDesigner/Module/Form/form.html",
- "mode": "PC",
- "fields": ["Calendar", "Checkbox", "Datagrid", "Datagrid$Title", "Datagrid$Data", "Htmleditor", "Number", "Office", "Orgfield", "org", "Personfield", "Radio", "Select", "Textarea", "Textfield"],
- "injectActions" : [
- {
- "name" : "top",
- "styles" : "injectActionTop",
- "event" : "click",
- "action" : "injectTop",
- "title": MWF.APPFD.LP.formAction["insertTop"]
- },
- {
- "name" : "bottom",
- "styles" : "injectActionBottom",
- "event" : "click",
- "action" : "injectBottom",
- "title": MWF.APPFD.LP.formAction["insertBottom"]
- }
- ]
- },
-
- initialize: function(designer, container, options){
- this.setOptions(options);
-
- this.path = "../x_component_process_FormDesigner/Module/Form/";
- this.cssPath = "../x_component_process_FormDesigner/Module/Form/"+this.options.style+"/css.wcss";
- this._loadCss();
-
- this.container = null;
- this.form = this;
- this.moduleType = "form";
-
- this.moduleList = [];
- this.moduleNodeList = [];
-
- this.moduleContainerNodeList = [];
- this.moduleElementNodeList = [];
- this.moduleComponentNodeList = [];
- // this.moduleContainerList = [];
- this.dataTemplate = {};
-
- this.designer = designer;
- this.container = container;
-
- this.selectedModules = [];
- },
- reload: function(data){
- this.moduleList.each(function(module){
- if (module.property){
- module.property.destroy();
- }
- }.bind(this));
- if (this.property) this.property.destroy();
- this.property = null;
- this.moduleList = [];
- this.moduleNodeList = [];
- this.moduleContainerNodeList = [];
- this.moduleElementNodeList = [];
- this.moduleComponentNodeList = [];
- this.dataTemplate = {};
- this.selectedModules = [];
- this.container.empty();
- if (this.treeNode){
- this.domTree.empty();
- this.domTree.node.destroy();
- this.domTree = null;
- this.treeNode = null;
- }
- this.currentSelectedModule = null;
- this.propertyMultiTd = null;
- if (this.autoSaveTimerID) window.clearInterval(this.autoSaveTimerID);
- this.load(data);
- this.selected();
- },
- load : function(data){
- this.data = data;
- this.json = data.json;
- this.html = data.html;
- this.json.mode = this.options.mode;
- if (!this.json.css) this.json.css = {"code":""};
- if (this.options.mode==="Mobile"){
- if (!this.json.defaultTools){
- this.json.defaultTools = o2.JSON.get(this.path+"toolbars.json", null,false);
- }
- if (!this.json.tools) this.json.tools=[];
- }
- this.isNewForm = (this.json.id) ? false : true;
- if (this.isNewForm) this.checkUUID();
- if(this.designer.application) this.data.json.applicationName = this.designer.application.name;
- if(this.designer.application) this.data.json.application = this.designer.application.id;
- this.container.set("html", this.html);
- this.loadStylesList(function(){
- var oldStyleValue = "";
- if ((!this.json.formStyleType) || !this.stylesList[this.json.formStyleType]) this.json.formStyleType="blue-simple";
- if (this.options.mode=="Mobile"){
- if (this.json.formStyleType != "defaultMobile"){
- //oldStyleValue = this.json.formStyleType;
- //this.json.formStyleType = "defaultMobile";
- var styles = this.stylesList[this.json.formStyleType];
- if( !styles || typeOf(styles.mode)!=="array" || !styles.mode.contains( "mobile" ) ){
- oldStyleValue = this.json.formStyleType;
- this.json.formStyleType = "defaultMobile";
- }
- }
- }
- this.loadTemplateStyles( this.stylesList[this.json.formStyleType].file, this.stylesList[this.json.formStyleType].extendFile, function( templateStyles ){
- //this.templateStyles = (this.stylesList && this.json.formStyleType) ? this.stylesList[this.json.formStyleType] : null;
- this.templateStyles = templateStyles;
- this.loadDomModules();
- if (this.json.formStyleType && this.templateStyles && this.templateStyles["form"]){
- this.setTemplateStyles(this.templateStyles["form"]);
- }
- this.setCustomStyles();
- this.node.setProperties(this.json.properties);
- this.setNodeEvents();
- if (this.options.mode=="Mobile"){
- if (oldStyleValue) this._setEditStyle("formStyleType", null, oldStyleValue);
- }
- this.selected();
- this.autoSave();
- this.designer.addEvent("queryClose", function(){
- if (this.autoSaveTimerID) window.clearInterval(this.autoSaveTimerID);
- }.bind(this));
- }.bind(this));
- }.bind(this));
- },
- removeStyles: function(from, to){
- if (this.json[to]){
- Object.each(from, function(style, key){
- if (this.json[to][key] && this.json[to][key]==style){
- delete this.json[to][key];
- }
- }.bind(this));
- }
- },
- copyStyles: function(from, to){
- if (!this.json[to]) this.json[to] = {};
- Object.each(from, function(style, key){
- if (!this.json[to][key]) this.json[to][key] = style;
- }.bind(this));
- },
- clearTemplateStyles: function(styles){
- debugger;
- if (styles){
- if (styles.styles) this.removeStyles(styles.styles, "styles");
- if (styles.properties) this.removeStyles(styles.properties, "properties");
- }
- if( this.json.confirmStyle )delete this.json.confirmStyle;
- if( this.json.dialogStyle )delete this.json.dialogStyle;
- if( this.json.attachmentStyle )delete this.json.attachmentStyle;
- if( this.json.hideModuleIcon )delete this.json.hideModuleIcon;
- if( this.json.nodeStyleWithhideModuleIcon )delete this.json.nodeStyleWithhideModuleIcon;
- if( this.json.confirmIcon )delete this.json.confirmIcon;
- if( this.json.submitedDlgUseNotice )delete this.json.submitedDlgUseNotice;
- if( this.json.submitedDlgStyle )delete this.json.submitedDlgStyle;
- if( this.json.selectorStyle )delete this.json.selectorStyle;
- if( this.json.errorStyle )delete this.json.errorStyle;
- if( this.json.noticeStyle )delete this.json.noticeStyle;
- if( this.json.noticeErrorStyle )delete this.json.noticeErrorStyle;
- if( this.json.noticeSuccessStyle )delete this.json.noticeSuccessStyle;
- if( this.json.noticeOkStyle )delete this.json.noticeOkStyle;
- if( this.json.noticeNoticeStyle )delete this.json.noticeNoticeStyle;
- },
- setTemplateStyles: function(styles){
- debugger;
- if (styles.styles) this.copyStyles(styles.styles, "styles");
- if (styles.properties) this.copyStyles(styles.properties, "properties");
- //if( styles.confirmStyle )this.json.confirmStyle = styles.confirmStyle;
- //if( styles.dialogStyle )this.json.dialogStyle = styles.dialogStyle;
- //if( styles.selectorStyle )this.json.selectorStyle = styles.selectorStyle;
- },
- loadTemplateStyles : function( file, extendFile, callback ){
- if( !file ){
- if (callback) callback({});
- return;
- }
- this.templateStylesList = this.templateStylesList || {};
- if( this.templateStylesList[file] ){
- if (callback) callback(this.templateStylesList[file]);
- return;
- }
- this.loadTemplateStyleFile( file, function( json_file ){
- this.loadTemplateExtendStyleFile( extendFile, function( json_extend ){
- this.templateStylesList[file] = Object.merge( json_file, json_extend );
- if (callback) callback(this.templateStylesList[file]);
- }.bind(this))
- }.bind(this))
- },
- loadTemplateStyleFile : function(file, callback ){
- if( !file ){
- if (callback) callback({});
- return;
- }
- var stylesUrl = "../x_component_process_FormDesigner/Module/Form/skin/"+file;
- MWF.getJSON(stylesUrl,{
- "onSuccess": function(responseJSON){
- //this.templateStylesList[file] = responseJSON;
- if (callback) callback(responseJSON);
- }.bind(this),
- "onRequestFailure": function(){
- if (callback) callback({});
- }.bind(this),
- "onError": function(){
- if (callback) callback({});
- }.bind(this)
- }
- );
- },
- loadTemplateExtendStyleFile : function(extendFile, callback ){
- if( !extendFile ){
- if (callback) callback({});
- return;
- }
- var stylesUrl = "../x_component_process_FormDesigner/Module/Form/skin/"+extendFile;
- MWF.getJSON(stylesUrl,{
- "onSuccess": function(responseJSON){
- //this.templateStylesList[file] = responseJSON;
- if (callback) callback(responseJSON);
- }.bind(this),
- "onRequestFailure": function(){
- if (callback) callback({});
- }.bind(this),
- "onError": function(){
- if (callback) callback({});
- }.bind(this)
- }
- );
- },
- loadStylesList: function(callback){
- //var stylesUrl = "../x_component_process_FormDesigner/Module/Form/template/"+((this.options.mode=="Mobile") ? "mobileStyles": "styles")+".json";
- //var stylesUrl = "../x_component_process_FormDesigner/Module/Form/template/"+((this.options.mode=="Mobile") ? "styles": "styles")+".json";
- var configUrl = "../x_component_process_FormDesigner/Module/Form/skin/config.json";
- MWF.getJSON(configUrl,{
- "onSuccess": function(responseJSON){
- this.stylesList = responseJSON;
- if (callback) callback(this.stylesList);
- }.bind(this),
- "onRequestFailure": function(){
- this.stylesList = {};
- if (callback) callback(this.stylesList);
- }.bind(this),
- "onError": function(){
- this.stylesList = {};
- if (callback) callback(this.stylesList);
- }.bind(this)
- }
- );
- },
- autoSave: function(){
- this.autoSaveCheckNode = this.designer.formToolbarNode.getElement("#MWFFormAutoSaveCheck");
- if (this.autoSaveCheckNode){
- this.autoSaveTimerID = window.setInterval(function(){
- if (this.autoSaveCheckNode.get("checked")){
- this.save();
- }
- }.bind(this), 60000);
- }
- },
- checkUUID: function(){
- this.designer.actions.getUUID(function(id){
- this.json.id = id;
- }.bind(this));
- },
- loadDomModules: function(){
- this.node = this.container.getFirst();
- this.node.set("id", this.json.id);
- this.node.setStyles((this.options.mode==="Mobile") ? this.css.formMobileNode : this.css.formNode);
- this.node.store("module", this);
- var id = this.json.id.replace(/\-/g, "");
- this.node.addClass("css"+id);
- this.reloadCss();
- var y = this.container.getStyle("height");
- y = (y) ? y.toInt()-2 : this.container.getSize().y-2;
- this.node.setStyle("min-height", ""+y+"px");
- this.designer.addEvent("resize", function(){
- var y = this.container.getStyle("height");
- y = (y) ? y.toInt()-2 : this.container.getSize().y-2;
- this.node.setStyle("min-height", ""+y+"px");
- }.bind(this));
- this.loadDomTree();
- },
-
- loadDomTree: function(){
- MWF.require("MWF.widget.Tree", function(){
- this.domTree = new MWF.widget.Tree(this.designer.propertyDomArea, {"style": "domtree"});
- this.domTree.load();
-
- this.createFormTreeNode();
- this.parseModules(this, this.node);
- }.bind(this));
- },
- createFormTreeNode: function(){
- var text = "<"+this.json.type+"> "+this.json.name+" ["+this.options.mode+"] ";
- var o = {
- "expand": true,
- "title": this.json.id,
- "text": "<"+this.json.type+"> "+this.json.name+" ["+this.options.mode+"] ",
- "icon": (this.options.mode=="Mobile") ? "mobile.png": "pc.png"
- };
- o.action = function(){
- if (this.module) this.module.selected();
- };
- this.treeNode = this.domTree.appendChild(o);
- this.treeNode.setText(text);
- this.treeNode.module = this;
- },
- parseModules: function(parent, dom){
- var subDom = dom.getFirst();
- while (subDom){
- if (subDom.get("MWFtype")){
- // var module = subDom.retrieve("module");
- // alert(subDom.get("id")+": "+module);
- // if (!module){
- var json = this.getDomjson(subDom);
- module = this.loadModule(json, subDom, parent);
- // }
- // if (module.moduleType=="container") this.parseModules(module, subDom);
- // }else{
- // this.parseModules(parent, subDom);
- }
- // else if (subDom.getFirst()){
- // subDom = subDom.getFirst();
- // this.parseModules(parent, subDom);
- // }else{
- // subDom = subDom.getNext();
- // }
- subDom = subDom.getNext();
- }
- },
-
- getDomjson: function(dom){
- var mwfType = dom.get("MWFtype");
- switch (mwfType) {
- case "form":
- return this.json;
- case "":
- return null;
- default:
- var id = dom.get("id");
- if (id){
- return this.json.moduleList[id];
- }else{
- return null;
- }
- }
- },
-
- loadModule: function(json, dom, parent){
- if( !json ){
- debugger;
- var module;
- var className = ( dom.get("MWFType") || "div" ).capitalize();
- this.getTemplateData(className, function(data){
- var moduleData = Object.clone(data);
- moduleData.id = dom.get("id");
- this.json.moduleList[dom.get("id")] = moduleData;
- module = new MWF["FC"+className](this);
- module.load(moduleData, dom, parent);
- }.bind(this), false);
- return module;
- }else if( MWF["FC"+json.type] ){
- var module = new MWF["FC"+json.type](this);
- module.load(json, dom, parent);
- //this.moduleList.push(module);
- return module;
- }else{
- var module = new MWF["FCDiv"](this);
- module.load(json, dom, parent);
- //this.moduleList.push(module);
- return module;
- }
- },
-
- setNodeEvents: function(){
- this.node.addEvent("click", function(e){
- this.selected();
- }.bind(this));
- // this._controlKeyEventFun = function(e){
- // if (e.control){
- // this.controlMode = true;
- // if (this.copyNode) this.copyNode.destroy();
- // }else{
- // this.controlMode = false;
- // // var copyNode = this._getCopyNode(this);
- // // copyNode.inject(this.node, "before");
- // }
- // }.bind(this);
- this.designer.content.addEvent("keydown", function(e){
- if (this.moveModule){
- if (e.control){
- this.moveModule._setControlMode(true);
- }else{
- this.moveModule._setControlMode(false);
- }
- }
- }.bind(this));
- this.designer.content.addEvent("keyup", function(e){
- if (this.moveModule){
- if (e.control){
- this.moveModule._setControlMode(true);
- }else{
- this.moveModule._setControlMode(false);
- }
- }
- }.bind(this));
- },
- createModuleImmediately: function( className, parentModule, relativeNode, position, selectDisabled, async ){
- var module;
- this.getTemplateData(className, function(data){
- var moduleData = Object.clone(data);
- module = new MWF["PC"+className](this);
- if( parentModule ){
- module.onDragModule = parentModule;
- if (!parentModule.Component) module.inContainer = parentModule;
- module.parentContainer = parentModule;
- module.nextModule = null;
- }
- module.createImmediately(moduleData, relativeNode, position, selectDisabled);
- }.bind(this), async);
- return module;
- },
- createModule: function(className, e){
- this.getTemplateData(className, function(data){
- var moduleData = Object.clone(data);
- var newTool = new MWF["FC"+className](this);
- newTool.create(moduleData, e);
- }.bind(this));
- },
- getTemplateData: function(className, callback , async){
- if (this.dataTemplate[className]){
- if (callback) callback(this.dataTemplate[className]);
- }else{
- var templateUrl = "../x_component_process_FormDesigner/Module/"+className+"/template.json";
- MWF.getJSON(templateUrl, function(responseJSON, responseText){
- this.dataTemplate[className] = responseJSON;
- if (callback) callback(responseJSON);
- }.bind(this), async);
- }
- },
- selected: function(){
- if (this.currentSelectedModule){
- if (this.currentSelectedModule==this){
- return true;
- }else{
- this.currentSelectedModule.unSelected();
- }
- }
- if (this.propertyMultiTd){
- this.propertyMultiTd.hide();
- this.propertyMultiTd = null;
- }
- this.unSelectedMulti();
- this.currentSelectedModule = this;
-
- if (this.treeNode){
- this.treeNode.selectNode();
- }
-
- this.showProperty();
- // this.isFocus = true;
- },
- unSelectedMulti: function(){
- while (this.selectedModules.length){
- this.selectedModules[0].unSelectedMulti();
- }
- if (this.multimoduleActionsArea) this.multimoduleActionsArea.setStyle("display", "none");
- },
- unSelectAll: function(){
-
- },
- _beginSelectMulti: function(){
- if (this.currentSelectedModule) this.currentSelectedModule.unSelected();
- this.unSelectedMulti();
- this.noSelected = true;
- },
- _completeSelectMulti: function(){
- if (this.selectedModules.length<2){
- this.selectedModules[0].selected();
- }else{
- this._showMultiActions();
- }
- },
- createMultimoduleActionsArea: function(){
- this.multimoduleActionsArea = new Element("div", {
- styles: {
- "display": "none",
- // "width": 18*this.options.actions.length,
- "position": "absolute",
- "background-color": "#F1F1F1",
- "padding": "1px",
- "padding-right": "0px",
- "border": "1px solid #AAA",
- "box-shadow": "0px 2px 5px #999",
- "z-index": 10001
- }
- }).inject(this.form.container, "after");
- },
- _showMultiActions: function(){
- if (!this.multimoduleActionsArea) this.createMultimoduleActionsArea();
- var firstModule = this._getFirstMultiSelectedModule();
- if (firstModule){
- // var module = firstModule.module;
- var y = firstModule.position.y-25;
- var x = firstModule.position.x;
- this.multimoduleActionsArea.setPosition({"x": x, "y": y});
- this.multimoduleActionsArea.setStyle("display", "block");
- }
- },
-
- _getFirstMultiSelectedModule: function(){
- var firstModule = null;
- this.selectedModules.each(function(module){
- var position = module.node.getPosition(module.form.node.getOffsetParent());
- if (!firstModule){
- firstModule = {"module": module, "position": position};
- }else{
- if (position.y<firstModule.position.y){
- firstModule = {"module": module, "position": position};
- }else if (position.y==firstModule.position.y){
- if (position.x<firstModule.position.x){
- firstModule = {"module": module, "position": position};
- }
- }
- }
- });
- return firstModule;
- },
-
-
- showProperty: function(){
- if (!this.property){
- this.property = new MWF.xApplication.process.FormDesigner.Property(this, this.designer.propertyContentArea, this.designer, {
- "path": this.options.propertyPath,
- "onPostLoad": function(){
- this.property.show();
- }.bind(this)
- });
- this.property.load();
- }else{
- this.property.show();
- }
- },
- hideProperty: function(){
- if (this.property) this.property.hide();
- },
-
- unSelected: function(){
- this.currentSelectedModule = null;
- this.hideProperty();
- },
-
- _dragIn: function(module){
- if (!this.Component) module.inContainer = this;
- module.parentContainer = this;
- this.node.setStyles({"border": "1px solid #ffa200"});
- var copyNode = module._getCopyNode();
- copyNode.inject(this.node);
- },
- _dragOut: function(module){
- module.inContainer = null;
- module.parentContainer = null;
- this.node.setStyles((this.options.mode==="Mobile") ? this.css.formMobileNode : this.css.formNode);
- this.node.setStyles(this.json.styles);
- var copyNode = module._getCopyNode();
- copyNode.setStyle("display", "none");
- },
- _dragDrop: function(module, flag){
- var f = flag || !(new Event(event)).control;
- if( f ){
- this.node.setStyles((this.options.mode==="Mobile") ? this.css.formMobileNode : this.css.formNode);
- this.node.setStyles(this.json.styles);
- }
- //this._hideInjectAction();
- },
- _showInjectAction : function( module ){
- if ( module.moveNode ){
- module.moveNode.setStyle("display","none");
- }
- //debugger;
- this.draggingModule = module;
- //if( !this.node.getFirst() ){
- // this.inject( "top" );
- // return;
- //}
- if( !this.injectActionArea )this._createInjectAction();
- this.injectActionArea.setStyle("display","block");
- this._setInjectActionAreaPosition();
- this.injectActionEffect = new Fx.Morph(this.injectActionArea, {
- duration: 200,
- transition: Fx.Transitions.Sine.easeOut
- });
- this.injectActionEffect.start(this.form.css.injectActionArea_to);
- },
- _hideInjectAction : function(){
- this.draggingModule = null;
- if( this.injectActionArea ){
- this.injectActionArea.setStyle("display","none");
- }
- },
- _createInjectAction : function(){
- var css = this.form.css;
- if( !this.injectActionArea ){
- this.injectActionArea = new Element("div", { styles: css.injectActionArea }).inject(this.form.container, "after");
- this.injectActionTopBGNode = new Element("div", { styles : css.injectActionTopBGNode }).inject( this.injectActionArea );
- this.injectActionLeftBGNode = new Element("div", { styles : css.injectActionLeftBGNode }).inject( this.injectActionArea );
- this.injectActionRightBGNode = new Element("div", { styles : css.injectActionRightBGNode }).inject( this.injectActionArea );
- this.injectActionBottomBGNode = new Element("div", { styles : css.injectActionBottomBGNode }).inject( this.injectActionArea );
- var injectActions = {};
- this.options.injectActions.each( function( action ){
- injectActions[ action.name ] = action;
- });
- if( injectActions.before )this._createInjectActionNode( injectActions.before, this.injectActionTopBGNode );
- if( injectActions.top )this._createInjectActionNode( injectActions.top, this.injectActionLeftBGNode );
- if( injectActions.bottom )this._createInjectActionNode( injectActions.bottom, this.injectActionRightBGNode );
- if( injectActions.after )this._createInjectActionNode( injectActions.after, this.injectActionBottomBGNode );
- new Element("div", {
- styles : css.injectActionCancelNode,
- events : {
- click : function(){
- this.draggingModule._dragCancel();
- this._dragDrop( this.node, true );
- this._hideInjectAction();
- }.bind(this),
- mouseover : function(){
- this.setStyles( css.injectActionCancelNode_over )
- },
- mouseout : function(){
- this.setStyles( css.injectActionCancelNode )
- }
- }
- }).inject(this.injectActionArea);
- }
- },
- _createInjectActionNode : function( action, relativeNode ){
- var actionNode = new Element("div", {
- "styles": this.css[action.styles],
- "title": action.title
- }).inject( this.injectActionArea );
- actionNode.addEvent(action.event, function(e){
- this[action.action](e);
- }.bind(this));
- actionNode.addEvents({
- "mouseover": function(e){
- relativeNode.setStyle("background", "#ddd");
- this.draggingModule.copyNode.setStyle("display","");
- this.draggingModule.copyNode.inject( this.node, action.name );
- }.bind(this),
- "mouseout": function(e){
- relativeNode.setStyle("background", "transparent");
- }.bind(this)
- });
- relativeNode.set("title",action.title);
- relativeNode.addEvent(action.event, function(e){
- this[action.action](e);
- }.bind(this));
- relativeNode.setStyle("cursor","pointer");
- relativeNode.addEvents({
- "mouseenter": function(e){
- relativeNode.setStyle("background", "#ddd");
- this.draggingModule.copyNode.setStyle("display","");
- this.draggingModule.copyNode.inject( this.node, action.name );
- }.bind(this),
- "mouseleave": function(e){
- relativeNode.setStyle("background", "transparent");
- //this.draggingModule.copyNode.setStyle("display","none");
- }.bind(this)
- });
- },
- _setInjectActionAreaPosition: function(){
- var e = new Event(event);
- var formOffset = this.node.getOffsetParent().getPosition();
- //var p = this.node.getPosition(this.form.node.getOffsetParent());
- var y = e.page.y - formOffset.y - 60;
- var x = e.page.x - formOffset.x - 60;
- this.injectActionArea.setPosition({"x": x, "y": y});
- },
- injectBefore : function( e ){
- this.inject( "before" )
- },
- injectAfter : function( e ){
- this.inject( "after" )
- },
- injectTop : function( e ){
- this.inject( "top" )
- },
- injectBottom : function( e ){
- this.inject( "bottom" )
- },
- inject : function( position ){
- if ( this.draggingModule.moveNode ){
- this.draggingModule.moveNode.setStyle("display","");
- }
- this.draggingModule._dragComplete( this.node, position );
- this._dragDrop( this.node, true );
- this._hideInjectAction();
- },
- _clearNoId: function(node){
- var subNode = node.getFirst();
- while (subNode){
- var nextNode = subNode.getNext();
- if (subNode.get("MWFType")){
- if (!subNode.get("id")){
- subNode.destroy();
- }else{
- if (subNode) this._clearNoId(subNode);
- }
- }else{
- if (subNode) this._clearNoId(subNode);
- }
- subNode = nextNode;
- }
- },
- _getFormData: function(callback){
- this.fireEvent("queryGetFormData");
- var copy = this.node.clone(true, true);
- copy.clearStyles(true);
- this.fireEvent("postGetFormData");
- this._clearNoId(copy);
- var html = copy.outerHTML;
- //this._clearNoDomModule();
- copy.destroy();
- this.data.json.mode = this.options.mode;
- this.data.html = html;
- //@todo 预先整理表单样式
- // var tmpFormNode = new Element("div", {
- // "opacity": 0
- // }).inject(this.designer.content);
- // MWF.xDesktop.requireApp("process.Xform2", "Form_", null, false);
- // this.appForm = new MWF.APPForm_(tmpFormNode, this.data, {
- // "onAfterLoad": function(){
- // var preprocessHtml = tmpFormNode.get("html");
- // this.data.preprocessHtml = preprocessHtml;
- //
- // if (callback) callback();
- // }.bind(this)
- // });
- // this.appForm.businessData = {};
- // this.appForm.load();
- return this.data;
- },
- _clearNoDomModule : function(){
- debugger;
- var existModuleList = {};
- Object.each( this.moduleList, function( module ){
- existModuleList[ module.json.id ] = true;
- });
- Object.each( this.data.json.moduleList , function( module, key ){
- //if( !this.node.getElement( "#" + module.id ) && !existModuleList[ module.id ] ){
- if( !existModuleList[ module.id ] ){
- delete this.data.json.moduleList[key];
- }
- }.bind(this));
- },
- preview: function(){
- MWF.xDesktop.requireApp("process.FormDesigner", "Preview", function(){
- if (this.options.mode=="Mobile"){
- this.previewBox = new MWF.xApplication.process.FormDesigner.Preview(this, {"size": {"x": "400", "y": 580}, "mode": "mobile"});
- }else{
- this.previewBox = new MWF.xApplication.process.FormDesigner.Preview(this);
- }
- this.previewBox.load();
- }.bind(this));
- },
- save: function(callback){
- // debugger;
- // this.moduleList.each(function(module){
- // if (module.moduleName==="subform"){
- // module.refreshSubform();
- // }
- // }.bind(this));
- this.designer.saveForm();
- //this._getFormData();
- //this.designer.actions.saveForm(this.data, function(responseJSON){
- // this.form.designer.notice(MWF.APPFD.LP.notice["save_success"], "ok", null, {x: "left", y:"bottom"});
- //
- // //this.json.id = responseJSON.data;
- // if (!this.json.name) this.treeNode.setText("<"+this.json.type+"> "+this.json.id);
- // this.treeNode.setTitle(this.json.id);
- // this.node.set("id", this.json.id);
- //
- // if (callback) callback();
- // //this.reload(responseJSON.data);
- //}.bind(this));
- },
- explode: function(){
- this._getFormData();
- MWF.require("MWF.widget.Base64", null, false);
- var data = MWF.widget.Base64.encode(JSON.encode(this.data));
- MWF.require("MWF.widget.Panel", function(){
- var node = new Element("div");
- var size = this.designer.formNode.getSize();
- var position = this.designer.formNode.getPosition(this.designer.formNode.getOffsetParent());
- var textarea = new Element("textarea", {
- "styles": {
- "border": "1px solid #999",
- "width": "770px",
- "margin-left": "14px",
- "margin-top": "14px",
- "height": "580px"
- },
- "text": JSON.encode(this.data)
- }).inject(node);
- this.explodePanel = new MWF.widget.Panel(node, {
- "style": "form",
- "isResize": false,
- "isMax": false,
- "title": "",
- "width": 800,
- "height": 660,
- "top": position.y,
- "left": position.x+3,
- "isExpand": false,
- "target": this.designer.node
- });
- this.explodePanel.load();
- }.bind(this));
- },
- implode: function(){
- MWF.xDesktop.requireApp("portal.PageDesigner", "Import", function(){
- MWF.FormImport.create("O2", this);
- }.bind(this));
- },
- // implodeJsonData: function(str){
- // if (str){
- // //try{
- // debugger;
- // var data = JSON.decode(str);
- // if (data){
- // var json = data.json;
- // data.id = this.data.id;
- // data.isNewPage = this.data.isNewPage;
- // json.id = this.json.id;
- // json.name = this.json.name;
- // json.application = this.json.application;
- // json.applicationName = this.json.applicationName;
- //
- // this.reload(data);
- // this.implodePanel.closePanel();
- // }else{
- // this.designer.notice(this.designer.lp.implodeError, "error");
- // }
- // // }catch(e){
- // // this.designer.notice(this.designer.lp.implodeError, "error");
- // // }
- // }else{
- // this.designer.notice(this.designer.lp.implodeEmpty, "error");
- // }
- // },
- implodeHTML: function(){
- MWF.xDesktop.requireApp("portal.PageDesigner", "Import", function(){
- MWF.FormImport.create("html", this, {"type": "process"});
- }.bind(this));
- },
- implodeOffice: function(){
- MWF.xDesktop.requireApp("portal.PageDesigner", "Import", function(){
- MWF.FormImport.create("office", this);
- }.bind(this));
- },
- deletePropertiesOrStyles: function(name, key){
- if (name=="styles"){
- try{
- if( key && this.json.styles[key] ){
- delete this.json.styles[key];
- }
- this.setCustomStyles();
- }catch(e){}
- }
- if (name=="properties"){
- try{
- this.node.removeProperty(key);
- }catch(e){}
- }
- },
- setPropertiesOrStyles: function(name){
- if (name=="styles"){
- this.setCustomStyles();
- }
- if (name=="properties"){
- this.node.setProperties(this.json.properties);
- }
- },
- setCustomStyles: function(){
- debugger;
- var border = this.node.getStyle("border");
- this.node.clearStyles();
- this.node.setStyles((this.options.mode==="Mobile") ? this.css.formMobileNode : this.css.formNode);
- var y = this.container.getStyle("height");
- y = (y) ? y.toInt()-2 : this.container.getSize().y-2;
- this.node.setStyle("min-height", ""+y+"px");
-
- if (this.initialStyles) this.node.setStyles(this.initialStyles);
- this.node.setStyle("border", border);
- Object.each(this.json.styles, function(value, key){
- var reg = /^border\w*/ig;
- if (!key.test(reg)){
- this.node.setStyle(key, value);
- }
- }.bind(this));
- },
- _setEditStyle: function(name, obj, oldValue){
- debugger;
- if (name=="name"){
- var title = this.json.name || this.json.id;
- this.treeNode.setText("<"+this.json.type+"> "+title+" ["+this.options.mode+"] ");
- }
- if (name=="id"){
- if (!this.json.name) this.treeNode.setText("<"+this.json.type+"> "+this.json.id+" ["+this.options.mode+"] ");
- this.treeNode.setTitle(this.json.id);
- this.node.set("id", this.json.id);
- }
- if (name=="formStyleType"){
- var file = (this.stylesList && this.json.formStyleType) ? this.stylesList[this.json.formStyleType].file : null;
- var extendFile = (this.stylesList && this.json.formStyleType) ? this.stylesList[this.json.formStyleType].extendFile : null;
- this.loadTemplateStyles( file, extendFile, function( templateStyles ){
- //this.templateStyles = (this.stylesList && this.json.formStyleType) ? this.stylesList[this.json.formStyleType] : null;
- this.templateStyles = templateStyles;
- var oldFile, oldExtendFile;
- if( oldValue && this.stylesList[oldValue] ){
- oldFile = this.stylesList[oldValue].file;
- oldExtendFile = this.stylesList[oldValue].extendFile;
- }
- this.loadTemplateStyles( oldFile, oldExtendFile, function( oldTemplateStyles ){
- //if (oldValue) {
- // var oldTemplateStyles = this.stylesList[oldValue];
- // if (oldTemplateStyles){
- // if (oldTemplateStyles["form"]) this.clearTemplateStyles(oldTemplateStyles["form"]);
- // }
- //}
- this.json.styleConfig = (this.stylesList && this.json.formStyleType) ? this.stylesList[this.json.formStyleType] : null;
- if (oldTemplateStyles["form"]) this.clearTemplateStyles(oldTemplateStyles["form"]);
- if (this.templateStyles["form"]) this.setTemplateStyles(this.templateStyles["form"]);
- this.setAllStyles();
- this.moduleList.each(function(module){
- if (oldTemplateStyles[module.moduleName]){
- module.clearTemplateStyles(oldTemplateStyles[module.moduleName]);
- }
- module.setStyleTemplate();
- module.setAllStyles();
- }.bind(this));
- }.bind(this))
- }.bind(this))
- }
- if (name==="css"){
- this.reloadCss();
- }
- this._setEditStyle_custom(name, obj, oldValue);
- },
- parseCSS: function(css){
- var rex = /(url\(.*\))/g;
- var match;
- while ((match = rex.exec(css)) !== null) {
- var pic = match[0];
- var len = pic.length;
- var s = pic.substring(pic.length-2, pic.length-1);
- var n0 = (s==="'" || s==="\"") ? 5 : 4;
- var n1 = (s==="'" || s==="\"") ? 2 : 1;
- pic = pic.substring(n0, pic.length-n1);
- if ((pic.indexOf("x_processplatform_assemble_surface")!=-1 || pic.indexOf("x_portal_assemble_surface")!=-1)){
- var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
- var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
- if (pic.indexOf("/x_processplatform_assemble_surface")!==-1){
- pic = pic.replace("/x_processplatform_assemble_surface", pic+"/x_processplatform_assemble_surface");
- }else if (pic.indexOf("x_processplatform_assemble_surface")!==-1){
- pic = pic.replace("x_processplatform_assemble_surface", pic+"/x_processplatform_assemble_surface");
- }
- if (pic.indexOf("/x_portal_assemble_surface")!==-1){
- pic = pic.replace("/x_portal_assemble_surface", host2+"/x_portal_assemble_surface");
- }else if (pic.indexOf("x_portal_assemble_surface")!==-1){
- pic = pic.replace("x_portal_assemble_surface", host2+"/x_portal_assemble_surface");
- }
- }
- pic = "url('"+pic+"')";
- var len2 = pic.length;
- css = css.substring(0, match.index) + pic + css.substring(rex.lastIndex, css.length);
- rex.lastIndex = rex.lastIndex + (len2-len);
- }
- return css;
- },
- reloadCss: function(){
- cssText = (this.json.css) ? this.json.css.code : "";
- //var head = (document.head || document.getElementsByTagName("head")[0] || document.documentElement);
- var styleNode = $("style"+this.json.id);
- if (styleNode) styleNode.destroy();
- if (cssText){
- cssText = this.parseCSS(cssText);
- var rex = new RegExp("(.+)(?=\\{)", "g");
- var match;
- var id = this.json.id.replace(/\-/g, "");
- var prefix = ".css" + id + " ";
- while ((match = rex.exec(cssText)) !== null) {
- // var rule = prefix + match[0];
- // cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
- // rex.lastIndex = rex.lastIndex + prefix.length;
- var rulesStr = match[0];
- if (rulesStr.indexOf(",")!=-1){
- var rules = rulesStr.split(/\s*,\s*/g);
- rules = rules.map(function(r){
- return prefix + r;
- });
- var rule = rules.join(", ");
- cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
- rex.lastIndex = rex.lastIndex + (prefix.length*rules.length);
- }else{
- var rule = prefix + match[0];
- cssText = cssText.substring(0, match.index) + rule + cssText.substring(rex.lastIndex, cssText.length);
- rex.lastIndex = rex.lastIndex + prefix.length;
- }
- }
- var styleNode = document.createElement("style");
- styleNode.setAttribute("type", "text/css");
- styleNode.id="style"+this.json.id;
- styleNode.inject(this.container, "before");
- if(styleNode.styleSheet){
- var setFunc = function(){
- styleNode.styleSheet.cssText = cssText;
- };
- if(styleNode.styleSheet.disabled){
- setTimeout(setFunc, 10);
- }else{
- setFunc();
- }
- }else{
- var cssTextNode = document.createTextNode(cssText);
- styleNode.appendChild(cssTextNode);
- }
- }
- },
- setAllStyles: function(){
- this.setPropertiesOrStyles("styles");
- this.setPropertiesOrStyles("properties");
- this.reloadMaplist();
- },
- reloadMaplist: function(){
- if (this.property) Object.each(this.property.maplists, function(map, name){ map.reload(this.json[name]);}.bind(this));
- },
- _setEditStyle_custom: function(){
- },
- saveAsTemplete: function(){
- },
- isModuleExited : function( id ){
- for( var i=0; i<this.moduleList.length; i++ ){
- if(this.moduleList[i].json.id === id)return true;
- }
- return false;
- },
- checkModuleId: function(id, type, currentSubform){
- var fieldConflict = false;
- var elementConflict = false;
- //if (this.json.moduleList[id]){
- if( this.isModuleExited(id) ){
- elementConflict = true;
- if (this.options.fields.indexOf(type)!=-1 || this.options.fields.indexOf(this.json.moduleList[id].type)!=-1){
- fieldConflict = true;
- }
- return {"fieldConflict": fieldConflict, "elementConflict": elementConflict};
- }
- //if (this.subformList){
- // Object.each(this.subformList, function(subform){
- // if (!currentSubform || currentSubform!=subform.id){
- // if (subform.moduleList[id]){
- // elementConflict = true;
- // if (this.options.fields.indexOf(type)!=-1 || this.options.fields.indexOf(subform.moduleList[id].type)!=-1){
- // fieldConflict = true;
- // }
- // }
- // }
- // }.bind(this));
- //}
- var subformList = this.getAllSubformJsonObject();
- if (subformList){
- Object.each(subformList, function(subform){
- if (!currentSubform || currentSubform!=subform.id){
- if (subform.moduleList[id]){
- elementConflict = true;
- if (this.options.fields.indexOf(type)!=-1 || this.options.fields.indexOf(subform.moduleList[id].type)!=-1){
- fieldConflict = true;
- }
- }
- }
- }.bind(this));
- }
- return {"fieldConflict": fieldConflict, "elementConflict": elementConflict};
- },
- _resetTreeNode: function(){},
- clearSubformList : function( level1subformName ){
- if( !this.level1Subformlist )return;
- if( !this.level1Subformlist[level1subformName] )return;
- delete this.level1Subformlist[level1subformName];
- },
- addSubformList : function( level1subformName, addedSubformId ){
- if( !this.level1Subformlist ){
- this.level1Subformlist = {};
- }
- if( !this.level1Subformlist[level1subformName] ){
- this.level1Subformlist[level1subformName] = [];
- }
- this.level1Subformlist[level1subformName].push( addedSubformId );
- },
- isSubformUnique : function( checkedSubformId, level1subformName, deletedSubformId){
- if( !this.level1Subformlist )return true;
- var level1Subformlist = Object.clone( this.level1Subformlist );
- if( deletedSubformId && level1Subformlist[deletedSubformId] )delete level1Subformlist[deletedSubformId];
- for( var key in level1Subformlist ){
- if( key !== level1subformName ){
- if( level1Subformlist[key].contains( checkedSubformId ) ){
- return false;
- }
- }
- }
- return true;
- },
- getAllSubformTiled : function(){
- var _nestToTiled = function( form , array ){
- if ( form.subformModuleList && form.subformModuleList.length){
- Array.each( form.subformModuleList, function( module ){
- array.push( module );
- if( module.subformModule )_nestToTiled( module.subformModule, array );
- }.bind(this))
- }
- };
- var array = [];
- _nestToTiled( this, array );
- return array;
- },
- getAllSubformJsonObject : function(){
- var list = this.getAllSubformTiled();
- var object = {};
- Array.each( list, function( subform ){
- if( subform && subform.json.subformSelected && subform.subformData && subform.subformData.json){
- object[ subform.json.subformSelected ] = subform.subformData.json;
- }
- }.bind(this));
- return object;
- }
- // getAllFieldModuleNameList: function(){
- // var moduleNameList = [];
- // Object.each(this.json.moduleList, function(o, k){
- // if (this.options.fields.indexOf(o.type))
- // }.bind(this))
- // }
-
- });
|