123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685 |
- MWF.require("MWF.widget.Common", null, false);
- MWF.require("MWF.widget.JsonTemplate", null, false);
- MWF.xApplication.query.StatDesigner.Property = MWF.FVProperty = new Class({
- Extends: MWF.widget.Common,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "path": "../x_component_query_FormDesigner/property/property.html"
- },
-
- initialize: function(module, propertyNode, designer, options){
- this.setOptions(options);
- this.module = module;
- this.moduleId = module.json.id;
- this.view = module.view;
- this.data = module.json;
- this.htmlPath = this.options.path;
- this.designer = designer;
-
- this.propertyNode = propertyNode;
- },
- load: function(){
- if (this.fireEvent("queryLoad")){
- MWF.getRequestText(this.htmlPath, function(responseText, responseXML){
- this.htmlString = responseText;
- this.fireEvent("postLoad");
- }.bind(this));
- }
- this.propertyNode.addEvent("keydown", function(e){e.stopPropagation();});
- },
- editProperty: function(td){
- },
- getHtmlString: function(callback){
- if (!this.htmlString){
- MWF.getRequestText(this.htmlPath, function(responseText, responseXML){
- this.htmlString = responseText;
- if (callback) callback();
- }.bind(this));
- }else{
- if (callback) callback();
- }
- },
- show: function(){
- if (!this.propertyContent){
- this.getHtmlString(function(){
- if (this.htmlString){
- this.htmlString = o2.bindJson(this.htmlString, {"lp": MWF.xApplication.query.StatDesigner.LP.propertyTemplate});
- this.JsonTemplate = new MWF.widget.JsonTemplate(this.data, this.htmlString);
- this.propertyContent = new Element("div", {"styles": {"overflow": "hidden"}}).inject(this.propertyNode);
- this.propertyContent.set("html", this.JsonTemplate.load());
- this.setEditNodeEvent();
- this.setEditNodeStyles(this.propertyContent);
- this.loadPropertyTab();
- this.loadPersonInput();
- this.loadPersonSelectInput();
- this.loadViewSelect();
- this.loadStatColumnSelect();
- this.loadArrayList();
- this.loadScriptArea();
- this.loadJSONArea();
- //this.view.changeViewSelected();
- this.module.changeViewSelected();
- }
- }.bind(this));
- }else{
- this.propertyContent.setStyle("display", "block");
- }
- },
- hide: function(){
- //this.JsonTemplate = null;
- //this.propertyNode.set("html", "");
- if (this.propertyContent) this.propertyContent.setStyle("display", "none");
- },
- loadJSONArea: function(){
- var jsonNode = this.propertyContent.getElement(".MWFJSONArea");
- if (jsonNode){
- this.propertyTab.pages.each(function(page){
- if (page.contentNode == jsonNode.parentElement){
- page.setOptions({
- "onShow": function(){
- jsonNode.empty();
- MWF.require("MWF.widget.JsonParse", function(){
- this.json = new MWF.widget.JsonParse(this.module.json, jsonNode, null);
- this.json.load();
- }.bind(this));
- }.bind(this)
- });
- }
- }.bind(this));
- }
- },
- loadPropertyTab: function(){
- var tabNodes = this.propertyContent.getElements(".MWFTab");
- if (tabNodes.length){
- var tmpNode = this.propertyContent.getFirst();
- var tabAreaNode = new Element("div", {
- "styles": this.view.css.propertyTabNode
- }).inject(tmpNode, "before");
-
- MWF.require("MWF.widget.Tab", function(){
- var tab = new MWF.widget.Tab(tabAreaNode, {"style": "formPropertyList"});
- tab.load();
- var tabPages = [];
- tabNodes.each(function(node){
- var page = tab.addTab(node, node.get("title"), false);
- tabPages.push(page);
- this.setScrollBar(page.contentNodeArea, "small", null, null);
- }.bind(this));
- tabPages[0].showTab();
-
- this.propertyTab = tab;
-
- this.designer.resizeNode();
- }.bind(this), false);
- }
- },
-
- setEditNodeEvent: function(){
- var property = this;
- // var inputs = this.process.propertyListNode.getElements(".editTableInput");
- var inputs = this.propertyContent.getElements("input");
- inputs.each(function(input){
- var jsondata = input.get("name");
- if (jsondata && jsondata.substr(0,1)!="_"){
- if (this.module){
- var id = this.module.json.id;
- input.set("name", id+jsondata);
- }
- if (jsondata){
- var inputType = input.get("type").toLowerCase();
- switch (inputType){
- case "radio":
- input.addEvent("change", function(e){
- property.setRadioValue(jsondata, this);
- });
- //input.addEvent("blur", function(e){
- // property.setRadioValue(jsondata, this);
- //});
- input.addEvent("keydown", function(e){
- e.stopPropagation();
- });
- property.setRadioValue(jsondata, input);
- break;
- case "checkbox":
- input.addEvent("change", function(e){
- property.setCheckboxValue(jsondata, this);
- });
- input.addEvent("click", function(e){
- property.setCheckboxValue(jsondata, this);
- });
- input.addEvent("keydown", function(e){
- e.stopPropagation();
- });
- break;
- default:
- input.addEvent("change", function(e){
- property.setValue(jsondata, this.value, this);
- });
- input.addEvent("blur", function(e){
- property.setValue(jsondata, this.value, this);
- });
- input.addEvent("keydown", function(e){
- if (e.code==13){
- property.setValue(jsondata, this.value, this);
- }
- e.stopPropagation();
- });
- if (input.hasClass("editTableInputDate")){
- this.loadCalendar(input);
- }
- }
- }
- }
- }.bind(this));
-
- var selects = this.propertyContent.getElements("select");
- selects.each(function(select){
- var jsondata = select.get("name");
- if (jsondata){
- select.addEvent("change", function(e){
- property.setSelectValue(jsondata, this);
- });
- //property.setSelectValue(jsondata, select);
- }
- });
-
- var textareas = this.propertyContent.getElements("textarea");
- textareas.each(function(input){
- var jsondata = input.get("name");
- if (jsondata){
- input.addEvent("change", function(e){
- property.setValue(jsondata, this.value);
- });
- input.addEvent("blur", function(e){
- property.setValue(jsondata, this.value);
- });
- input.addEvent("keydown", function(e){
- e.stopPropagation();
- });
- }
- }.bind(this));
-
- },
- loadCalendar: function(node){
- MWF.require("MWF.widget.Calendar", function(){
- this.calendar = new MWF.widget.Calendar(node, {
- "style": "xform",
- "isTime": false,
- "target": this.module.designer.content,
- "format": "%Y-%m-%d",
- "onComplate": function(){
- //this.validationMode();
- //this.validation();
- //this.fireEvent("complete");
- }.bind(this)
- });
- //this.calendar.show();
- }.bind(this));
- },
- changeStyle: function(name){
- this.module.setPropertiesOrStyles(name);
- },
- changeData: function(name, input, oldValue){
- this.module._setEditStyle(name, input, oldValue);
- },
- changeJsonDate: function(key, value){
- if (typeOf(key)!="array") key = [key];
- var o = this.data;
- var len = key.length-1;
- key.each(function(n, i){
- if (!o[n]) o[n] = {};
- if (i<len) o = o[n];
- }.bind(this));
- o[key[len]] = value;
- },
- setRadioValue: function(name, input){
- if (input.checked){
- var i = name.indexOf("*");
- var names = (i==-1) ? name.split(".") : name.substr(i+1, name.length).split(".");
- var value = input.value;
- if (value=="false") value = false;
- if (value=="true") value = true;
- var oldValue = this.data;
- for (var idx = 0; idx<names.length; idx++){
- if (!oldValue[names[idx]]){
- oldValue = null;
- break;
- }else{
- oldValue = oldValue[names[idx]];
- }
- }
- //var oldValue = this.data[name];
- this.changeJsonDate(names, value);
- this.changeData(name, input, oldValue);
- }
- },
- setCheckboxValue: function(name, input){
- debugger;
- var i = name.indexOf("*");
- var names = (i==-1) ? name.split(".") : name.substr(i+1, name.length).split(".");
- var id = this.moduleId || this.module.json.id;
- var checkboxList = $$("input[name='"+id+name+"']");
- var values = [];
- checkboxList.each(function(checkbox){
- if (checkbox.get("checked")){
- values.push(checkbox.value);
- }
- });
- var o = this.data;
- names.each(function(k){ o = o[k]; }.bind(this));
- var oldValue = o;
- this.changeJsonDate(names, values);
- this.changeData(name, input, oldValue);
- },
- setSelectValue: function(name, select){
- var idx = select.selectedIndex;
- var options = select.getElements("option");
- var value = "";
- if (options[idx]){
- value = options[idx].get("value");
- }
- var oldValue = this.data[name];
- //this.data[name] = value;
- var names = name.split(".");
- this.changeJsonDate(names, value);
- this.changeData(name, select, oldValue);
- },
-
- setValue: function(name, value, obj){
- var names = name.split(".");
- var oldValue = this.data;
- for (var idx = 0; idx<names.length; idx++){
- if (!oldValue[names[idx]]){
- oldValue = null;
- break;
- }else{
- oldValue = oldValue[names[idx]];
- }
- }
- //var oldValue = this.data[name];
- //this.data[name] = value;
- this.changeJsonDate(names, value);
- this.changeData(name, obj, oldValue);
- },
- setEditNodeStyles: function(node){
- var nodes = node.getChildren();
- if (nodes.length){
- nodes.each(function(el){
- var cName = el.get("class");
- if (cName){
- if (this.view.css[cName]) el.setStyles(this.view.css[cName]);
- }
- this.setEditNodeStyles(el);
- }.bind(this));
- }
- },
- loadPersonInput: function(){
- var personIdentityNodes = this.propertyContent.getElements(".MWFPersonIdentity");
- var personUnitNodes = this.propertyContent.getElements(".MWFPersonUnit");
- var dutyNodes = this.propertyContent.getElements(".MWFDutySelector");
- var dutyNameNodes = this.propertyContent.getElements(".MWFPersonDuty");
- var viewNodes = this.propertyContent.getElements(".MWFViewSelect");
- var cmsviewNodes = this.propertyContent.getElements(".MWFCMSViewSelect");
- var queryviewNodes = this.propertyContent.getElements(".MWFQueryViewSelect");
- var querystatNodes = this.propertyContent.getElements(".MWFQueryStatSelect");
- MWF.xDesktop.requireApp("process.ProcessDesigner", "widget.PersonSelector", function(){
- personIdentityNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "identity",
- "names": this.data[node.get("name")],
- "onChange": function(ids){this.savePersonItem(node, ids);}.bind(this)
- });
- }.bind(this));
- personUnitNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "unit",
- "names": this.data[node.get("name")],
- "onChange": function(ids){this.savePersonItem(node, ids);}.bind(this)
- });
- }.bind(this));
- dutyNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "duty",
- "names": this.data[node.get("name")],
- "onChange": function(ids){this.addDutyItem(node, ids);}.bind(this),
- "onRemoveDuty": function(item){this.removeDutyItem(node, item);}.bind(this)
- });
- }.bind(this));
- dutyNameNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "dutyName",
- "names": this.data[node.get("name")],
- "onChange": function(ids){this.savePersonItem(node, ids);}.bind(this)
- });
- }.bind(this));
- viewNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "View",
- "count": 1,
- "names": [this.data[node.get("name")]],
- "onChange": function(ids){this.saveViewItem(node, ids);}.bind(this)
- });
- }.bind(this));
- cmsviewNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "CMSView",
- "count": 1,
- "names": [this.data[node.get("name")]],
- "onChange": function(ids){this.saveViewItem(node, ids);}.bind(this)
- });
- }.bind(this));
- queryviewNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "QueryView",
- "count": 1,
- "names": [this.data[node.get("name")]],
- "onChange": function(ids){this.saveViewItem(node, ids);}.bind(this)
- });
- }.bind(this));
- querystatNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "QueryStat",
- "count": 1,
- "names": [this.data[node.get("name")]],
- "onChange": function(ids){this.saveViewItem(node, ids);}.bind(this)
- });
- }.bind(this));
- }.bind(this));
- // var identityNodes = this.propertyContent.getElements(".MWFPersonIdentity");
- // var personUnitNodes = this.propertyContent.getElements(".MWFPersonUnit");
- //
- // MWF.xDesktop.requireApp("process.ProcessDesigner", "widget.PersonSelector", function(){
- // identityNodes.each(function(node){
- // new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- // "type": "identity",
- // "names": this.data[node.get("name")],
- // "onChange": function(ids){this.savePersonItem(node, ids);}.bind(this)
- // });
- // }.bind(this));
- //
- // personUnitNodes.each(function(node){
- // new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- // "type": "unit",
- // "names": this.data[node.get("name")],
- // "onChange": function(ids){this.savePersonItem(node, ids);}.bind(this)
- // });
- // }.bind(this));
- // }.bind(this));
- },
- saveViewItem: function(node, ids){
- var oldValue = this.data[node.get("name")];
- if (ids[0]){
- var view = ids[0].data;
- var data = {
- "name": view.name,
- "alias": view.alias,
- "id": view.id,
- "appName" : view.appName || view.applicationName,
- "appId": view.appId,
- "application": view.application
- };
- this.data[node.get("name")] = view.id;
- }else{
- this.data[node.get("name")] = null;
- }
- this.changeData(node.get("name"), node, oldValue);
- //if (this.module._checkView) this.module._checkView();
- },
- removeViewItem: function(node, item){
- },
- savePersonItem: function(node, ids){
- var values = [];
- ids.each(function(id){
- //values.push({"name": (id.data.distinguishedName || id.data.name), "id": id.data.id});
- values.push((id.data.distinguishedName || id.data.id || id.data.name));
- }.bind(this));
- var name = node.get("name");
- key = name.split(".");
- var o = this.data;
- var len = key.length-1;
- key.each(function(n, i){
- if (!o[n]) o[n] = {};
- if (i<len) o = o[n];
- }.bind(this));
- o[key[len]] = values;
- //this.data.data.restrictWhereEntry[node.get("name")] = values;
- },
- loadPersonSelectInput: function(){
- var applicationNodes = this.propertyContent.getElements(".MWFSelectApplication");
- var processNodes = this.propertyContent.getElements(".MWFSelectProcess");
- // var companyNodes = this.propertyContent.getElements(".MWFSelectCompany");
- // var departmentNodes = this.propertyContent.getElements(".MWFSelectDepartment");
- var personNodes = this.propertyContent.getElements(".MWFSelectPerson");
- var identityNodes = this.propertyContent.getElements(".MWFSelectIdentity");
- var personUnitNodes = this.propertyContent.getElements(".MWFSelectUnit");
- MWF.xDesktop.requireApp("process.ProcessDesigner", "widget.PersonSelector", function(){
- applicationNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "application",
- "names": (this.data.data.restrictWhereEntry) ? this.data.data.restrictWhereEntry.applicationList : [],
- "onChange": function(ids){this.savePersonSelectItem(node, ids);}.bind(this)
- });
- }.bind(this));
- processNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "process",
- "names": (this.data.data.restrictWhereEntry) ? this.data.data.restrictWhereEntry.processList : [],
- "onChange": function(ids){this.savePersonSelectItem(node, ids);}.bind(this)
- });
- }.bind(this));
- personUnitNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "unit",
- "names": (this.data.data.restrictWhereEntry) ? this.data.data.restrictWhereEntry.unitList : [],
- "onChange": function(ids){this.savePersonSelectItem(node, ids);}.bind(this)
- });
- }.bind(this));
- personNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "person",
- "names": (this.data.data.restrictWhereEntry) ? this.data.data.restrictWhereEntry.personList : [],
- "onChange": function(ids){this.savePersonSelectItem(node, ids);}.bind(this)
- });
- }.bind(this));
- identityNodes.each(function(node){
- new MWF.xApplication.process.ProcessDesigner.widget.PersonSelector(node, this.view.designer, {
- "type": "identity",
- "names": (this.data.data.restrictWhereEntry) ? this.data.data.restrictWhereEntry.identityList : [],
- "onChange": function(ids){this.savePersonSelectItem(node, ids);}.bind(this)
- });
- }.bind(this));
- }.bind(this));
- },
- savePersonSelectItem: function(node, ids){
- //this.initWhereEntryData();
- var values = [];
- ids.each(function(id){
- values.push({"name": id.data.name, "id": id.data.id});
- }.bind(this));
- var name = node.get("name");
- key = name.split(".");
- var o = this.data;
- var len = key.length-1;
- key.each(function(n, i){
- if (!o[n]) o[n] = {};
- if (i<len) o = o[n];
- }.bind(this));
- o[key[len]] = values;
- //this.data.data.restrictWhereEntry[node.get("name")] = values;
- },
- loadArrayList: function(){
- var arrays = this.propertyContent.getElements(".MWFArraylist");
- arrays.each(function(node){
- var title = node.get("title");
- var name = node.get("name");
- var names = name.split(".");
- var arr = this.data;
- for (var idx = 0; idx<names.length; idx++){
- if (!arr[names[idx]]){
- arr = null;
- break;
- }else{
- arr = arr[names[idx]];
- }
- }
- //var arr = this.data[name];
- if (!arr) arr = [];
- MWF.require("MWF.widget.Arraylist", function(){
- var arraylist = new MWF.widget.Arraylist(node, {
- "title": title,
- "onChange": function(){
- this.setValue(name, arraylist.toArray(), node);
- //this.data[name] = arraylist.toArray();
- }.bind(this)
- });
- arraylist.load(arr);
- }.bind(this));
- node.addEvent("keydown", function(e){e.stopPropagation();});
- }.bind(this));
- },
- loadStatColumnSelect: function(){
- var columnNodes = this.propertyContent.getElements(".MWFStatSelectColumn");
- if (columnNodes.length){
- columnNodes.each(function(node){
- var key = node.get("name");
- // var v = this.data[key];
- var names = key.split(".");
- var v = this.data;
- for (var idx = 0; idx<names.length; idx++){
- if (!v[names[idx]]){
- v = null;
- break;
- }else{
- v = v[names[idx]];
- }
- }
- node.empty();
- new Element("option", {
- "value": "",
- // "selected": true,
- "text": this.module.designer.lp.category
- }).inject(node);
- this.module.items.each(function(item){
- new Element("option", {
- "value": item.json.id,
- "selected": (v===item.json.id),
- "text": item.json.displayName
- }).inject(node);
- }.bind(this));
- }.bind(this));
- }
- },
- loadViewSelect: function(){
- var viewNodes = this.propertyContent.getElements(".MWFViewSelect");
- if (viewNodes.length){
- this.getViewList(function(){
- viewNodes.each(function(node){
- var select = new Element("select").inject(node);
- select.addEvent("change", function(e){
- var viewId = e.target.options[e.target.selectedIndex].value;
- var viewName = e.target.options[e.target.selectedIndex].get("text");
- this.setValue(e.target.getParent("div").get("name"), viewId);
- this.setValue(e.target.getParent("div").get("name")+"Name", viewName);
- }.bind(this));
- this.setViewSelectOptions(node, select);
- var refreshNode = new Element("div", {"styles": this.view.css.propertyRefreshFormNode}).inject(node);
- refreshNode.addEvent("click", function(e){
- this.getViewList(function(){
- this.setViewSelectOptions(node, select);
- }.bind(this), true);
- }.bind(this));
- //select.addEvent("click", function(e){
- // this.setFormSelectOptions(node, select);
- //}.bind(this));
- }.bind(this));
- }.bind(this));
- }
- },
- setViewSelectOptions: function(node, select){
- var name = node.get("name");
- select.empty();
- var option = new Element("option", {"text": "(none)"}).inject(select);
- this.views.each(function(view){
- var option = new Element("option", {
- "text": view.name,
- "value": view.id,
- "selected": (this.data[name]==view.id)
- }).inject(select);
- }.bind(this));
- },
- getViewList: function(callback, refresh){
- if (!this.views || refresh){
- this.view.designer.actions.listView(this.view.designer.application.id, function(json){
- this.views = json.data;
- if (callback) callback();
- }.bind(this));
- }else{
- if (callback) callback();
- }
- },
- loadScriptArea: function(){
- var scriptAreas = this.propertyContent.getElements(".MWFScriptArea");
- var formulaAreas = this.propertyContent.getElements(".MWFFormulaArea");
- this.loadScriptEditor(scriptAreas);
- this.loadScriptEditor(formulaAreas, "formula");
- },
- loadScriptEditor: function(scriptAreas, style){
- scriptAreas.each(function(node){
- var title = node.get("title");
- var name = node.get("name");
- var scriptContent = this.data[name];
- MWF.require("MWF.widget.ScriptArea", function(){
- var scriptArea = new MWF.widget.ScriptArea(node, {
- "title": title,
- //"maxObj": this.propertyNode.parentElement.parentElement.parentElement,
- "maxObj": this.designer.editContentNode,
- "onChange": function(){
- this.data[name] = scriptArea.toJson().code;
- }.bind(this),
- "onSave": function(){
- this.designer.saveView();
- }.bind(this),
- "style": style || "default"
- });
- scriptArea.load({"code": scriptContent});
- }.bind(this));
- }.bind(this));
- }
- });
|