Blame view

js/app/views/ParameterUI.js 15.8 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Project   : AMDA-NG
 * Name      : ParameterUI.js
 * @class 	 amdaUI.ParameterUI
 * @extends  Ext.container.Container
 * @brief	 Parameter  Module UI definition (View)
 * @author 	  
 * @version  $Id: ParameterUI.js 2257 2014-04-02 12:21:27Z elena $
 ********************************************************************************
 *    FT Id     :   Date   : Name - Description
 *******************************************************************************
 *              
 */

Ext.define('amdaUI.ParameterUI', {
	extend: 'Ext.container.Container',
	
	alias: 'widget.panelParam',
	
	requires: [
	      'amdaUI.AliasUI',     
	      'amdaUI.CalculatorUI',
	      'extensions.SelectableTextArea',
7ac3ce50   Benjamin Renard   First implementat...
24
	      'amdaUI.ParamArgumentsPlug'
16035364   Benjamin Renard   First commit
25
26
27
28
29
30
31
    ],
	
    constructor: function(config) {    
	    this.init(config);
	    this.callParent(arguments);
        // load object into form
	    this.formPanel.getForm().loadRecord(this.object);
7ac3ce50   Benjamin Renard   First implementat...
32
33
34
	    var paramArgsPlug = this.getPlugin('derived-param-arguments-plugin');
	 	if (paramArgsPlug)
	 		paramArgsPlug.onApply = this.onApplyParameterArgs;
16035364   Benjamin Renard   First commit
35
36
    },

7ac3ce50   Benjamin Renard   First implementat...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
    onApplyParameterArgs : function(uiScope, paramId, values) {
    	var fullParam = paramId;
  	  	switch (values['type']) {
  	  		case 0:
  	  			//scalar - nothing to do
  	  			break;
  	  		case 1:
  	  			//Tab1D
  	  			if ((values['dim_1'] != '') && (values['dim_1'] != '*'))
  	  				fullParam += '('+values['dim_1']+')';
  	  			else if ((values['dim_2'] != '') && (values['dim_2'] != '*'))
  	  				fullParam += '('+values['dim_2']+')';
  	  			break;
  	  		case 2:
  	  			//Tab2D
  	  			var dim1 = values['dim_1'] != '' ? values['dim_1'] : "*";
  	  			var dim2 = values['dim_2'] != '' ? values['dim_2'] : "*";
  	  			if ((dim1 != '*') || (dim2 != '*'))
  	  				fullParam += '('+dim1+','+dim2+')';
  	  	}
  	  
    	var selection = uiScope.constructionField.getSelection();
    	uiScope.constructionField.setValue(selection.beforeText + fullParam + selection.afterText);
    	uiScope.constructionField.focus();
    	uiScope.constructionField.setCaretPosition(uiScope.constructionField.getValue().length);
    	this.close();
    },
    
16035364   Benjamin Renard   First commit
65
    addParam : function(newParamName,isLeaf) {
7ac3ce50   Benjamin Renard   First implementat...
66
67
        if (isLeaf){
        	this.editParameterArgs(newParamName);
16035364   Benjamin Renard   First commit
68
69
70
        }       
    },
    
7ac3ce50   Benjamin Renard   First implementat...
71
72
73
74
75
76
    editParameterArgs: function(name) {
		var paramArgsPlug = this.getPlugin('derived-param-arguments-plugin');
		if (paramArgsPlug)
			paramArgsPlug.show(name);
	},
    
16035364   Benjamin Renard   First commit
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
    setObject : function (object) {
        this.object = object; 
        // load object into form	 
        this.formPanel.getForm().loadRecord(this.object);
    },
       
/**
* update this.object from form
*/
      updateObject : function(){    
      // get the basic form
      var basicForm = this.formPanel.getForm();        
      var updateStatus = true;

	var fieldsWithoutName = basicForm.getFields().items;
	Ext.Array.each(fieldsWithoutName, function(item, index,allItems){
	    if(item !== this.fieldName) { 		     
		if (!item.isValid()) {
		    // set update isn't allowed
		    updateStatus = false;    
		}
	    }
	}, this);
	// if the update is allowed
	if (updateStatus) {
	/// real object update
	// update TimeTable object with the content of form
	  basicForm.updateRecord(this.object);	
	}
	// return the update status
      return updateStatus;	    
      },
 
    updateConstruct : function(oldval,newval) {
		// update constructionField (Construct parameter) in window parameter
		var expression = this.constructionField.value;
		oldval = oldval.replace(/[(]/g,"\\(");
		oldval = oldval.replace(/[)]/g,"\\)");	
		var reg=new RegExp(oldval, "g");
	    expression = expression.replace(reg, newval);
	    this.constructionField.setValue(expression);
	},
    
a0b3d64e   Benjamin Renard   Derived parameter...
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
	/**
	 * Parameter compilation
	 */
	compilParam : function($action) {
		var obj = {
        		paramId : 'ws_'+this.object.get('name')
        };
        AmdaAction.compilParam(obj, function (result, e) {
        	if (!result || !result.success)
        	{
        		if (result.message)
        			myDesktopApp.warningMsg(result.message);
        		else
        			myDesktopApp.warningMsg('Unknown error during parameter compilation');
        		return;
        	}
        });
	},
	
16035364   Benjamin Renard   First commit
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
    /**
     * save method called by Save button
     */
    saveProcess : function(toRename){
        
        if(this.object.dirty) {
            // Parameter Module
            var paramModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.param.id);            
            // if the name has been modified this is a creation
            if (this.object.isModified('name')){                
                // if object already has an id : it's a 'rename' of an existing TimeTable
                if (this.object.get('id')){
                    // the context Node is the parent node of current edited one
                    var contextNode = paramModule.linkedNode.parentNode;
                    // link a new node to the TimeTableModule
                    paramModule.createLinkedNode();
                    // set the contextNode
                    paramModule.linkedNode.set('contextNode',contextNode);
                    // create a new object linked		   		  
                    paramModule.createObject(this.object.getJsonValues());
                    var paramobj = paramModule.linkedNode.get('object');
		    //synchronize objects
		    this.object = paramobj;
		    if (toRename) paramModule.linkedNode.toRename = true;
                }                
a0b3d64e   Benjamin Renard   Derived parameter...
164
                paramModule.linkedNode.create({scope : this, callback : this.compilParam});
16035364   Benjamin Renard   First commit
165
166
167
168
169
170
171
                paramModule.linkedNode.set('iconCls', 'icon-scalar');
                paramModule.linkedNode.set('isParameter', true); 
                
                // fire creation event
               // this.object.fireEvent('create');            
            } else {            
                paramModule.linkedNode.set('contextNode',paramModule.contextNode); 
a0b3d64e   Benjamin Renard   Derived parameter...
172
		paramModule.linkedNode.update({scope : this, callback : this.compilParam});
16035364   Benjamin Renard   First commit
173
              //  this.object.fireEvent('modify');
a0b3d64e   Benjamin Renard   Derived parameter...
174
            }
16035364   Benjamin Renard   First commit
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
        }        
    },

    /**
     * overwrite metod called by Save button
     */
    overwriteProcess : function(btn){
         if (btn == 'cancel') return; 
           
         this.fieldName.clearInvalid();  
         this.saveProcess(true);        
    },
    
 /**
  *   Check if brackets are balanced
  */   
    isBalanced : function(str){  
         str =  (""+str).replace(/[^()\[\]{}]/g, ""); 
         var bracket = {
                    "]": "[",
                    "}": "{",
                    ")": "("
                },
                openBrackets = [], 
                isClean = true,
                i = 0,
                len = str.length;

            for(; isClean && i<len; i++ ){                
                if( bracket[ str[ i ] ] ){
                    isClean = ( openBrackets.pop() === bracket[ str[ i ] ] );
                }else{
                    openBrackets.push(str[i]);
                }
            }
            if (!(isClean && !openBrackets.length)) return 'Brackets are not balanced';
           
            return true; 
        },
	/**
	 * Check if changes were made before closing window 
	 * @return true if changes
	 */	   
	fclose : function() {
		var isDirty = this.formPanel.getForm().isDirty();
		return isDirty;
	},
	
	init: function(config) {
		
		this.fieldName = new Ext.form.field.Text({
		    labelAlign: 'top', itemId: 'formParamName',
		    fieldLabel: 'Parameter Name*',
		    name : 'name',
	 	    allowBlank : false, //blankText : 'Name is required',
		    emptyText: 'Please only low case here!',
		    width: 150,
		    validateOnChange: false,
		    validateOnBlur: false,
		    enableKeyEvents: true,
		    validFlag: false,
	            validator : function() {
	            	return this.validFlag;
	            },
                    stripCharsRe: /(^\s+|\s+$)/g,
		    listeners : {
                       keyUp : function(field, e, opt) {
                          this.setValue(this.getValue().toLowerCase());
		       }
		    }
		});
		
		this.constructionField = new extensions.SelectableTextArea({
			labelAlign: 'top',
			itemId: 'formParamConstructParameter',
			fieldLabel:'Construct Parameter*',
		 	allowBlank : false, blankText : 'Construct Parameter is required',
			name : 'buildchain',
			flex: 0.9,
			validateOnChange: false,
			validateOnBlur: false,
                        validator : this.isBalanced,
			// ToDo - BRE - Wait the fix for drag&drop issue
			listeners :
			{
			  render : function(o,op)
			  {
			    var me = this;
			    var meEl = me.bodyEl;
			    var dropTarget = Ext.create('Ext.dd.DropTarget', meEl, {
			        ddGroup: 'explorerTree',
			        notifyEnter : function(ddSource, e, data) 
			        {
			        },
			        notifyOver  : function(ddSource, e, data)
			        {
                                    if (data.records[0].data.nodeType == 'localParam' && data.records[0].get('notyet')) {
                                        this.valid = false;
                                        return this.dropNotAllowed;   
                                    }
7ac3ce50   Benjamin Renard   First implementat...
275
                       if (((data.records[0].data.nodeType == 'localParam')   ||
16035364   Benjamin Renard   First commit
276
277
278
279
280
						(data.records[0].data.nodeType == 'remoteParam') ||
						 (data.records[0].data.nodeType == 'remoteSimuParam') ||
			        		 (data.records[0].data.nodeType == 'derivedParam') ||
			        		 (data.records[0].data.nodeType == 'myDataParam') ||
			        		 (data.records[0].data.nodeType == 'alias')) &&
7ac3ce50   Benjamin Renard   First implementat...
281
			        		//(data.records[0].data.leaf) && 
16035364   Benjamin Renard   First commit
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
			        		!(data.records[0].data.disable))
			        	{
			        	  this.valid = true;
			        	  return this.dropAllowed;
			        	}
			        	this.valid = false;
			        	return this.dropNotAllowed;
			        },
			        notifyDrop  : function(ddSource, e, data)
			        {			          
			          if (!this.valid)
			            return false;
			          var nameToSent;
			          switch (data.records[0].data.nodeType)
			          {
			            case 'localParam' :
			            case 'remoteParam' :
                                    case 'remoteSimuParam' :    
			            	nameToSent = data.records[0].get('id');
			            	if (data.records[0].get('alias')!= "" )
                        		var nameToSent = "#"+data.records[0].get('alias');
			            	break;
			            case 'alias' :
			            	nameToSent = "#"+data.records[0].get('text');
			            	break;
			            case 'derivedParam' :
			            	nameToSent = "ws_"+data.records[0].get('text');
			            	break;
			            case 'myDataParam' :
			            	var name = data.records[0].get('text');
			            	nameToSent = "wsd_"+name;
					var size = data.records[0].get('size');
					if (size &&  size > 1) {
					  nameToSent += "(0)";
					  myDesktopApp.warningMsg("parameter "+name+" is array of size: "
								  +size+"<br/>Please put index");
					}
			            	break;
			            default :
			            	return false;
			          }
			          var paramModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.param.id);
7ac3ce50   Benjamin Renard   First implementat...
324
325
326
			          if (paramModule)
			        	  paramModule.addParam(nameToSent,true);
				      return true;
16035364   Benjamin Renard   First commit
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
			        }
			    });
			  }
			}
            //TODO: ?validator on formula structure?
//			listener : {
//				valid : function(field) {
//
//				}
//			}
		});
		
		this.formPanel = new Ext.form.Panel({
			id: 'vbox-paramForm',			
			bodyStyle: {background : '#dfe8f6'},
			border: false,
			buttonAlign: 'left',
			region: 'center',
			trackResetOnLoad: true, //reset to the last loaded record
			layout: {
			    type: 'vbox',
			    defaultMargins: {top: 10, left:10, bottom:5, right:5},			   
			    align: 'stretch'
			},
			defaults: {
			    border: false
			},
			items: [
					{
					    flex: 1,
					    xtype: 'container',
					    border: false,
					    layout: {
						type: 'table',
						columns: 3
					    },
					    defaultType: 'textfield',
					    defaults: {
						    labelAlign: 'top'
					    },
					    items: [
						this.fieldName,
						{
						    xtype:'component', width: 20
						    },{
							    itemId: 'formParamTimeStep', fieldLabel: 'Time Step (sec)*', labelAlign: 'top',
							    allowBlank : false, blankText : 'Time Step is required',
							    name : 'timestep',
							    regex : new RegExp('^[0-9]+$'),
							    regexText : 'Time Step has to be a numeric value',
							    width: 150, validateOnChange: false,
							    validateOnBlur: false
						    },{
							    xtype: 'textfield',
							    itemId: 'formParamUnit', 
							    fieldLabel: 'Units',
							    name : 'units',
							    width: 150
						    },{
							    xtype:'component', width: 20
						    },{
							    xtype: 'textfield',
							    itemId: 'formParamYTitle', 
							    fieldLabel: 'Y Title for Plot',
							    name : 'ytitle',
							    width: 150
						    },{
							    xtype: 'textfield',
							    itemId: 'formParamDescription',
							    name: 'description', 
							    xtype: 'textarea', fieldLabel:'Description',
							    width: 320,  height: 75,
							    colspan: 3
						    }]                        
				    },
				    this.constructionField
				],		        
				fbar: [
					{
					  text: 'Save',
					  scope : this,
					  handler: function(){
						  if (this.updateObject()){
							  var paramModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.param.id);	
							  if (!paramModule)
								  return;
							  var me = this;
							  paramModule.linkedNode.isValidName(this.fieldName.getValue(), function (res) {
								  if (!res)
								  {
									  me.fieldName.validFlag = 'Error during object validation';
									  myDesktopApp.errorMsg(me.fieldName.validFlag);
									  me.fieldName.validate();
									  return;
								  }
								  
								  if (!res.valid)
								  {
									  if (res.error)
									  {
										  if (res.error.search('subtree') != -1) {  							
											  Ext.MessageBox.show({title:'Warning', 
														msg: res.error+'<br/>Do you want to overwrite it?',
														width: 300,
														buttons: Ext.MessageBox.OKCANCEL, 
														fn : me.overwriteProcess,
														icon: Ext.MessageBox.WARNING,
														scope : me
											  });
											  me.fieldName.validFlag = true;
										  }
										  else
											  me.fieldName.validFlag = res.error;
									  }
									  else
									  {
										  me.fieldName.validFlag = 'Invalid object name';
										  myDesktopApp.errorMsg(me.fieldName.validFlag);
									  }
									  me.fieldName.validate();
									  return;
								  }
								  
								  me.fieldName.validFlag = true;
								  me.fieldName.validate();
								  me.saveProcess(false);
							  });
							  
						  }
					  }
					},
					{
					  text: 'Reset',
					  scope: this,
					  handler: function(){
					    var paramModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.param.id);			
					    paramModule.createLinkedNode();
					    paramModule.createObject();
					    this.setObject(paramModule.getLinkedNode().get('object'));
					     /* reset with keeping old object
					           this.formPanel.getForm().reset();
					     */
					  }
					}
				    ] 	
		});
				
		var myConf = {
				layout: 'border',
				border: false,
				defaults: { layout: 'fit', border: false },
				items: [
				  this.formPanel,
				  {
				    xtype: 'panel', region: 'south',
				    title: 'Information',
				    collapsible: true,
				    height: 100,
				    autoHide: false,
				    iconCls: 'icon-information',
				    bodyStyle: 'padding:5px',
				    loader: {
				      autoLoad: true,
				      url: helpDir+'myParameterHOWTO'
				    }
				} ],
7ac3ce50   Benjamin Renard   First implementat...
493
				plugins: [ {ptype: 'calculator', myBtns:[], context: 'Parameter' }, {ptype: 'paramArgumentsPlugin', pluginId: 'derived-param-arguments-plugin'}]
16035364   Benjamin Renard   First commit
494
495
496
497
498
			};
	              
			Ext.apply(this, Ext.apply(arguments, myConf));
	}
});