123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- MWF.xApplication.cms.FormDesigner.widget = MWF.xApplication.cms.FormDesigner.widget || {};
- MWF.xDesktop.requireApp("process.FormDesigner", "widget.ActionsEditor", null, false);
- MWF.xApplication.cms.FormDesigner.widget.ActionsEditor = new Class({
- Extends: MWF.xApplication.process.FormDesigner.widget.ActionsEditor,
- load: function(data){
- this.loadActionsArea();
- if (!this.options.noCreate) this.loadCreateActionButton();
- this.data = data;
- if ( !this.data || typeOf(this.data)!="array") this.data = [];
- this.loadRestoreActionButton();
- this.data.each(function(actionData, idx){
- var action = new MWF.xApplication.cms.FormDesigner.widget.ActionsEditor.ButtonAction(this);
- action.load(actionData);
- this.actions.push(action);
- }.bind(this));
- },
- listRemovedSystemTool : function(){
- var list = [];
- if( !this.defaultTools ){
- MWF.getJSON( "../x_component_cms_FormDesigner/Module/Actionbar/toolbars.json", function(tools){
- this.defaultTools = tools;
- }.bind(this), false);
- }
- this.defaultTools.each( function( tool ){
- var flag = true;
- for( var i=0; i<(this.data || []).length; i++ ){
- if( this.data[i].id === tool.id ){
- flag = false;
- break;
- }
- }
- if(flag)list.push(tool);
- }.bind(this));
- return list;
- },
- addButtonAction: function(){
- var o = {
- "type": "MWFToolBarButton",
- "img": "4.png",
- "title": "",
- "action": "",
- "text": "Unnamed",
- "actionScript" : "",
- "condition": "",
- "editShow": true,
- "readShow": true
- };
- var action = new MWF.xApplication.cms.FormDesigner.widget.ActionsEditor.ButtonAction(this);
- action.load(o);
- this.data.push(o);
- this.actions.push(action);
- this.fireEvent("change", [{
- compareName: " [addAction]",
- force: true
- }]);
- },
- restoreButtonAction : function(){
- var list = this.listRemovedSystemTool();
- if( !list.length )return;
- var selectableItems = [];
- list.each( function(d){
- var title = "";
- if( d.text && this.designer.lp.actionBar ){
- title = this.designer.lp.actionBar[ d.text.split(".").getLast().replace("}}","") ] || "";
- title = title ? (" (" + title + ")") : "";
- }
- selectableItems.push( {
- name : d.text + title,
- id : d.id
- })
- }.bind(this));
- MWF.xDesktop.requireApp("Template", "Selector.Custom", null, false);
- var opt = {
- "count": 0,
- "title": this.designer.lp.actionbar.selectDefaultTool,
- "selectableItems" : selectableItems,
- "values": [],
- "onComplete": function( array ){
- if( !array || array.length == 0 )return;
- var actionNameList = [];
- array.each( function(tool){
- for( var i=0; i<list.length; i++ ){
- if( list[i].id === tool.data.id ){
- list[i].system = true;
- this.data.push( list[i] );
- actionNameList.push( list[i].action );
- var action = new MWF.xApplication.cms.FormDesigner.widget.ActionsEditor.ButtonAction(this);
- action.load(list[i]);
- this.actions.push(action);
- break;
- }
- }
- }.bind(this));
- this.fireEvent("change", [{
- compareName: " [addSystemAction]:"+actionNameList,
- force: true
- }]);
- }.bind(this)
- };
- var selector = new MWF.xApplication.Template.Selector.Custom(this.options.maxObj, opt );
- selector.load();
- }
- });
- MWF.xApplication.cms.FormDesigner.widget.ActionsEditor.ButtonAction = new Class({
- Extends: MWF.xApplication.process.FormDesigner.widget.ActionsEditor.ButtonAction,
- 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.data.text && this.editor.designer.lp.actionBar){
- var title = this.editor.designer.lp.actionBar[ this.data.text.split(".").getLast().replace("}}","") ] || "";
- this.textNode.set("title", title || "");
- }
- this.upButton = new Element("div", {"styles": this.css.actionUpButtonNode, "title": this.editor.designer.lp.actionbar.up}).inject(this.titleNode);
- this.propertiesButton = new Element("div", {"styles": this.css.actionPropertiesButtonNode, "title": this.editor.designer.lp.actionbar.property}).inject(this.titleNode);
- if (!this.data.properties || Object.keys(this.data.properties).length === 0 ){
- this.propertiesButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/property_empty.png)");
- }else{
- this.propertiesButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/property.png)");
- }
- this.propertiesNode = new Element("div", {"styles": this.css.actionScriptNode}).inject(this.node);
- this.propertiesArea = new MWF.widget.Maplist(this.propertiesNode, {
- "title": this.editor.designer.lp.actionbar.setProperties,
- "collapse": false,
- "onChange": function(){
- this.data.properties = this.propertiesArea.toJson();
- if (!this.data.properties || Object.keys(this.data.properties).length === 0 ){
- this.propertiesButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/property_empty.png)");
- }else{
- this.propertiesButton.setStyle("background-image", "url("+this.editor.path+this.editor.options.style+"/icon/property.png)");
- }
- this.editor.fireEvent("change", [{
- compareName: "."+this.getName() + ".property"
- }]);
- }.bind(this)
- });
- this.propertiesArea.load( this.data.properties || {});
- if (!this.editor.options.noDelete) this.delButton = new Element("div", {
- "styles": this.css.actionDelButtonNode,
- "text": "-",
- "title" : this.editor.designer.lp.actionbar.delete
- }).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.data.system){
- 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.data.system){
- 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.data.system ) {
- 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,
- "onChange": function () {
- this.data.actionScript = this.scriptArea.editor.getValue();
- this.editor.fireEvent("change", [{
- compareName: "."+this.getName() + ".actionScript"
- }]);
- }.bind(this),
- "onSave": function () {
- this.data.actionScript = this.scriptArea.editor.getValue();
- this.editor.fireEvent("change", [{
- compareName: "."+this.getName() + ".actionScript"
- }]);
- this.editor.designer.saveForm();
- }.bind(this),
- "onPostLoad": function () {
- // this.scriptNode.setStyle("display", "none");
- }.bind(this),
- "helpStyle": "cms"
- });
- 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", [{
- compareName: "."+this.getName() + ".conditionScript"
- }]);
- }.bind(this),
- "onSave": function(){
- this.data.condition = this.conditionArea.editor.getValue();
- this.editor.fireEvent("change", [{
- compareName: "."+this.getName() + ".conditionScript"
- }]);
- this.editor.designer.saveForm();
- }.bind(this),
- "onPostLoad": function(){
- // this.conditionNode.setStyle("display", "none");
- }.bind(this),
- "helpStyle" : "cms"
- });
- 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",
- "onPostShow" : function (ev) {
- ev.stopPropagation();
- }
- });
- this.iconMenu.load();
- var _self = this;
- for (var i=-6; i<0; i++){
- //var icon = this.editor.path+this.editor.options.style+"/tools/"+i+".png";
- var icon = "../x_component_cms_FormDesigner/Module/Actionbar/"+this.editor.options.style+"/custom/"+i+".png";
- var item = this.iconMenu.addMenuItem("", "click", function(ev){
- var src = this.item.getElement("img").get("src");
- _self.data.img = src.substr(src.lastIndexOf("/")+1, src.length);
- _self.data.customImg = true;
- _self.iconNode.setStyle("background-image", "url("+src+")");
- _self.editor.fireEvent("change", [{
- compareName: "."+_self.getName() + ".img"
- }]);
- ev.stopPropagation();
- }, icon);
- item.iconName = i+".png";
- }
- for (var i=1; i<=136; i++){
- //var icon = this.editor.path+this.editor.options.style+"/tools/"+i+".png";
- var icon = "../x_component_cms_FormDesigner/Module/Actionbar/"+this.editor.options.style+"/custom/"+i+".png";
- var item = this.iconMenu.addMenuItem("", "click", function(ev){
- var src = this.item.getElement("img").get("src");
- _self.data.img = src.substr(src.lastIndexOf("/")+1, src.length);
- _self.data.customImg = true;
- _self.iconNode.setStyle("background-image", "url("+src+")");
- _self.editor.fireEvent("change", [{
- compareName: "."+_self.getName() + ".img"
- }]);
- ev.stopPropagation();
- }, icon);
- item.iconName = i+".png";
- }
- this.upButton.addEvent("click", function(e){
- var actions = this.editor.actions;
- var dataList = this.editor.data;
- var dataIndex = dataList.indexOf( this.data );
- var index = actions.indexOf( this );
- if( index === 0 || dataIndex === 0 ){
- e.stopPropagation();
- return;
- }
- var index_before = index-1;
- var action = actions[index_before];
- this.node.inject(action.node, "before");
- actions[index_before] = actions.splice(index, 1, actions[index_before])[0];
- this.editor.actions = actions;
- var dataIndex_before = dataIndex - 1;
- dataList[dataIndex_before] = dataList.splice(dataIndex, 1, dataList[dataIndex_before])[0];
- this.editor.data = dataList;
- this.editor.fireEvent("change", [{
- compareName: "."+this.getName() + " [up]"
- }]);
- e.stopPropagation();
- }.bind(this));
- this.propertiesButton.addEvent("click", function(e){
- var dis = this.propertiesNode.getStyle("display");
- if (dis=="none"){
- this.propertiesNode.setStyle("display", "block");
- }else{
- this.propertiesNode.setStyle("display", "none");
- }
- e.stopPropagation();
- }.bind(this));
- 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", [{
- compareName: "."+this.getName() + ".editShow"
- }]);
- 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", [{
- compareName: "."+this.getName() + ".readShow"
- }]);
- 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));
- }
- });
|