Blame view

js/app/views/StatisticsUI.js 16.1 KB
d18b535d   elena   catalog draft + c...
1
2
3
4
5
6
7
8
9
/**
 * Project       AMDA-NG
 * Name          StatisticsUI.js
 * @class 	 amdaUI.statisticsUI
 * @extends      Ext.container.Container
 * @brief	 Statistics Module UI definition (View)
 * @author 	 elena
 */

23769849   Elena.Budnik   LoadObject in Sta...
10
11
Ext.define('amdaUI.StatisticsUI', 
{
d18b535d   elena   catalog draft + c...
12
13
14
15
	extend: 'Ext.container.Container',
	alias: 'widget.panelStatistics',
	
	requires : [	
23769849   Elena.Budnik   LoadObject in Sta...
16
			//'amdaModel.Function'
d80af896   Elena.Budnik   args for Statistics
17
18
19
			'amdaUI.TimeSelectorUI',
			'amdaUI.ParamArgumentsPlug',
			'amdaModel.DownloadParam'
d18b535d   elena   catalog draft + c...
20
21
	],
	
23769849   Elena.Budnik   LoadObject in Sta...
22
23
	statics : 
	{	 
d80af896   Elena.Budnik   args for Statistics
24
	//	  functionStore : null
d18b535d   elena   catalog draft + c...
25
26
	},
		
3ab0bee9   Elena.Budnik   aprams with args ...
27
28
	constructor: function(config) 
	{
d80af896   Elena.Budnik   args for Statistics
29
		this.init(config); 
d18b535d   elena   catalog draft + c...
30
		this.callParent(arguments);
23769849   Elena.Budnik   LoadObject in Sta...
31
32
		this.loadObject();
				 
d80af896   Elena.Budnik   args for Statistics
33
34
35
		var paramArgsPlug = this.getPlugin('statistics-param-arguments-plugin');
		if (paramArgsPlug)
			paramArgsPlug.onApply = this.onApplyParameterArgs;
d18b535d   elena   catalog draft + c...
36
	},
23769849   Elena.Budnik   LoadObject in Sta...
37
38
39
40
	
	loadObject : function()
	{
		// load object into form	
7348b580   Elena.Budnik   redmine #6010 : S...
41
		var basicForm = this.formPanel.items.items[1].getForm();
23769849   Elena.Budnik   LoadObject in Sta...
42
43
44
45
		basicForm.loadRecord(this.object);
		
	},
	
3ab0bee9   Elena.Budnik   aprams with args ...
46
47
	onApplyParameterArgs : function(parentUI, paramObject) 
	{
d80af896   Elena.Budnik   args for Statistics
48
49
		parentUI.paramGrid.getView().refresh();
	}, 
d18b535d   elena   catalog draft + c...
50
	
d80af896   Elena.Budnik   args for Statistics
51
52
	addParam : function(paramId, isLeaf, needArgs, components) 
	{
29dfb596   Benjamin Renard   Rework of ParamAr...
53
54
55
		// adding the parameter to the  paramGrid
		var paramObj = amdaModel.RequestParamObject.getEmptyObj();	
		paramObj.paramid = paramId;
d80af896   Elena.Budnik   args for Statistics
56
        	
96cdc664   Elena.Budnik   new record type i...
57
58
		if (components) {
			if (components['index1']) {
3ab0bee9   Elena.Budnik   aprams with args ...
59
				paramObj['dim1-index'] = components['index1'];
96cdc664   Elena.Budnik   new record type i...
60
61
62
63
				++paramObj['type'];
			}
			
			if (components['index2']) {
3ab0bee9   Elena.Budnik   aprams with args ...
64
				paramObj['dim2-index'] = components['index2'];
96cdc664   Elena.Budnik   new record type i...
65
66
67
				++paramObj['type'];
			}
		}
d80af896   Elena.Budnik   args for Statistics
68
        	
96cdc664   Elena.Budnik   new record type i...
69
		var r = Ext.create('amdaModel.DownloadParam', paramObj);		
d80af896   Elena.Budnik   args for Statistics
70
		this.paramGrid.getStore().add(r);
23769849   Elena.Budnik   LoadObject in Sta...
71
		this.paramGrid.getSelectionModel().select(this.paramGrid.getStore().getCount()-1);  
d80af896   Elena.Budnik   args for Statistics
72
73
74
75
76
77
78
79
	//	var pos = this.paramGrid.store.getCount();
	//	this.paramGrid.store.insert(pos,r); 
		this.paramGrid.getView().refresh();
		
		if (needArgs)
			this.editParameterArgs(r);
	},

23769849   Elena.Budnik   LoadObject in Sta...
80
81
	editParameterArgs: function(record) 
	{
d80af896   Elena.Budnik   args for Statistics
82
83
84
85
86
		var paramArgsPlug = this.getPlugin('statistics-param-arguments-plugin');
		
		if (paramArgsPlug)
			paramArgsPlug.show('statistics-param-arguments-plugin', record);
	},
d18b535d   elena   catalog draft + c...
87
88
89
	
	addTT : function(TTname,TTid)
	{ 
23769849   Elena.Budnik   LoadObject in Sta...
90
		this.timeSelector.addTT(TTname, TTid); ; 	 
d18b535d   elena   catalog draft + c...
91
	},
7348b580   Elena.Budnik   redmine #6010 : S...
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
	
	/**
	* Set Start-Stop from parameter info (Local & MyData)
	*/ 
	setTimeFromData : function(obj) {
		if (!obj.start || !obj.stop)
			return;
		
		var dateStart = new Date(obj.start.replace(/[T|Z]/g,' ').replace(/\-/g,'\/')); 
		var dateStop = new Date(obj.stop.replace(/[T|Z]/g,' ').replace(/\-/g,'\/')); 
		
		this.formPanel.items.items[1].getForm().setValues({ startDate : dateStart, stopDate : dateStop });
		this.timeSelector.intervalSel.updateDuration();
	}, 
	
23769849   Elena.Budnik   LoadObject in Sta...
107
108
109
110
111
	generateCatalog : function()
	{	     
		var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.statistics.id);
		if (module) 
			module.linkedNode.execute();	     
d18b535d   elena   catalog draft + c...
112
113
	},
	
23769849   Elena.Budnik   LoadObject in Sta...
114
115
116
117
118
/*
* Update this.object from form
*/	
	updateObject : function()
	{    
96cdc664   Elena.Budnik   new record type i...
119
		// get the basic form of the left 
d80af896   Elena.Budnik   args for Statistics
120
121
122
123
		var basicForm = this.formPanel.items.items[0].getForm();
		var updateStatus = true;
		
		var formValues = basicForm.getValues();
804b5599   Elena.Budnik   catalog name
124
		this.object.set('name',this.fieldName.getValue());
23769849   Elena.Budnik   LoadObject in Sta...
125
		this.object.set('description',formValues.description);
94a05aa2   Elena.Budnik   update object in ...
126
     	    	    
d80af896   Elena.Budnik   args for Statistics
127
128
129
		var recs = this.paramGrid.getStore().getNewRecords();
		var paramArr = new Array();
		
96cdc664   Elena.Budnik   new record type i...
130
		Ext.Array.each(recs, function(rec, index, allItems)
3ab0bee9   Elena.Budnik   aprams with args ...
131
132
133
		{			 			
			var obj = Ext.clone(rec.data);
			 
d80af896   Elena.Budnik   args for Statistics
134
135
136
137
138
139
140
141
			if (obj.function == null) 
			{				
				myDesktopApp.warningMsg('Please select function : `click to select`'); 
				updateStatus = false;
				return;                     
			}
			paramArr.push(obj);            	      
		});
94a05aa2   Elena.Budnik   update object in ...
142
	    
d80af896   Elena.Budnik   args for Statistics
143
		this.object.set('parameter', paramArr);
d18b535d   elena   catalog draft + c...
144
	    
d80af896   Elena.Budnik   args for Statistics
145
		var timeSource = this.timeSelector.getActiveTimeSource(); 
94a05aa2   Elena.Budnik   update object in ...
146
 
d80af896   Elena.Budnik   args for Statistics
147
148
149
150
151
152
153
		if (timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0] // timeSource  'TimeTable'
							&& this.timeSelector.TTGrid.getStore().count() == 0) 
		{
			myDesktopApp.warningMsg('You\'ve chosen Time Selection `by TimeTable` but no timeTable was added!'
						+'<br>You must add one or choose Time Selection `by Interval`'); 
			return false;    
		}
d18b535d   elena   catalog draft + c...
154
             
d80af896   Elena.Budnik   args for Statistics
155
		basicForm.updateRecord(this.object);
94a05aa2   Elena.Budnik   update object in ...
156
	    
d80af896   Elena.Budnik   args for Statistics
157
158
159
160
		this.object.set('timesrc', timeSource);
		// set valid intervals into TimeTable object
		if (timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0])
			this.object.set('timeTables',this.timeSelector.TTGrid.getStore().data.items);          
