Blame view

js/app/views/StatisticsUI.js 15.9 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 
ac59d658   Elena.Budnik   redmine 7155
120
121
		var basicForm = this.formPanel.items.items[1].getForm();
		var updateStatus = true;	
d80af896   Elena.Budnik   args for Statistics
122
		var formValues = basicForm.getValues();
804b5599   Elena.Budnik   catalog name
123
		this.object.set('name',this.fieldName.getValue());
23769849   Elena.Budnik   LoadObject in Sta...
124
		this.object.set('description',formValues.description);
94a05aa2   Elena.Budnik   update object in ...
125
     	    	    
d80af896   Elena.Budnik   args for Statistics
126
127
128
		var recs = this.paramGrid.getStore().getNewRecords();
		var paramArr = new Array();
		
96cdc664   Elena.Budnik   new record type i...
129
		Ext.Array.each(recs, function(rec, index, allItems)
3ab0bee9   Elena.Budnik   aprams with args ...
130
131
132
		{			 			
			var obj = Ext.clone(rec.data);
			 
d80af896   Elena.Budnik   args for Statistics
133
134
135
136
137
138
139
140
			if (obj.function == null) 
			{				
				myDesktopApp.warningMsg('Please select function : `click to select`'); 
				updateStatus = false;
				return;                     
			}
			paramArr.push(obj);            	      
		});
94a05aa2   Elena.Budnik   update object in ...
141
	    
d80af896   Elena.Budnik   args for Statistics
142
		this.object.set('parameter', paramArr);
d18b535d   elena   catalog draft + c...
143
	    
d80af896   Elena.Budnik   args for Statistics
144
		var timeSource = this.timeSelector.getActiveTimeSource(); 
94a05aa2   Elena.Budnik   update object in ...
145
 
d80af896   Elena.Budnik   args for Statistics
146
147
148
149
150
151
152
		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;    
		}
ac59d658   Elena.Budnik   redmine 7155
153

d80af896   Elena.Budnik   args for Statistics
154
		basicForm.updateRecord(this.object);
d80af896   Elena.Budnik   args for Statistics
155
156
157
158
		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...
159
	 	      
d80af896   Elena.Budnik   args for Statistics
160
		return updateStatus;	    
d18b535d   elena   catalog draft + c...
161
162
163
164
165
166
	},
	
	/**
	 * Check if changes were made before closing window 
	 * @return true if changes
	 */	
23769849   Elena.Budnik   LoadObject in Sta...
167
168
	fclose : function() 
	{
d18b535d   elena   catalog draft + c...
169
170
171
172
173
174
175
176
177
178
		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...
179
180
	init : function (config) 
	{	  
d80af896   Elena.Budnik   args for Statistics
181
182
183
184
185
186
187
188
189
190
191
192
193
194
		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...
195
	  
d80af896   Elena.Budnik   args for Statistics
196
197
198
199
200
		var ttStore = Ext.create('Ext.data.Store', 
		{
			fields: [ 'name', 'hidden_id']	
		});
		
7348b580   Elena.Budnik   redmine #6010 : S...
201
		this.timeSelector = new amdaUI.TimeSelectorUI({id: 'statisticsTimeSelector', flex:1}); 
d18b535d   elena   catalog draft + c...
202
	
d80af896   Elena.Budnik   args for Statistics
203
204
205
206
		var store = Ext.create('Ext.data.Store', 
			{
					fields: ['name', 'function'] 
			});
d18b535d   elena   catalog draft + c...
207
	
23769849   Elena.Budnik   LoadObject in Sta...
208
		this.paramGrid = Ext.create('Ext.grid.Panel', 
d80af896   Elena.Budnik   args for Statistics
209
			{ 
23769849   Elena.Budnik   LoadObject in Sta...
210
211
				title: 'Select Parameter & Apply Function',
				selType : 'rowmodel',
7348b580   Elena.Budnik   redmine #6010 : S...
212
213
				flex: 2,
	//			height :250,
23769849   Elena.Budnik   LoadObject in Sta...
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
				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',
410e5f28   Hacene SI HADJ MOHAND   ok statistics
233
							store: [ 'min', 'max', 'mean' ,'RMS','median','variance','skewness','kurtosis','count','countNotNan','countTrue' ],
23769849   Elena.Budnik   LoadObject in Sta...
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
							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
252
253
						}
					}
23769849   Elena.Budnik   LoadObject in Sta...
254
255
256
				], 
				plugins: [ Ext.create('Ext.grid.plugin.CellEditing', { clicksToEdit: 1 })],
				listeners :
d80af896   Elena.Budnik   args for Statistics
257
				{
23769849   Elena.Budnik   LoadObject in Sta...
258
					render : function(o,op)
3ab0bee9   Elena.Budnik   aprams with args ...
259
					{
23769849   Elena.Budnik   LoadObject in Sta...
260
261
262
263
264
265
266
267
268
						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 ...
269
								}	
23769849   Elena.Budnik   LoadObject in Sta...
270
271
272
273
274
275
276
277
278
279
280
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
								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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
                                                                                                                                                                        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...
346
347
348
349
350
351
352
353
354
355
356
357
									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 ...
358
							}
23769849   Elena.Budnik   LoadObject in Sta...
359
360
361
362
363
						});
					},	
					cellclick : function(grid, cell, cellIndex, record){		     
							if (cellIndex == 3) 
							grid.getStore().remove(record);
3ab0bee9   Elena.Budnik   aprams with args ...
364
					}
