123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- MWF.xApplication = MWF.xApplication || {};
- MWF.xApplication.portal = MWF.xApplication.portal || {};
- MWF.xApplication.ConfigDesigner = MWF.xApplication.ConfigDesigner || {};
- MWF.require("MWF.widget.Common", null, false);
- MWF.xDesktop.requireApp("ConfigDesigner", "lp."+MWF.language, null, false);
- MWF.require("MWF.widget.JavascriptEditor", null, false);
- MWF.xApplication.ConfigDesigner.Script = new Class({
- Extends: MWF.widget.Common,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "showTab": true
- },
- initialize: function(designer, data, options){
- this.setOptions(options);
- this.path = "../x_component_portal_ScriptDesigner/$Script/";
- this.cssPath = "../x_component_portal_ScriptDesigner/$Script/"+this.options.style+"/css.wcss";
- this._loadCss();
- this.isChanged = false;
- this.designer = designer;
- this.data = data;
- if (!this.data.text) this.data.text = "";
- this.node = this.designer.designNode;
- this.tab = this.designer.scriptTab;
- this.areaNode = new Element("div", {"styles": {"overflow": "hidden", "height": "700px"}});
- this.propertyIncludeNode = this.designer.propertyDomArea;
- this.propertyNode = this.designer.propertyContentArea
- if(this.designer.application) this.data.applicationName = this.designer.application.name;
- if(this.designer.application) this.data.application = this.designer.application.id;
- this.isNewScript = (this.data.id) ? false : true;
- // this.createProperty();
- this.autoSave();
- this.designer.addEvent("queryClose", function(){
- if (this.autoSaveTimerID) window.clearInterval(this.autoSaveTimerID);
- }.bind(this));
- },
- autoSave: function(){
- this.autoSaveTimerID = window.setInterval(function(){
- if (!this.autoSaveCheckNode) this.autoSaveCheckNode = this.designer.contentToolbarNode.getElement("#MWFScriptAutoSaveCheck");
- if (this.autoSaveCheckNode){
- if (this.autoSaveCheckNode.get("checked")){
- if (this.isChanged) this.saveSilence();
- }
- }
- }.bind(this), 60000);
- },
- //createProperty: function(){
- // this.scriptPropertyNode = new Element("div", {"styles": this.css.scriptPropertyNode}).inject(this.propertyNode);
- //},
- load : function(){
- this.setAreaNodeSize();
- this.designer.addEvent("resize", this.setAreaNodeSize.bind(this));
- this.page = this.tab.addTab(this.areaNode, this.data.name || this.designer.lp.newScript, (!this.data.isNewScript && this.data.id!=this.designer.options.id));
- this.page.script = this;
- this.page.addEvent("show", function(){
- this.designer.scriptListAreaNode.getChildren().each(function(node){
- var scrtip = node.retrieve("script");
- if (scrtip.id==this.data.id){
- if (this.designer.currentListScriptItem){
- this.designer.currentListScriptItem.setStyles(this.designer.css.listScriptItem);
- }
- node.setStyles(this.designer.css.listScriptItem_current);
- this.designer.currentListScriptItem = node;
- this.lisNode = node;
- }
- }.bind(this));
- this.designer.currentScript = this;
- this.setPropertyContent();
- // this.setIncludeNode();
- if (this.editor){
- this.editor.focus();
- //this.editor.editor.navigateFileStart();
- }
- }.bind(this));
- this.page.addEvent("queryClose", function(){
- if (this.autoSaveTimerID) window.clearInterval(this.autoSaveTimerID);
- //if (this.isChanged) this.saveSilence();
- if (this.lisNode) this.lisNode.setStyles(this.designer.css.listScriptItem);
- }.bind(this));
- this.page.tabNode.addEvent("dblclick", this.designer.maxOrReturnEditor.bind(this.designer));
- this.editor = new MWF.widget.JavascriptEditor(this.areaNode,{"option": {
- value: "",
- mode: "json",
- "lineNumbers": true
- }});
- this.editor.load(function(){
- if (this.data.text){
- this.editor.setValue(this.data.text);
- }
- this.editor.addEditorEvent("change", function(){
- if (!this.isChanged){
- this.isChanged = true;
- this.page.textNode.set("text", " * "+this.page.textNode.get("text"));
- }
- }.bind(this));
- // this.editor.editor.on("change", function(e){
- // if (!this.isChanged){
- // this.isChanged = true;
- // this.page.textNode.set("text", " * "+this.page.textNode.get("text"));
- // }
- // }.bind(this));
- this.editor.addEvent("save", function(){
- this.save();
- }.bind(this));
- // this.editor.addEvent("reference", function(editor, e, e1){
- // if (!this.scriptReferenceMenu){
- // MWF.require("MWF.widget.ScriptHelp", function(){
- // this.scriptReferenceMenu = new MWF.widget.ScriptHelp(null, this.editor.editor, {
- // "onPostLoad": function(){
- // this.showReferenceMenu();
- // }.bind(this)
- // });
- // this.scriptReferenceMenu.getEditor = function(){return this.editor.editor;}.bind(this)
- // }.bind(this));
- // }else{
- // this.showReferenceMenu();
- // }
- // }.bind(this));
- var options = this.designer.styleSelectNode.options;
- for (var i=0; i<options.length; i++){
- var option = options[i];
- if (option.value==this.editor.theme){
- option.set("selected", true);
- break;
- }
- }
- options = this.designer.fontsizeSelectNode.options;
- for (var i=0; i<options.length; i++){
- var option = options[i];
- if (option.value==this.editor.fontSize){
- option.set("selected", true);
- break;
- }
- }
- options = this.designer.editorSelectNode.options;
- for (var i=0; i<options.length; i++){
- var option = options[i];
- if (option.value==this.editor.options.type){
- option.set("selected", true);
- break;
- }
- }
- options = this.designer.monacoStyleSelectNode.options;
- for (var i=0; i<options.length; i++){
- var option = options[i];
- if (option.value==this.editor.theme){
- option.set("selected", true);
- break;
- }
- }
- if (this.editor.options.type=="ace"){
- this.designer.monacoStyleSelectNode.hide();
- this.designer.styleSelectNode.show();
- }else{
- this.designer.monacoStyleSelectNode.show();
- this.designer.styleSelectNode.hide();
- }
- }.bind(this));
- if (this.options.showTab) this.page.showTabIm();
- },
- showReferenceMenu: function(){
- var pos = this.editor.getCursorPixelPosition();
- var e = {"page": {}};
- e.page.x = pos.left;
- e.page.y = pos.top;
- this.scriptReferenceMenu.menu.showIm(e);
- },
- setIncludeNode: function(){
- this.designer.propertyIncludeListArea.empty();
- this.data.dependScriptList.each(function(name){
- this.designer.addIncludeToList(name);
- }.bind(this));
- },
- setPropertyContent: function(){
- this.designer.propertyIdNode.set("text", this.data.id || "");
- this.designer.propertyNameNode.set("text", this.data.name || "");
- this.designer.propertyDescriptionNode.set("text", this.data.description || "");
- },
- setAreaNodeSize: function(){
- var size = this.node.getSize();
- var tabSize = this.tab.tabNodeContainer.getSize();
- var y = size.y - tabSize.y;
- this.areaNode.setStyle("height", ""+y+"px");
- if (this.editor) this.editor.resize();
- },
- addInclude: function(){
- },
- save: function(callback){
- if (!this.isSave){
- var validated = this.editor.validated();
- this.data.fileName = this.data.id;
- this.data.text = this.editor.getValue();
- this.data.fileContent = this.editor.getValue();
- this.data.nodeName = this.designer.propertyServerNode.getElement("option:selected").get("text");
- this.data.nodePort = this.designer.propertyServerNode.getElement("option:selected").get("value");
- this.isSave = true;
- this.designer.actions.ConfigAction.save(this.data, function(json){
- this.isSave = false;
- this.data.isNewScript = false;
- this.isChanged = false;
- this.page.textNode.set("text", this.data.name);
- if (this.lisNode) {
- this.lisNode.getLast().set("text", this.data.name);
- }
- this.designer.notice(this.designer.lp.notice.save_success, "success", this.node, {"x": "left", "y": "bottom"});
- //this.data.id = json.data.id;
- if (callback) callback();
- }.bind(this), function(xhr, text, error){
- this.isSave = false;
- var errorText = error+":"+text;
- if (xhr) errorText = xhr.responseText;
- MWF.xDesktop.notice("error", {x: "right", y:"top"}, "request json error: "+errorText);
- }.bind(this));
- }else{
- MWF.xDesktop.notice("info", {x: "right", y:"top"}, this.designer.lp.isSave);
- }
- },
- saveSilence: function(callback){
- if (!this.isSave){
- // var session = this.editor.editor.getSession();
- // var annotations = session.getAnnotations();
- // var validated = true;
- // for (var i=0; i<annotations.length; i++){
- // if (annotations[i].type=="error"){
- // validated = false;
- // break;
- // }
- // }
- var validated = this.editor.validated();
- if( this.designer.currentScript == this ){
- var name = this.designer.propertyNameNode.get("value");
- var alias = this.designer.propertyAliasNode.get("value");
- var description = this.designer.propertyDescriptionNode.get("value");
- if (!name){
- this.designer.notice(this.designer.lp.notice.inputName, "error");
- return false;
- }
- this.data.name = name;
- this.data.alias = alias;
- this.data.description = description;
- this.data.validated = validated;
- }
- this.data.text = this.editor.getValue();
- this.isSave = true;
- this.designer.actions.saveScript(this.data, function(json){
- this.isSave = false;
- this.data.isNewScript = false;
- this.isChanged = false;
- this.page.textNode.set("text", this.data.name);
- if (this.lisNode) {
- this.lisNode.getLast().set("text", this.data.name);
- }
- this.data.id = json.data.id;
- if (callback) callback();
- }.bind(this), function(xhr, text, error){
- this.isSave = false;
- //
- //var errorText = error+":"+text;
- //if (xhr) errorText = xhr.responseText;
- //MWF.xDesktop.notice("error", {x: "right", y:"top"}, "request json error: "+errorText);
- }.bind(this));
- }else{
- MWF.xDesktop.notice("info", {x: "right", y:"top"}, this.designer.lp.isSave);
- }
- },
- saveAs: function(){},
- explode: function(){},
- implode: function(){}
- });
|