MWF.xDesktop.requireApp("query.QueryManager", "StatExplorer", null, false); MWF.xApplication.query.QueryManager.TableExplorer = new Class({ Extends: MWF.xApplication.query.QueryManager.StatExplorer, Implements: [Options, Events], options: { "style": "default", "tooltip": { "create": MWF.xApplication.query.QueryManager.LP.table.create, "search": MWF.xApplication.query.QueryManager.LP.table.search, "searchText": MWF.xApplication.query.QueryManager.LP.table.searchText, "noElement": MWF.xApplication.query.QueryManager.LP.table.noStatNoticeText }, "categoryEnable": true, "itemStyle": "card", "name": 'query.TableExplorer' }, initialize: function(node, actions, options){ this.setOptions(options); this.setTooltip(); this.path = "../x_component_query_QueryManager/$Explorer/"; this.cssPath = "../x_component_process_ProcessManager/$Explorer/"+this.options.style+"/css.wcss"; this._loadCss(); this.actions = actions; this.node = $(node); this.initData(); }, openFindDesigner: function(){ this.app.options.application.moduleType = "query"; var options = { "filter": { "moduleList": ["query"], "appList": [this.app.options.application] } }; layout.openApplication(null, "FindDesigner", options); }, keyCopy: function(e){ if (this.selectMarkItems.length){ var items = []; var i = 0; var checkItems = function(e){ if (i>=this.selectMarkItems.length){ if (items.length){ var str = JSON.encode(items); if (e){ e.clipboardData.setData('text/plain', str); }else { window.clipboardData.setData("Text", str); } this.app.notice(this.app.lp.copyed, "success"); } } }.bind(this); this.selectMarkItems.each(function(item){ this.app.restActions.getTable(item.data.id, function(json){ json.data.elementType = "table"; items.push(json.data); i++; checkItems(e); }.bind(this), null, false) }.bind(this)); if (e) e.preventDefault(); } }, keyPaste: function(e){ var dataStr = ""; if (e){ dataStr = e.clipboardData.getData('text/plain'); }else{ dataStr = window.clipboardData.getData("Text"); } var data = JSON.decode(dataStr); this.pasteItem(data, 0); }, pasteItem: function(data, i){ if (i"; html += "
"+lp.copySource+" "+someItem.name+"
"; html += "
"+(someItem.lastUpdateTime || someItem.updateTime)+"
" + "
"+MWF.name.cn(someItem.lastUpdatePerson || "")+"
" + "
"+((d1>=d2) ? "": lp.copynew)+"
"; html += "
"+lp.copyTarget+" "+data.name+"
"; html += "
"+(data.lastUpdateTime || data.updateTime)+"
" + "
"+MWF.name.cn(data.lastUpdatePerson || "")+"
" + "
"+((d1<=d2) ? "": lp.copynew)+"
"; // html += "<>" this.app.dlg("inofr", null, this.app.lp.copyConfirmTitle, {"html": html}, 500, 290, [ { "text": lp.copyConfirm_overwrite, "action": function(){_self.saveItemAsUpdate(someItem, data, success, failure);this.close();} }, { "text": lp.copyConfirm_new, "action": function(){_self.saveItemAsNew(dJson, data, success, failure);this.close();} }, { "text": lp.copyConfirm_skip, "action": function(){/*nothing*/ this.close(); if (success) success();} }, { "text": lp.copyConfirm_cancel, "action": function(){this.close(); if (cancel) cancel();} } ]); }else{ this.saveItemAsNew(dJson, data, success, failure) } }.bind(this), function(){if (failure) failure();}.bind(this)); }, saveItemAsUpdate: function(someItem, data, success, failure){ var item = this.app.options.application; var id = item.id; var name = item.name; //var dataJson = (data.data) ? JSON.decode(data.data): ""; var draftDataJson = (data.draftData) ? JSON.decode(data.draftData): ""; data.draftData = draftDataJson; data.status = "draft"; var dataJson = (data.data) ? JSON.decode(data.data): ""; data.data = dataJson; data.data.id = someItem.id; data.data = JSON.encode(data.data); data.id = someItem.id; data.isNewTable = false; data.application = id; data.applicationName = name; this.app.restActions.saveTable(data, function(){ if (success) success(); }.bind(this), function(){ if (failure) failure(); }.bind(this)); }, saveItemAsNew: function(dJson, data, success, failure){ var item = this.app.options.application; var id = item.id; var name = item.name; var oldName = data.name; var i=1; while (dJson.data.some(function(d){ return d.name==data.name || d.alias==data.name })){ data.name = oldName+"_copy"+i; data.alias = oldName+"_copy"+i; i++; } var draftDataJson = (data.draftData) ? JSON.decode(data.draftData): ""; data.draftData = draftDataJson; var dataJson = (data.data) ? JSON.decode(data.data): ""; data.data = dataJson; data.data.id = ""; data.data = JSON.encode(data.data); data.id = ""; data.isNewTable = true; data.application = id; data.applicationName = name; this.app.restActions.saveTable(data, function(){ if (success) success(); }.bind(this), function(){ if (failure) failure(); }.bind(this)); }, _createElement: function(e){ var _self = this; var options = { "application":{ "name": _self.app.options.application.name, "id": _self.app.options.application.id }, "onQueryLoad": function(){ this.actions = _self.app.restActions; this.application = _self.app.options.application; this.explorer = _self; } }; this.app.desktop.openApplication(e, "query.TableDesigner", options); }, _loadItemDataList: function(callback){ this.app.restActions.listTable(this.app.options.application.id,callback); }, _getItemObject: function(item){ return new MWF.xApplication.query.QueryManager.TableExplorer.Table(this, item); }, deleteItems: function(){ this.hideDeleteAction(); while (this.deleteMarkItems.length){ var item = this.deleteMarkItems.shift(); if (this.deleteMarkItems.length){ item.deleteTable(); }else{ item.deleteTable(function(){ //this.reloadItems(); //this.hideDeleteAction(); }.bind(this)); } } } }); MWF.xApplication.query.QueryManager.TableExplorer.Table= new Class({ Extends: MWF.xApplication.query.QueryManager.StatExplorer.Stat, createIconNode: function(){ if (this.data.icon) this.icon = this.data.icon.substr(this.data.icon.lastIndexOf("/")+1, this.data.icon.length); //if (this.data.name.icon) this.icon = this.data.name.icon; var iconUrl = this.explorer.path+""+this.explorer.options.style+"/processIcon/"+this.icon; var itemIconNode = new Element("div", { "styles": this.explorer.options.itemStyle === 'line' ? this.css.itemIconNode_line : this.css.itemIconNode }).inject(this.node); itemIconNode.setStyle("background", "url("+iconUrl+") center center no-repeat"); if( o2.AC.isQueryManager() ){ itemIconNode.addEvent("click", function(e){ this.toggleSelected(); e.stopPropagation(); }.bind(this)); } itemIconNode.makeLnk({ "par": this._getLnkPar() }); }, _open: function(e){ var _self = this; var options = { "appId": "query.TableDesigner"+_self.data.id, "id": _self.data.id, // "application":_self.explorer.app.options.application.id, "application":{ "name": _self.explorer.app.options.application.name, "id": _self.explorer.app.options.application.id }, "onQueryLoad": function(){ this.actions = _self.explorer.actions; this.category = _self; this.options.id = _self.data.id; this.application = _self.explorer.app.options.application; } }; this.explorer.app.desktop.openApplication(e, "query.TableDesigner", options); }, _getIcon: function(){ var x = (Math.random()*49).toInt(); return "process_icon_"+x+".png"; }, _getLnkPar: function(){ return { "icon": this.explorer.path+this.explorer.options.style+"/tableIcon/lnk.png", "title": this.data.name, "par": "query.TableDesigner#{\"appId\": \"query.TableDesigner"+this.data.id+"\", \"id\": \""+this.data.id+"\", \"applicationId\": \""+this.data.query+"\"}" }; }, deleteTable: function(callback){ this.explorer.actions.deleteTable(this.data.id, function(){ this.node.destroy(); if (callback) callback(); }.bind(this)); }, saveas: function(){ MWF.xDesktop.requireApp("Selector", "package", function(){ var selector = new MWF.O2Selector(this.explorer.app.content, { "title": this.explorer.app.lp.copyto, "type": "Query", "values": [this.explorer.app.options.application], "onComplete": function(items){ items.each(function(item){ this.saveItemAs(item.data); }.bind(this)); }.bind(this), }); }.bind(this)); }, saveItemAs: function(item){ var id = item.id; var name = item.name; this.explorer.app.restActions.getTable(this.data.id, function(json){ var data = json.data; var draftDataJson = (data.draftData) ? JSON.decode(data.draftData): ""; data.draftData = draftDataJson; var data = json.data; var dataJson = (data.data) ? JSON.decode(data.data): ""; data.data = dataJson; data.status = "draft"; data.data.id = ""; data.data = JSON.encode(data.data); var oldName = data.name; o2.Actions.load("x_query_assemble_designer").TableAction.manageList(function(dJson){ var i=1; while (dJson.data.some(function(d){ return (d.name && d.name==data.name) || (d.alias && d.alias==data.name) })){ data.name = oldName+"_copy"+i; data.alias = oldName+"_copy"+i; i++; } data.id = ""; data.isNewTable = true; data.application = id; data.applicationName = name; this.explorer.app.restActions.saveTable(data, function(){ if (id == this.explorer.app.options.application.id) this.explorer.reload(); }.bind(this)); }.bind(this)); }.bind(this)); } });