23769849   Elena.Budnik   LoadObject in Sta...
365
366
				}    
			}); 
d18b535d   elena   catalog draft + c...
367
368
      	
 
23769849   Elena.Budnik   LoadObject in Sta...
369
370
371
		this.formPanel =  Ext.create('Ext.form.Panel', 
		{ 
			region: 'center',	     
7348b580   Elena.Budnik   redmine #6010 : S...
372
373
374
375
376
			layout: {
				type: 'hbox',
				pack: 'start',
				align: 'stretch'
			},
23769849   Elena.Budnik   LoadObject in Sta...
377
378
			defaults: { bodyStyle: {background : '#dfe8f6'}, padding : '3'},
			fieldDefaults: { labelWidth: 80, labelAlign : 'top' },
7348b580   Elena.Budnik   redmine #6010 : S...
379
			items: [ {  
23769849   Elena.Budnik   LoadObject in Sta...
380
381
382
				xtype: 'form',
				flex : 1,			    
				layout: {type: 'vbox', pack: 'start', align: 'stretch'},
7348b580   Elena.Budnik   redmine #6010 : S...
383
384
				items : [ this.paramGrid ],
					fbar:[ {   
23769849   Elena.Budnik   LoadObject in Sta...
385
386
387
388
389
390
391
						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
392
							if (this.updateObject()){ 
23769849   Elena.Budnik   LoadObject in Sta...
393
394
395
396
397
398
399
400
								this.generateCatalog();			   			 
							}
						}
					},
					{   
						type: 'button',
						text: 'Reset',
						scope : this,
7348b580   Elena.Budnik   redmine #6010 : S...
401
402
403
404
405
						handler: function() {
							this.formPanel.getForm().reset();
							this.paramGrid.store.removeAll();
							this.timeSelector.TTGrid.store.removeAll();
						}
23769849   Elena.Budnik   LoadObject in Sta...
406
					}]
7348b580   Elena.Budnik   redmine #6010 : S...
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
				},
				{            
					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...
426
		}); 
d18b535d   elena   catalog draft + c...
427
	 
23769849   Elena.Budnik   LoadObject in Sta...
428
429
430
431
432
433
434
435
436
		var myConf = {
					layout: 'border',
					items: [		   
					this.formPanel, 		     
					{
						xtype: 'panel', 
						region: 'south',
						title: 'Information',
						collapsible: true,
42863f42   Elena.Budnik   collapseMode: "he...
437
						collapseMode: 'header',
45bd8efa   Hacene SI HADJ MOHAND   adding stats notes
438
						height: 160,
23769849   Elena.Budnik   LoadObject in Sta...
439
440
441
442
443
444
445
446
447
448
						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...
449
	    
23769849   Elena.Budnik   LoadObject in Sta...
450
451
		Ext.apply (this, Ext.apply(arguments, myConf));	
	} 
d18b535d   elena   catalog draft + c...
452
});