| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- MWF.xApplication.process.FormDesigner.widget = MWF.xApplication.process.FormDesigner.widget || {};
- MWF.require("MWF.widget.ScriptArea", null, false);
- MWF.xApplication.process.FormDesigner.widget.ActionsEditor = new Class({
- Implements: [Options, Events],
- Extends: MWF.widget.Common,
- options: {
- "style": "default",
- "maxObj": document.body,
- "noCreate": false,
- "noDelete": false,
- "noCode": false,
- "noHide": false
- },
- initialize: function(node, designer, module, options){
- this.setOptions(options);
- this.node = $(node);
- this.module = module;
- this.designer = designer;
-
- this.path = "/x_component_process_FormDesigner/widget/$ActionsEditor/";
- this.cssPath = "/x_component_process_FormDesigner/widget/$ActionsEditor/"+this.options.style+"/css.wcss";
- this._loadCss();
-
- this.actions = [];
- this.currentEditItem = null;
-
- this.createActionsAreaNode();
- },
- createActionsAreaNode: function(){
- this.actionsContainer = new Element("div", {
- "styles": this.css.actionsContainer
- }).inject(this.node);
-
- // var size = this.node.getUsefulSize();
- // this.eventsContainer.setStyle("height", size.y);
- },
-
- load: function(data){
- this.loadActionsArea();
- if (!this.options.noCreate) this.loadCreateActionButton();
- this.data = data;
- if (this.data){
- if (typeOf(this.data)!="array") this.data = [];
- this.data.each(function(actionData, idx){
- if (actionData.type!="MWFToolBarSeparator"){
- var action = new MWF.xApplication.process.FormDesigner.widget.ActionsEditor.ButtonAction(this);
- action.load(actionData);
- this.actions.push(action);
- }
- }.bind(this));
- }
- },
- loadActionsArea: function(){
- if (!this.options.noCreate){
- this.actionTitleArea = new Element("div", {
- "styles": this.css.actionTitleArea
- }).inject(this.actionsContainer);
- }
- this.actionArea = new Element("div", {
- "styles": this.css.actionArea
- }).inject(this.actionsContainer);
- },
- loadCreateActionButton: function(){
- this.createActionButtonButton = new Element("div", {
- "styles": this.css.createActionButton,
- "text": "+"
- }).inject(this.actionTitleArea);
- this.createActionButtonButton.addEvent("click", function(){
- this.addButtonAction();
- }.bind(this));
- },
- addButtonAction: function(){
- var o = {
- "type": "MWFToolBarButton",
- "img": "4.png",
- "title": "",
- "action": "",
- "text": "Unnamed",
- "actionScript" : "",
- "condition": "",
- "editShow": true,
- "readShow": true
- };
- var action = new MWF.xApplication.process.FormDesigner.widget.ActionsEditor.ButtonAction(this);
- action.load(o);
- this.data.push(o);
- this.actions.push(action);
- this.fireEvent("change");
- }
- });
- MWF.xApplication.process.FormDesigner.widget.ActionsEditor.ButtonAction = new Class({
- initialize: function (editor) {
- this.editor = editor;
- this.css = this.editor.css;
- this.container = this.editor.actionArea
- },
- load: function (data) {
- this.data = data;
- this.loadNode();
- var form = this.editor.designer.form || this.editor.designer.page;
- if (form.scriptDesigner){
- this.scriptItem = form.scriptDesigner.addScriptItem(this.data, "actionScript", this.editor.module, "action.tools", this.data.text);
- }
- var text = this.data.text;
- Object.defineProperty(this.data, "text", {
- configurable : true,
- enumerable : true,
- "get": function(){return text;},
- "set": function(v){
- if (this.scriptItem){
- this.scriptItem.par = v;
- this.scriptItem.resetText();
- }
- text = v;
- }.bind(this)
- });
- },
- loadNode: function () {
- this.node = new Element("div", {"styles": this.css.actionNode}).inject(this.container);
- this.titleNode = new Element("div", {"styles": this.css.actionTitleNode}).inject(this.node);
- this.iconNode = new Element("div", {"styles": this.css.actionIconNode}).inject(this.titleNode);
- this.textNode = new Element("div", {"styles": this.css.actionTextNode, "text": this.data.text}).inject(this.titleNode);
- if (!this.editor.options.noDelete) this.delButton = new Element("div", {"styles": this.css.actionDelButtonNode, "text": "-"}).inject(this.titleNode);
- this.conditionButton = new Element("div", {"styles": this.css.actionConditionButtonNode, "title": this.editor.designer.lp.actionbar.hideCondition}).inject(this.titleNode);
- if (this.data.condition){
- this.conditionButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/code.png)");
- }else{
- this.conditionButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/code_empty.png)");
- }
- if (!this.editor.options.noEditShow){
- this.editButton = new Element("div", {"styles": this.css.actionEditButtonNode, "title": this.editor.designer.lp.actionbar.edithide}).inject(this.titleNode);
- if (this.data.editShow){
- this.editButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/edit.png)");
- }else{
- this.editButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/edit_hide.png)");
- }
- }
- if (!this.editor.options.noReadShow){
- this.readButton = new Element("div", {"styles": this.css.actionReadButtonNode, "title": this.editor.designer.lp.actionbar.readhide}).inject(this.titleNode);
- if (this.data.readShow){
- this.readButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/read.png)");
- }else{
- this.readButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/read_hide.png)");
- }
- }
- var icon = this.editor.path+this.editor.options.style+"/tools/"+this.data.img;
- this.iconNode.setStyle("background-image", "url("+icon+")");
- if (!this.editor.options.noCode){
- this.scriptNode = new Element("div", {"styles": this.css.actionScriptNode}).inject(this.node);
- this.scriptArea = new MWF.widget.ScriptArea(this.scriptNode, {
- "title": this.editor.designer.lp.actionbar.editScript,
- "maxObj": this.editor.designer.formContentNode,
- "key": "actionScript",
- "onChange": function(){
- this.data.actionScript = this.scriptArea.editor.getValue();
- this.editor.fireEvent("change");
- }.bind(this),
- "onSave": function(){
- this.data.actionScript = this.scriptArea.editor.getValue();
- this.editor.fireEvent("change");
- this.editor.designer.saveForm();
- }.bind(this),
- "onPostLoad": function(){
- // this.scriptNode.setStyle("display", "none");
- }.bind(this)
- });
- this.scriptArea.load({"code": this.data.actionScript});
- }
- this.conditionNode = new Element("div", {"styles": this.css.actionScriptNode}).inject(this.node);
- this.conditionArea = new MWF.widget.ScriptArea(this.conditionNode, {
- "title": this.editor.designer.lp.actionbar.editCondition,
- "maxObj": this.editor.designer.formContentNode,
- "onChange": function(){
- this.data.condition = this.conditionArea.editor.getValue();
- if (this.data.condition){
- this.conditionButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/code.png)");
- }else{
- this.conditionButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/code_empty.png)");
- }
- this.editor.fireEvent("change");
- }.bind(this),
- "onSave": function(){
- this.data.condition = this.conditionArea.editor.getValue();
- this.editor.fireEvent("change");
- this.editor.designer.saveForm();
- }.bind(this),
- "onPostLoad": function(){
- // this.conditionNode.setStyle("display", "none");
- }.bind(this)
- });
- this.conditionArea.load({"code": this.data.condition});
- this.setEvent();
- //this.loadEditNode();
- //this.loadChildNode();
- //this.setTitleNode();
- //this.setEditNode();
- },
- setEvent: function(){
- this.iconMenu = new MWF.widget.Menu(this.iconNode, {"event": "click", "style": "actionbarIcon"});
- this.iconMenu.load();
- var _self = this;
- for (var i=1; i<=121; i++){
- var icon = this.editor.path+this.editor.options.style+"/tools/"+i+".png";
- var item = this.iconMenu.addMenuItem("", "click", function(){
- var src = this.item.getElement("img").get("src");
- _self.data.img = src.substr(src.lastIndexOf("/")+1, src.length);
- _self.iconNode.setStyle("background-image", "url("+src+")");
- _self.editor.fireEvent("change");
- }, icon);
- item.iconName = i+".png";
- }
- this.textNode.addEvent("click", function(e){
- this.textNode.empty();
- var editTitleNode = new Element("input", {"styles": this.css.actionEditTextNode, "type": "text", "value": this.data.text}).inject(this.textNode);
- editTitleNode.focus();
- editTitleNode.select();
- var _self = this;
- editTitleNode.addEvent("blur", function(){_self.editTitleComplete(this);});
- editTitleNode.addEvent("keydown:keys(enter)", function(){_self.editTitleComplete(this);});
- editTitleNode.addEvent("click", function(e){e.stopPropagation()});
- e.stopPropagation();
- }.bind(this));
- this.conditionButton.addEvent("click", function(e){
- e.stopPropagation();
- this.editCondition();
- }.bind(this));
- if (this.editButton) this.editButton.addEvent("click", function(e){
- if (this.data.editShow){
- this.editButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/edit_hide.png)");
- this.data.editShow = false;
- }else{
- this.editButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/edit.png)");
- this.data.editShow = true;
- }
- this.editor.fireEvent("change");
- e.stopPropagation();
- }.bind(this));
- if (this.readButton) this.readButton.addEvent("click", function(e){
- if (this.data.readShow){
- this.readButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/read_hide.png)");
- this.data.readShow = false;
- }else{
- this.readButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/read.png)");
- this.data.readShow = true;
- }
- this.editor.fireEvent("change");
- e.stopPropagation();
- }.bind(this));
- this.titleNode.addEvent("click", function(){
- if (this.scriptNode){
- var dis = this.scriptNode.getStyle("display");
- if (dis=="none"){
- this.scriptNode.setStyle("display", "block");
- if (this.scriptArea){
- this.scriptArea.resizeContentNodeSize();
- if (this.scriptArea.editor) this.scriptArea.editor.resize();
- if (!this.scriptArea.jsEditor){
- this.scriptArea.contentNode.empty();
- this.scriptArea.loadEditor({"code": this.data.actionScript});
- }
- }
- }else{
- this.scriptNode.setStyle("display", "none");
- }
- }
- }.bind(this));
- if (this.delButton) this.delButton.addEvent("click", function(e){
- var _self = this;
- this.editor.designer.confirm("warn", this.delButton, MWF.APPFD.LP.notice.deleteButtonTitle, MWF.APPFD.LP.notice.deleteButton, 300, 120, function(){
- _self.destroy();
- this.close();
- }, function(){
- this.close();
- }, null);
- e.stopPropagation();
- }.bind(this));
- },
- editCondition: function(){
- var dis = this.conditionNode.getStyle("display");
- if (dis=="none"){
- this.conditionNode.setStyle("display", "block");
- if (this.conditionArea){
- this.conditionArea.resizeContentNodeSize();
- if (this.conditionArea.editor) this.conditionArea.editor.resize();
- if (!this.conditionArea.jsEditor){
- this.conditionArea.contentNode.empty();
- this.conditionArea.loadEditor({"code": this.data.condition});
- }
- }
- }else{
- this.conditionNode.setStyle("display", "none");
- }
- },
- destroy: function(){
- this.editor.data.erase(this.data);
- this.editor.actions.erase(this);
- this.editor.fireEvent("change");
- this.node.destroy();
- var form = this.editor.designer.form || this.editor.designer.page;
- if (form.scriptDesigner){
- form.scriptDesigner.deleteScriptItem(this.editor.module, "action.tools", this.data.text);
- }
- MWF.release(this.scriptArea);
- MWF.release(this);
- },
- editTitleComplete: function(el){
- this.data.text = el.get("value");
- this.data.title = el.get("value");
- el.destroy();
- this.textNode.empty();
- this.textNode.set("text", this.data.text);
- this.editor.fireEvent("change");
- }
- });
|