96cdc664   Elena.Budnik   new record type i...
161
	 	      
d80af896   Elena.Budnik   args for Statistics
162
		return updateStatus;	    
d18b535d   elena   catalog draft + c...
163
164
165
166
167
168
	},
	
	/**
	 * Check if changes were made before closing window 
	 * @return true if changes
	 */	
23769849   Elena.Budnik   LoadObject in Sta...
169
170
	fclose : function() 
	{
d18b535d   elena   catalog draft + c...
171
172
173
174
175
176
177
178
179
180
		if (this.status == null)
			return false;
		
		var isDirty = this.formPanel.getForm().isDirty() || (this.status.isModified) || (this.status.nbModified > 0) || (this.status.nbNew > 0);
		return isDirty;
	},
	
	/**
	 * View configuration
	 */
23769849   Elena.Budnik   LoadObject in Sta...
181
182
	init : function (config) 
	{	  
d18b535d   elena   catalog draft + c...
183
184
185
186
187
188
189
190
191
// 	  var functions = Ext.create('Ext.data.Store', {
// 	    fields: ['id', 'name'],
// 	    data : [
// 		{"id":"min", "name":"MIN"},
// 		{"id":"max", "name":"MAX"},
// 		{"id":"mean","name":"MEAN"}        
// 	    ]
// 	    });
	     
d80af896   Elena.Budnik   args for Statistics
192
193
194
195
196
197
198
199
200
201
202
203
204
205
		this.fieldName = new Ext.form.field.Text({
				fieldLabel: 'Catalog Name',
				allowBlank : false,
				stripCharsRe: /(^\s+|\s+$)/g,
				emptyText: 'Please no spaces!',
				name: 'name',
	//	      anchor: '100%',
				validateOnChange: false,
				validateOnBlur: false,
				validFlag: false,
				validator : function() {
					return this.validFlag;
			}
		});
d18b535d   elena   catalog draft + c...
206
	  
d80af896   Elena.Budnik   args for Statistics
207
208
209
210
211
		var ttStore = Ext.create('Ext.data.Store', 
		{
			fields: [ 'name', 'hidden_id']	
		});
		
7348b580   Elena.Budnik   redmine #6010 : S...
212
		this.timeSelector = new amdaUI.TimeSelectorUI({id: 'statisticsTimeSelector', flex:1}); 
d18b535d   elena   catalog draft + c...
213
	
d80af896   Elena.Budnik   args for Statistics
214
215
216
217
		var store = Ext.create('Ext.data.Store', 
			{
					fields: ['name', 'function'] 
			});
d18b535d   elena   catalog draft + c...
218
	
23769849   Elena.Budnik   LoadObject in Sta...
219
		this.paramGrid = Ext.create('Ext.grid.Panel', 
d80af896   Elena.Budnik   args for Statistics
220
			{ 
23769849   Elena.Budnik   LoadObject in Sta...
221
222
				title: 'Select Parameter & Apply Function',
				selType : 'rowmodel',
7348b580   Elena.Budnik   redmine #6010 : S...
223
224
				flex: 2,
	//			height :250,
23769849   Elena.Budnik   LoadObject in Sta...
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
				store : store, 
				columns: [
					{ xtype: 'rownumberer' },
					{ 
						header: "Parameter Name", 
						dataIndex: 'name', 
						flex:1, 
						sortable: false, 
						menuDisabled : true ,
						renderer: function (val, meta, rec) {
							return rec.getParamFullName();
						}
					},
					//	{ header: 'parameter',  dataIndex: 'name', menuDisabled : true, sortable : false },
					{ header: 'function',  dataIndex: 'function', menuDisabled : true, sortable : false,
						editor: 
						{
							xtype: 'combo', queryMode : 'local',		    
							//emptyText : 'please click to select function',
							store: [ 'min', 'max', 'mean' ],
							triggerAction: 'all',  		         
							//lazyInit: false,
							listeners: {
								focus: function(obj) {
									obj.expand();
								}
							}
						},
						renderer: function(v)
						{
							if(v != null && v.length > 0 )
									return v;
							else
									return 'click to select';                    
						} 	  
					},
					{ menuDisabled : true, width: 30, renderer: function(){
							return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
d80af896   Elena.Budnik   args for Statistics
263
264
						}
					}
23769849   Elena.Budnik   LoadObject in Sta...
265
266
267
				], 
				plugins: [ Ext.create('Ext.grid.plugin.CellEditing', { clicksToEdit: 1 })],
				listeners :
d80af896   Elena.Budnik   args for Statistics
268
				{
23769849   Elena.Budnik   LoadObject in Sta...
269
					render : function(o,op)
3ab0bee9   Elena.Budnik   aprams with args ...
270
					{
23769849   Elena.Budnik   LoadObject in Sta...
271
272
273
274
275
276
277
278
279
						var me = this;
						var el = me.body.dom;
						var dropTarget = Ext.create('Ext.dd.DropTarget', el, {
							ddGroup: 'explorerTree',		    
							notifyOver  : function(ddSource, e, data)
							{                                    
								if (data.records[0].data.nodeType == 'localParam' && data.records[0].get('notyet')) {
										this.valid = false;
										return this.dropNotAllowed;   
3ab0bee9   Elena.Budnik   aprams with args ...
280
								}	
23769849   Elena.Budnik   LoadObject in Sta...
281
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
								if (((data.records[0].data.nodeType == 'localParam')   ||
											(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'))&&
											(data.records[0].isLeaf() || data.records[0].data.isParameter) &&
											!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;
								var components = null;
						
								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');
										var component_info = data.records[0].get('component_info');
										if (component_info && component_info.parentId) 
										{													
											if ( component_info.index1 && component_info.index2 )
											{															 
												nameToSent = component_info.parentId;
												components = [];												
												if (component_info.index1)
													components['index1'] = component_info.index1;
												if (component_info.index2)
													components['index2'] = component_info.index2;
											}	
											if ( data.records[0].get('needsArgs') )
											{															
												nameToSent = component_info.parentId;	
												if (component_info.index1)
												{
													components = [];	
													components['index1'] = component_info.index1;
												}
											}													
										}
										break;
									case 'alias' :
										nameToSent = "#"+data.records[0].get('text');
										break;
									case 'derivedParam' :
0cefcae2   Benjamin Renard   il reste click droit
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
                                                                                                                                                                        if(data.records[0].modelName=='amdaModel.DerivedParamComponentNode')
                                                                                                                                                                        {
                                                                                                                                                                            paramId=data.records[0].get('text');
                                                                                                                                                                            var parentId=paramId.substr(0,paramId.length-3);
                                                                                                                                                                            nameToSent = "ws_"+parentId;
                                                                                                                                                                            var regExp = /\(([\d]+)\)/;
                                                                                                                                                                             var component_index = regExp.exec(paramId);
                                                                                                                                                                             if(component_index )
                                                                                                                                                                             {
                                                                                                                                                                                 components = [];
                                                                                                                                                                                 components['index1'] =component_index[1];                                                                                                                                                                             
                                                                                                                                                                                 }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
                                                                                                                                                                            break;
                                                                                                                                                                        }else
                                                                                                                                                                        {
									nameToSent = "ws_"+data.records[0].get('text');
                                                                                                                                                                                    }
									break;
23769849   Elena.Budnik   LoadObject in Sta...
357
358
359
360
361
362
363
364
365
366
367
368
									case 'myDataParam' :
										nameToSent = "wsd_"+data.records[0].get('text');
										break;
									default :
										return false;
								}
								var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.statistics.id);
								if (module)
								{			     
									module.addParam(nameToSent, data.records[0].get('leaf'), data.records[0].get('needsArgs'), components);   			    				     
								}
								return true;
3ab0bee9   Elena.Budnik   aprams with args ...
369
							}
23769849   Elena.Budnik   LoadObject in Sta...
370
371
372
373
374
						});
					},	
					cellclick : function(grid, cell, cellIndex, record){		     
							if (cellIndex == 3) 
							grid.getStore().remove(record);
3ab0bee9   Elena.Budnik   aprams with args ...
375
					}
23769849   Elena.Budnik   LoadObject in Sta...
376
377
				}    
			}); 
d18b535d   elena   catalog draft + c...
378
379
      	
 
23769849   Elena.Budnik   LoadObject in Sta...
380
381
382
		this.formPanel =  Ext.create('Ext.form.Panel', 
		{ 
			region: 'center',	     
7348b580   Elena.Budnik   redmine #6010 : S...
383
384
385
386
387
			layout: {
				type: 'hbox',
				pack: 'start',
				align: 'stretch'
			},
23769849   Elena.Budnik   LoadObject in Sta...
388
389
390
			//bodyStyle: {background : '#dfe8f6'},
			defaults: { bodyStyle: {background : '#dfe8f6'}, padding : '3'},
			fieldDefaults: { labelWidth: 80, labelAlign : 'top' },
7348b580   Elena.Budnik   redmine #6010 : S...
391
			items: [ {  
23769849   Elena.Budnik   LoadObject in Sta...
392
393
394
				xtype: 'form',
				flex : 1,			    
				layout: {type: 'vbox', pack: 'start', align: 'stretch'},
7348b580   Elena.Budnik   redmine #6010 : S...
395
396
				items : [ this.paramGrid ],
					fbar:[ {   
23769849   Elena.Budnik   LoadObject in Sta...
397
398
399
400
401
402
403
						type: 'button',			   
						text: 'Generate Catalog',
						scope : this,
						handler: function()
						{
							// update object with user's values
							// if the return is true (object had been updated)
804b5599   Elena.Budnik   catalog name
404
							if (this.updateObject()){ 
23769849   Elena.Budnik   LoadObject in Sta...
405
406
407
408
409
410
411
412
								this.generateCatalog();			   			 
							}
						}
					},
					{   
						type: 'button',
						text: 'Reset',
						scope : this,
7348b580   Elena.Budnik   redmine #6010 : S...
413
414
415
416
417
						handler: function() {
							this.formPanel.getForm().reset();
							this.paramGrid.store.removeAll();
							this.timeSelector.TTGrid.store.removeAll();
						}
23769849   Elena.Budnik   LoadObject in Sta...
418
					}]
7348b580   Elena.Budnik   redmine #6010 : S...
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
				},
				{            
					xtype: 'form', 
					title: 'Additional Information', 
					flex : 1,
					trackResetOnLoad: true,  
					layout: {type: 'vbox', pack: 'start', align: 'stretch', padding : '3'},
					items : [
						this.fieldName,
						{
							xtype: 'textarea',
							name: 'description',
							fieldLabel: 'Description', 			
							height: 125
						},
						this.timeSelector 
					]
				}
			]  
23769849   Elena.Budnik   LoadObject in Sta...
438
		}); 
d18b535d   elena   catalog draft + c...
439
	 
23769849   Elena.Budnik   LoadObject in Sta...
440
441
442
443
444
445
446
447
448
		var myConf = {
					layout: 'border',
					items: [		   
					this.formPanel, 		     
					{
						xtype: 'panel', 
						region: 'south',
						title: 'Information',
						collapsible: true,
42863f42   Elena.Budnik   collapseMode: "he...
449
						collapseMode: 'header',
23769849   Elena.Budnik   LoadObject in Sta...
450
451
452
453
454
455
456
457
458
459
460
						height: 100,
						autoHide: false,
						bodyStyle: 'padding:5px',
						iconCls: 'icon-information',
						loader: {
							autoLoad: true,
							url: helpDir+'statisticsHOWTO'
						} 
					}],
					plugins: [ {ptype: 'paramArgumentsPlugin', pluginId: 'statistics-param-arguments-plugin'}]
				};
d18b535d   elena   catalog draft + c...
461
	    
23769849   Elena.Budnik   LoadObject in Sta...
462
463
		Ext.apply (this, Ext.apply(arguments, myConf));	
	} 
d18b535d   elena   catalog draft + c...
464
});