123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676 |
- MWF.xApplication = MWF.xApplication || {};
- MWF.xApplication.query = MWF.xApplication.query || {};
- MWF.xApplication.query.StatDesigner = MWF.xApplication.query.StatDesigner || {};
- MWF.APPDSTD = MWF.xApplication.query.StatDesigner;
- MWF.xDesktop.requireApp("query.StatDesigner", "lp."+MWF.language, null, false);
- MWF.xDesktop.requireApp("query.ViewDesigner", "ViewBase", null, false);
- MWF.xDesktop.requireApp("query.StatDesigner", "Property", null, false);
- MWF.xApplication.query.StatDesigner.Stat = new Class({
- Extends: MWF.xApplication.query.ViewDesigner.ViewBase,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "isView": false,
- "showTab": true,
- "propertyPath": "../x_component_query_StatDesigner/$Stat/stat.html"
- },
- initialize: function(designer, data, options){
- this.setOptions(options);
- this.path = "../x_component_query_StatDesigner/$Stat/";
- this.cssPath = "../x_component_query_StatDesigner/$Stat/"+this.options.style+"/css.wcss";
- this._loadCss();
- this.designer = designer;
- this.data = data;
- if (!this.data.data) this.data.data = {};
- this.parseData();
- this.node = this.designer.designNode;
- this.areaNode = new Element("div", {"styles": {"height": "100%", "overflow": "auto"}});
- this.propertyListNode = this.designer.propertyDomArea;
- if(this.designer.application) this.data.applicationName = this.designer.application.name;
- if(this.designer.application) this.data.application = this.designer.application.id;
- this.isNewView = (this.data.id) ? false : true;
- this.items = [];
- this.view = this;
- this.queryView = null;
- this.autoSave();
- this.designer.addEvent("queryClose", function(){
- if (this.autoSaveTimerID) window.clearInterval(this.autoSaveTimerID);
- }.bind(this));
- },
- changeViewSelected: function(){
- if (this.json.view){
- if (!this.queryView){
- this.designer.actions.getView(this.json.view, function(view){
- this.queryView = JSON.decode(view.data.data);
- this.items.each(function(item){
- item.changeViewSelected(this.queryView);
- }.bind(this));
- this.checkIsGroupRadioDisplay();
- }.bind(this));
- }else{
- this.items.each(function(item){
- item.changeViewSelected(this.queryView);
- }.bind(this));
- this.checkIsGroupRadioDisplay();
- }
- }else{
- //item.changeViewSelected();
- }
- },
- checkIsGroupRadioDisplay: function(){
- if (this.property){
- var groupNode = this.property.propertyContent.getElement(".MWFIsGroupArea");
- if (groupNode){
- if (this.queryView.group.column){
- groupNode.setStyle("display", "block");
- }else{
- this.json.data.calculate.isGroup = false;
- var radios = groupNode.getElements("input");
- for (var i=0; i<radios.length; i++){
- if (radios[i].value=="false"){
- radios[i].set("checked", true);
- break;
- }
- }
- this.hideGroupTitle();
- groupNode.setStyle("display", "none");
- }
- }
- }
- },
- checkIsGroupRadio: function(){
- if (!this.queryView){
- this.designer.actions.getView(this.json.view, function(view){
- this.queryView = JSON.decode(view.data.data);
- this.checkIsGroupRadioDisplay();
- }.bind(this));
- }else{
- this.checkIsGroupRadioDisplay();
- }
- },
- showProperty: function(){
- if (!this.property){
- this.property = new MWF.xApplication.query.StatDesigner.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();
- }
- },
- //getDataTr: function(ri){
- // var tr = null;
- // var trs = this.viewContentTableNode.getElements("tr");
- // if (trs.length) if (trs[ri]) tr = trs[ri];
- // return tr;
- //},
- //getDataTd: function(tr, ci){
- // var td = null;
- // var tds = tr.getElements("td");
- // if (tds.length) if (tds[ci]) td = tds[ci];
- // return td;
- //},
- //getDataLastColumnCell: function(ri, ci){
- // var trs = this.viewContentTableNode.getElements("tr");
- // if (trs.length) if (trs[ri]) tr = trs[ri];
- // var td = null;
- // var tds = tr.getElements("td");
- // if (tds.length) if (tds[ci]) td = tds[ci];
- // return td;
- //},
- loadViewData: function(){
- if (this.data.id){
- this.saveSilence(function(){
- this.viewContentBodyNode.empty();
- this.viewContentTableNode = new Element("table", {
- "styles": this.css.viewContentTableNode,
- "border": "0px",
- "cellPadding": "0",
- "cellSpacing": "0"
- }).inject(this.viewContentBodyNode);
- this.designer.actions.loadStat(this.data.id, null, function(json){
- var entries = {};
- json.data.calculate.calculateList.each(function(entry){entries[entry.id] = entry;}.bind(this));
- if (this.json.data.calculate.isGroup){
- if (json.data.calculateGrid.length){
- json.data.calculateGrid.each(function(d){
- // var groupColumn = null;
- // for (var c = 0; c<json.data.calculate.calculateList.length; c++){
- // if (json.data.calculate.calculateList[c].column === json.data.group.column){
- // groupColumn = json.data.calculate.calculateList[c];
- // break;
- // }
- // }
- var tr = new Element("tr", {"styles": this.css.viewContentTrNode}).inject(this.viewContentTableNode);
- var td = new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr);
- // if (groupColumn){
- // td.set("text", (groupColumn.code) ? MWF.Macro.exec(groupColumn.code, {"value": d.group, "data": json.data}) : d.group);
- // }else{
- td.set("text", d.group);
- // }
- //td.set("text", d.group);
- td.setStyle("font-weight", "bold");
- d.list.each(function(c){
- var td = new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr);
- td.set("text", (entries[c.column].code) ? MWF.Macro.exec(entries[c.column].code, {"value": c.value, "data": json.data}) : c.value);
- }.bind(this));
- }.bind(this));
- }
- if (json.data.calculateAmountGrid){
- var tr = new Element("tr", {"styles": this.css.viewContentTrNode}).inject(this.viewContentTableNode);
- var td = new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr);
- td.set("text", this.designer.lp.amount);
- td.setStyles({"font-weight": "bold", "color": "#0000FF"});
- json.data.calculateAmountGrid.each(function(c){
- var td = new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr);
- td.set("text", c.value);
- td.setStyles({"font-weight": "bold", "color": "#0000FF"});
- }.bind(this));
- }
- }else{
- if (json.data.calculateGrid.length){
- var tr = new Element("tr", {"styles": this.css.viewContentTrNode}).inject(this.viewContentTableNode);
- json.data.calculateGrid.each(function(d){
- var td = new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr);
- td.set("text", d.value);
- }.bind(this));
- }
- }
- this.setContentColumnWidth();
- this.setContentHeight();
- }.bind(this));
- }.bind(this));
- }
- },
- preview: function(){
- if( this.isNewView ){
- this.designer.notice( this.designer.lp.saveViewNotice, "error" );
- return;
- }
- this.saveSilence( function () {
- var url = "../x_desktop/app.html?app=query.Query&status=";
- url += JSON.stringify({
- id : this.data.application,
- statId : this.data.id
- });
- window.open(o2.filterUrl(url),"_blank");
- }.bind(this));
- },
- addColumn: function(){
- MWF.require("MWF.widget.UUID", function(){
- var id = (new MWF.widget.UUID).id;
- var json = {
- "id": id,
- "column": "",
- "displayName": this.designer.lp.unnamed,
- "calculateType": "sum",
- "orderType": "original",
- "orderEffectType": "key",
- "formatType": "number"
- };
- if (!this.json.data.calculate.calculateList) this.json.data.calculate.calculateList = [];
- this.json.data.calculate.calculateList.push(json);
- var column = new MWF.xApplication.query.StatDesigner.Stat.Column(json, this);
- this.items.push(column);
- column.selected();
- if (this.property) this.property.loadStatColumnSelect();
- if (this.viewContentTableNode){
- var trs = this.viewContentTableNode.getElements("tr");
- trs.each(function(tr){
- new Element("td", {"styles": this.css.viewContentTdNode}).inject(tr)
- }.bind(this));
- //this.setContentColumnWidth();
- }
- this.setViewWidth();
- this.addColumnNode.scrollIntoView(false);
- }.bind(this));
- //new Fx.Scroll(this.view.areaNode, {"wheelStops": false, "duration": 0}).toRight();
- },
- loadViewColumns: function(){
- // for (var i=0; i<10; i++){
- if (this.json.data && this.json.data.calculate && this.json.data.calculate.calculateList) {
- this.json.data.calculate.calculateList.each(function (json) {
- this.items.push(new MWF.xApplication.query.StatDesigner.Stat.Column(json, this));
- }.bind(this));
- }
- // }
- },
- saveSilence: function(callback){
- if (!this.data.name){
- this.designer.notice(this.designer.lp.notice.inputName, "error");
- return false;
- }
- // if (!this.data.view){
- // this.designer.notice(this.designer.lp.notice.inputView, "error");
- // return false;
- // }
- if (!this.checkViewAndColumn()){
- this.designer.notice(this.designer.lp.notice.errorViewColumn, "error");
- return false;
- }
- this.designer.actions.saveStat(this.data, function(json){
- this.data.id = json.data.id;
- if (this.lisNode) {
- this.lisNode.getLast().set("text", this.data.name+"("+this.data.alias+")");
- }
- if (callback) callback();
- }.bind(this));
- },
- save: function(callback){
- //if (this.designer.tab.showPage==this.page){
- if (!this.data.name){
- this.designer.notice(this.designer.lp.notice.inputName, "error");
- return false;
- }
- // if (!this.data.view){
- // this.designer.notice(this.designer.lp.notice.inputView, "error");
- // return false;
- // }
- if (!this.checkViewAndColumn()){
- this.designer.notice(this.designer.lp.notice.errorViewColumn, "error");
- return false;
- }
- //}
- this.designer.actions.saveStat(this.data, function(json){
- this.designer.notice(this.designer.lp.notice.save_success, "success", this.node, {"x": "left", "y": "bottom"});
- this.data.id = json.data.id;
- if (this.lisNode) {
- this.lisNode.getLast().set("text", this.data.name+"("+this.data.alias+")");
- }
- if (callback) callback();
- }.bind(this));
- },
- checkViewAndColumn: function(){
- // if (this.json.view){
- var flag = true;
- for (var i = 0; i<this.items.length; i++){
- if (!this.items[i].checkColumn()) flag = false;
- }
- return flag;
- // }else{
- // return false;
- // }
- },
- _setEditStyle: function(name, input, oldValue){
- // if (name=="view"){
- // if (this.data.view!=oldValue){
- // this.viewContentBodyNode.empty();
- // this.designer.actions.getView(this.json.view, function(view){
- // this.queryView = JSON.decode(view.data.data);
- // }.bind(this), null, false);
- //
- // this.changeViewSelected();
- // this.checkViewAndColumn();
- // }
- // }
- if (name=="data.calculate.isGroup"){
- this.viewContentBodyNode.empty();
- if (this.data.data.calculate.isGroup){
- this.showGroupTitle();
- }else{
- this.hideGroupTitle();
- }
- }
- if (name=="data.calculate.title"){
- if (!this.data.data.calculate.title){
- this.data.data.calculate.title = this.designer.lp.category;
- }
- if (this.data.data.calculate.title!= oldValue){
- if (this.groupTitleNode){
- this.groupTitleNode.getFirst().getFirst().set("text", this.data.data.calculate.title);
- }
- }
- }
- },
- showGroupTitle: function(){
- if (!this.groupTitleNode) this.createGroupTitltNode();
- },
- hideGroupTitle: function(){
- if (this.groupTitleNode){
- this.groupTitleNode.destroy();
- this.groupTitleNode = null;
- }
- },
- createGroupTitltNode: function(){
- this.data.data.calculate.title = this.data.data.calculate.title || this.designer.lp.category;
- this.groupTitleNode = new Element("td", {"styles": this.css.viewGroupTitleNode});
- var node = new Element("div", {
- "styles": this.css.viewGroupTitleColumnNode
- }).inject(this.groupTitleNode);
- var textNode = new Element("div", {
- "styles": this.css.viewGroupTitleColumnTextNode,
- "text": this.data.data.calculate.title
- }).inject(node);
- if (this.items.length){
- this.groupTitleNode.inject(this.items[0].areaNode, "before");
- }else{
- this.groupTitleNode.inject(this.viewTitleTrNode);
- }
- },
- saveAs: function(){
- var form = new MWF.xApplication.query.StatDesigner.Stat.NewNameForm(this, {
- name : this.data.name + "_" + MWF.xApplication.query.StatDesigner.LP.copy,
- view : this.data.view,
- query : this.data.query || this.data.application,
- queryName : this.data.queryName || this.data.applicationName
- }, {
- onSave : function( data, callback ){
- this._saveAs( data, callback );
- }.bind(this)
- }, {
- app: this.designer
- });
- form.edit()
- },
- explode: function(){},
- implode: function(){},
- _saveAs : function( data , callback){
- var _self = this;
- var d = Object.clone( this.data );
- d.isNewView = true;
- d.id = this.designer.actions.getUUID();
- d.name = data.name;
- d.alias = "";
- d.query = data.query;
- d.queryName = data.queryName;
- d.application = data.query;
- d.applicationName = data.queryName;
- d.view = data.view;
- //d.pid = d.id + d.id;
- //delete d[this.data.id+"viewFilterType"];
- //d[d.id+"viewFilterType"]="custom";
- if( d.data.calculate && d.data.calculate.calculateList ){
- d.data.calculate.calculateList.each( function( entry ){
- entry.id = (new MWF.widget.UUID).id;
- }.bind(this));
- }
- this.designer.actions.saveStat(d, function(json){
- this.designer.notice(this.designer.lp.notice.saveAs_success, "success", this.node, {"x": "left", "y": "bottom"});
- if (callback) callback();
- }.bind(this));
- }
- //_setEditStyle: function(){}
- });
- MWF.xApplication.query.StatDesigner.Stat.Column = new Class({
- Extends:MWF.xApplication.query.ViewDesigner.ViewBase.Column,
- initialize: function(json, view, next){
- this.propertyPath = "../x_component_query_StatDesigner/$Stat/column.html";
- this.view = view;
- this.json = json;
- this.next = next;
- this.css = this.view.css;
- this.content = this.view.viewTitleTrNode;
- this.domListNode = this.view.domListNode;
- this.load();
- },
- showProperty: function(){
- if (!this.property){
- this.property = new MWF.xApplication.query.StatDesigner.Property(this, this.view.designer.propertyContentArea, this.view.designer, {
- "path": this.propertyPath,
- "onPostLoad": function(){
- this.property.show();
- this.changeViewSelected();
- }.bind(this)
- });
- this.property.load();
- }else{
- this.property.show();
- }
- },
- _setEditStyle: function(name, input, oldValue){
- //if (name=="displayName") this.resetTextNode();
- //if (name=="selectType") this.resetTextNode();
- //if (name=="attribute") this.resetTextNode();
- //if (name=="path") this.resetTextNode();
- if (name=="displayName") this.resetTextNode();
- if (name=="column") this.checkColumn();
- if (name=="view"){
- if (this.json.view!=oldValue){
- this.view.viewContentBodyNode.empty();
- this.view.designer.actions.getView(this.json.view, function(view){
- this.queryView = JSON.decode(view.data.data);
- }.bind(this), null, false);
- this.changeViewSelected();
- //this.checkViewAndColumn();
- }
- }
- },
- resetTextNode: function(){
- var listText = this.json.displayName+"("+this.json.calculateType+")";
- this.textNode.set("text", this.json.displayName);
- this.listNode.getLast().set("text", listText);
- if (this.view.property) this.view.property.loadStatColumnSelect();
- },
- "delete": function(e){
- var _self = this;
- if (!e) e = this.node;
- this.view.designer.confirm("warn", e, MWF.APPDSTD.LP.notice.deleteColumnTitle, MWF.APPDSTD.LP.notice.deleteColumn, 300, 120, function(){
- _self.destroy();
- this.close();
- }, function(){
- this.close();
- }, null);
- },
- addColumn: function(e, data){
- MWF.require("MWF.widget.UUID", function(){
- var json;
- if (data){
- json = Object.clone(data);
- json.id = (new MWF.widget.UUID).id;
- json.column = (new MWF.widget.UUID).id;
- }else{
- var id = (new MWF.widget.UUID).id;
- json = {
- "id": id,
- "column": "",
- "displayName": this.view.designer.lp.unnamed,
- "calculateType": "sum",
- "orderType": "original",
- "orderEffectType": "key",
- "formatType": "number"
- };
- }
- var idx = this.view.json.data.calculate.calculateList.indexOf(this.json);
- this.view.json.data.calculate.calculateList.splice(idx, 0, json);
- var column = new MWF.xApplication.query.StatDesigner.Stat.Column(json, this.view, this);
- this.view.items.splice(idx, 0, column);
- column.selected();
- if (this.view.property) this.view.property.loadStatColumnSelect();
- if (this.view.viewContentTableNode){
- var trs = this.view.viewContentTableNode.getElements("tr");
- trs.each(function(tr){
- var td = tr.insertCell(idx);
- td.setStyles(this.css.viewContentTdNode);
- }.bind(this));
- }
- this.view.setViewWidth();
- }.bind(this));
- },
- _setNodeMove: function(droppables, e){
- this._setMoveNodePosition(e);
- var movePosition = this.moveNode.getPosition();
- var moveSize = this.moveNode.getSize();
- var contentPosition = this.content.getPosition();
- var contentSize = this.content.getSize();
- var nodeDrag = new Drag.Move(this.moveNode, {
- "droppables": droppables,
- "limit": {
- "x": [contentPosition.x, contentPosition.x+contentSize.x],
- "y": [movePosition.y, movePosition.y+moveSize.y]
- },
- "onEnter": function(dragging, inObj){
- if (!this.moveFlagNode) this.createMoveFlagNode();
- this.moveFlagNode.inject(inObj, "before");
- }.bind(this),
- "onLeave": function(dragging, inObj){
- if (this.moveFlagNode){
- this.moveFlagNode.dispose();
- }
- }.bind(this),
- "onDrop": function(dragging, inObj){
- if (inObj){
- this.areaNode.inject(inObj, "before");
- var column = inObj.retrieve("column");
- this.listNode.inject(column.listNode, "before");
- // var idx = this.view.json.data.calculate.calculateList.indexOf(column.json);
- this.view.json.data.calculate.calculateList.erase(this.json);
- this.view.items.erase(this);
- var idx = this.view.json.data.calculate.calculateList.indexOf(column.json);
- this.view.json.data.calculate.calculateList.splice(idx, 0, this.json);
- this.view.items.splice(idx, 0, this);
- if (this.moveNode) this.moveNode.destroy();
- if (this.moveFlagNode) this.moveFlagNode.destroy();
- this._setActionAreaPosition();
- }else{
- if (this.moveNode) this.moveNode.destroy();
- if (this.moveFlagNode) this.moveFlagNode.destroy();
- }
- }.bind(this),
- "onCancel": function(dragging){
- if (this.moveNode) this.moveNode.destroy();
- if (this.moveFlagNode) this.moveFlagNode.destroy();
- }.bind(this)
- });
- nodeDrag.start(e);
- },
- changeViewSelected: function(json){
- if (json){
- this.changeViewColumnOptions(json);
- }else{
- if (this.json.view){
- if (!this.queryView){
- this.view.designer.actions.getView(this.json.view, function(view){
- this.queryView = JSON.decode(view.data.data);
- this.changeViewColumnOptions(this.queryView);
- }.bind(this));
- }else{
- this.changeViewColumnOptions(this.queryView);
- }
- }else{
- this.changeViewColumnOptions(json);
- }
- }
- },
- changeViewColumnOptions: function(json){
- if (this.property){
- var nodes = this.property.propertyContent.getElements(".MWFViewColumnSelect");
- nodes.each(function(node){
- node.empty();
- if (json){
- new Element("option", {
- "value": "",
- "text": "(none)",
- "selected": (!this.json.column)
- }).inject(node);
- json.selectList.each(function(col){
- var o = new Element("option", {
- "value": col.column,
- "text": col.displayName,
- "selected": (col.column==this.json.column)
- }).inject(node);
- }.bind(this));
- }else{
- this.json.column = "";
- }
- }.bind(this));
- }
- },
- checkColumn: function(){
- var flag = true;
- if (!this.queryView){
- if (this.json.view){
- this.view.designer.actions.getView(this.json.view, function(view){
- this.queryView = JSON.decode(view.data.data);
- }.bind(this), null, false);
- }else{
- this.errorMark();
- return false;
- }
- }
- var col = this.queryView.selectList.filter(function(c){
- return (c.column==this.json.column);
- }.bind(this));
- if (!col.length){
- this.errorMark();
- flag = false;
- }else{
- this.errorMark(true);
- }
- return flag;
- },
- errorMark: function(flag){
- if (flag){
- this.isError = false;
- if (!this.isSelected) this.node.setStyles(this.css.viewTitleColumnNode);
- }else{
- this.isError = true;
- if (!this.isSelected) this.node.setStyles(this.css.viewTitleColumnNode_error);
- }
- }
- });
|