Blame view

js/app/views/DownloadUI.js 25.9 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * Project   : AMDA-NG
 * Name      : DownloadUI.js
 * @class 	 amdaUI.DownloadUI
 * @extends  Ext.container.Container 
 * @brief    Download Module UI definition (View)
 * @author 	 Myriam
 * @version $Id: DownloadUI.js 2622 2014-11-07 14:50:09Z elena $  
 */
 
 
Ext.define('amdaUI.DownloadUI', {
	extend: 'Ext.container.Container',
	alias: 'widget.panelDownload',

	requires: [
		'amdaUI.TimeSelectorUI',
7ac3ce50   Benjamin Renard   First implementat...
18
19
		'amdaUI.ParamArgumentsPlug',
		'amdaModel.DownloadParam'
16035364   Benjamin Renard   First commit
20
21
	],   
	
9cb1f3cd   Benjamin Renard   Update download i...
22
23
24
25
26
	//Old kernel time formats
	//timeformatData    : [['Y-m-dTH:i:s', 'YYYY-MM-DDThh:mm:ss'], ['Y m d H i s', 'YYYY MM DD hh mm ss'], ['d m Y H i s', 'DD MM YYYY hh mm ss'], ['Y z H i s', 'YYYY DDD hh mm ss']],
	//New kernel time formats
	timeformatData    : [['Y-m-dTH:i:s', 'YYYY-MM-DDThh:mm:ss'], ['DD Time', 'DD Time'], ['Timestamp', 'Timestamp']],
	fileformatData    : [['ASCII', 'ASCII'],['vot', 'VOTable'],['cdf', 'CDF'],['json', 'JSON']],
16035364   Benjamin Renard   First commit
27
28
29
	fileformatTTData  : [['text', 'plain text'], ['vot','VOTable']],
	filecompressData  : [['zip', 'zip'], ['tar+gzip', 'tar+gzip']],
	filestructureData : [['0','All In One File'], ['1','One File Per Time Interval'], ['2','One File Per Param/Interval']],
16035364   Benjamin Renard   First commit
30
31
32
33
34

	constructor: function(config) {	  
		this.init(config);
		this.callParent(arguments);		
	    // load object into view		 
7ac3ce50   Benjamin Renard   First implementat...
35
36
37
38
39
	 	if (this.object) this.loadObject();
	 	//
	 	var paramArgsPlug = this.getPlugin('download-param-arguments-plugin');
	 	if (paramArgsPlug)
	 		paramArgsPlug.onApply = this.onApplyParameterArgs;
16035364   Benjamin Renard   First commit
40
41
42
	},

	addTT : function(newTTName,newTTid)
bb6e93d9   Benjamin Renard   Implement templat...
43
    {		 
16035364   Benjamin Renard   First commit
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
		var tabPanel = this.formPanel.down();
		var downloadSrc = tabPanel.items.indexOf(tabPanel.getActiveTab());
		 
		if (downloadSrc === 0) {
                    this.timeSelector.addTT(newTTName,newTTid);
		}
		else {
                    // search for an existing record in store with this unique name
                    var existingIndex = this.TTGrid.store.findExact( 'name', newTTName);
                    // if no corresponding TT found
                    if (existingIndex == -1){
                        // adding the time table to the TTGrid of TT download 
                        var r = Ext.create('amdaModel.TTobject', { id: newTTid, name: newTTName });
                        this.TTGrid.store.insert(this.TTGrid.store.getCount(),r);   
                    }        
		}
	},

	addTTs : function(TTarray) {
	// set TTTab	    
	this.timeSelector.setTTTab(TTarray);
	},
	
	// Add TT in download TT module
	addTTdownload : function(newTTName,newTTid){
		var tabPanel = this.formPanel.down();
		tabPanel.setActiveTab(1);
		this.addTT(newTTName,newTTid);
		
	},	
        
        /**
         * Set Start-Stop from parameter info (Local & MyData)
         */ 
        setTimeFromData : function(obj) {
                                                                  
            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.down('form').getForm().setValues({ startDate : dateStart, stopDate : dateStop });
            this.timeSelector.intervalSel.updateDuration();
        },
        
63ac7745   Benjamin Renard   Support component...
87
        addParam : function(paramId, isLeaf, needArgs, components) 
16035364   Benjamin Renard   First commit
88
        {
bb6e93d9   Benjamin Renard   Implement templat...
89
        	// adding the parameter to the  paramGrid
63ac7745   Benjamin Renard   Support component...
90
        	
690e0a87   Benjamin Renard   Add sum in table ...
91
92
93
94
95
96
97
98
99
100
101
102
103
        	var paramObj = {
        			paramid: paramId,
        			type: 0,
        			'dim1-is-range': false,
        			'dim1-min-range': 0.,
        			'dim1-max-range': 0.,
        			'dim1-index': '*',
        			'dim2-is-range': false,
        			'dim2-min-range': 0.,
        			'dim2-max-range': 0.,
        			'dim2-index': '*',
        			template_args: {}
        	};
63ac7745   Benjamin Renard   Support component...
104
105
106
        	
        	if (components) {
        		if (components['index1']) {
690e0a87   Benjamin Renard   Add sum in table ...
107
108
        			paramObj['dim1-index'] = components['index1'];
        			++paramObj['type'];
63ac7745   Benjamin Renard   Support component...
109
110
111
        		}
        		
        		if (components['index2']) {
690e0a87   Benjamin Renard   Add sum in table ...
112
113
        			paramObj['dim2-index'] = components['index2'];
        			++paramObj['type'];
63ac7745   Benjamin Renard   Support component...
114
115
116
        		}
        	}
        	
690e0a87   Benjamin Renard   Add sum in table ...
117
            var r = Ext.create('amdaModel.DownloadParam', paramObj);
cefdf537   Benjamin Renard   Remove restrictio...
118
            var pos = this.paramGrid.store.getCount();
bb6e93d9   Benjamin Renard   Implement templat...
119
120
            this.paramGrid.store.insert(pos,r); 
            this.paramGrid.getView().refresh();
63ac7745   Benjamin Renard   Support component...
121
            if (!isLeaf || needArgs)
bb6e93d9   Benjamin Renard   Implement templat...
122
            	this.editParameterArgs(r);
16035364   Benjamin Renard   First commit
123
124
125
126
127
128
129
130
131
132
133
134
        },

        addParams: function(arrayParams) 
        {
            var arrayRec = new Array();
            var index = 1;		 
            if (arrayParams)
            {
                index = 0;            
                Ext.Array.each(arrayParams,function(item){		
                        if (Ext.isObject(item)) {
                                // for Parameter Name in Download Module
690e0a87   Benjamin Renard   Add sum in table ...
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
                        		var paramObj = {
                        			paramid: paramId,
                        			type: 0,
                        			'dim1-is-range': false,
                        			'dim1-min-range': 0.,
                        			'dim1-max-range': 0.,
                        			'dim1-index': item.get('dim1'),
                        			'dim2-is-range': false,
                        			'dim2-min-range': 0.,
                        			'dim2-max-range': 0.,
                        			'dim2-index': item.get('dim2'),
                        			template_args: {}
                        		};
                        	
                                var r = Ext.create('amdaModel.DownloadParam', paramObj);
16035364   Benjamin Renard   First commit
150
151
152
                        }
                        else {
                                // for Download By Request in Operations menu
7ac3ce50   Benjamin Renard   First implementat...
153
                        	//ToDo BRE - Components selection
bb6e93d9   Benjamin Renard   Implement templat...
154
                                var r = Ext.create('amdaModel.DownloadParam', { paramid: item });
16035364   Benjamin Renard   First commit
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
                        }
                    arrayRec.push(r);
                });
            } 	     
            this.paramGrid.getStore().loadData(arrayRec);
        },
	
	// parameter name -> alias
	updateConstruct : function(oldval,newval) {
		var index = this.paramGrid.store.findExact('name', oldval);
		if (index != -1) {
			this.paramGrid.getStore().getAt(index).set('name',newval);
			this.paramGrid.getStore().getAt(index).set('text',newval);	
    	}
	},
	
	setObject : function(obj) {
		this.object = obj;  
		this.loadObject();
	},

	/**
	 * update this.object from form
	 */
        updateObject : function()
        {    
            // get the basic form
            var tabPanel = this.formPanel.down();
            var downloadSrc = tabPanel.items.indexOf(tabPanel.getActiveTab());
            var basicForm = this.formPanel.getForm();
            var updateStatus = true;
            var values = basicForm.getValues();
            
            // data download
            if (downloadSrc === 0) 
            {            
                var timeformat =  basicForm.findField('timeformat').getRawValue();         
de9b2578   Benjamin Renard   Update TimeSelect...
192
                var timeSource = this.timeSelector.getActiveTimeSource();     
16035364   Benjamin Renard   First commit
193
194
                var structure = values.filestructure;
                var sampling = values.sampling ? values.sampling : 600;
7ac3ce50   Benjamin Renard   First implementat...
195
                var refparamSampling = values.refparamsampling == 'on';
3604e40f   Benjamin Renard   "File Name" repla...
196
                var fileprefix = values.fileprefix ? values.fileprefix : '';
16035364   Benjamin Renard   First commit
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
                var fileformat = values.fileformat;
                var compression = values.compression;

          	  var fieldsWithoutName = basicForm.getFields().items;
        	  Ext.Array.each(fieldsWithoutName, function(item, index,allItems){		     
        		   if (!item.isValid()) {
            		  if ((timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0]) &&
               			   ((item.name == 'startDate') || (item.name == 'stopDate') || (item.name == 'duration'))) {
               			  	updateStatus = true;
               		  }
               		  else {
               			// set update isn't allowed
                             updateStatus = false;
                             return false;
               		  }       
        		   }
        	  }, this);
        	  
                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`'); 
                    updateStatus = false;    
                }
                                
                if (updateStatus) 
                {
                    /// real object update
                    // update TimeTable object with the content of form
                    basicForm.updateRecord(this.object);
                    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);
                    // set parameters			    
                    this.object.set('list',this.paramGrid.getStore().data.items);
                    this.object.set('structure', structure);
7ac3ce50   Benjamin Renard   First implementat...
234
                    this.object.set('refparamSampling', refparamSampling);
16035364   Benjamin Renard   First commit
235
                    this.object.set('sampling', sampling);
3604e40f   Benjamin Renard   "File Name" repla...
236
                    this.object.set('fileprefix',fileprefix);
16035364   Benjamin Renard   First commit
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
275
276
277
278
279
280
281
                    this.object.set('timeformat',timeformat);
                    this.object.set('fileformat',fileformat);
                    this.object.set('compression',compression);
                }    
            }
            //TT download
            else 
            {
                var timeformat =  values.timeformatTT;
                var compression = values.compressionTT;
                var fileformat = values.fileformatTT;
                this.object.set('timeTables',this.TTGrid.getStore().data.items);
                this.object.set('timeformatTT',timeformat);
                this.object.set('fileformatTT',fileformat);
                this.object.set('compressionTT',compression);
            }
            
            this.object.set('downloadSrc',downloadSrc);
            // return the update status
            return updateStatus;	    
	},

	/**
	 * load this.object into form
	 */
	loadObject : function(){	
	
	if (!this.object.get('timeformat'))
		 this.object.set('timeformat', this.timeformatData[0][0]);
	
	if (!this.object.get('timeformatTT'))
		 this.object.set('timeformatTT', this.timeformatData[0][0]);
	
	if (!this.object.get('fileformat'))
		this.object.set('fileformat', this.fileformatData[0][0]);
	
	if (!this.object.get('fileformatTT'))
		  this.object.set('fileformatTT', this.fileformatTTData[0][0]);
	
	if (!this.object.get('compression'))
		    this.object.set('compression', this.filecompressData[1][0]);

	if (!this.object.get('compressionTT'))
	    this.object.set('compressionTT', this.filecompressData[1][0]);
	
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
	// load object into form	
	this.formPanel.getForm().loadRecord(this.object);
        // set object's TTs into the timeselector
	this.addTTs(this.object.get('timeTables'));	 
	// set parameters 	
	this.addParams(this.object.get('list'));	     
	},

	/**
	 * download method called by 'Download' button to launch the download process
	 */
	doDownload : function(){	 
		var downloadModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
		if (downloadModule)
			downloadModule.linkedNode.execute();	
	   // fire execution  
	  //  this.object.fireEvent('execute',this.object.dirty);
	},
	 
	
7ac3ce50   Benjamin Renard   First implementat...
302
	actionItem: function(grid, cell, cellIndex, record, row, recordIndex, e){
7ac3ce50   Benjamin Renard   First implementat...
303
		if (cellIndex == 3)
16035364   Benjamin Renard   First commit
304
			grid.getStore().remove(record);
cefdf537   Benjamin Renard   Remove restrictio...
305
306
		else if (cellIndex == 2) {
			this.paramGrid.getView().select(row);
bb6e93d9   Benjamin Renard   Implement templat...
307
			this.editParameterArgs(record);
cefdf537   Benjamin Renard   Remove restrictio...
308
		}
7ac3ce50   Benjamin Renard   First implementat...
309
310
	},
	
bb6e93d9   Benjamin Renard   Implement templat...
311
	editParameterArgs: function(record) {
7ac3ce50   Benjamin Renard   First implementat...
312
313
		var paramArgsPlug = this.getPlugin('download-param-arguments-plugin');
		if (paramArgsPlug)
bb6e93d9   Benjamin Renard   Implement templat...
314
			paramArgsPlug.show('download-param-arguments-plugin', record);
7ac3ce50   Benjamin Renard   First implementat...
315
316
	},
	
bb6e93d9   Benjamin Renard   Implement templat...
317
	onApplyParameterArgs : function(parentUI, paramObject) {
7ac3ce50   Benjamin Renard   First implementat...
318
		parentUI.paramGrid.getView().refresh();
16035364   Benjamin Renard   First commit
319
320
	},
	 
9cb1f3cd   Benjamin Renard   Update download i...
321
322
323
324
325
326
	onFileStructureChange : function(combo, newValue, oldValue){
		if (!this.formPanel)
			return;

		var refParamCheck = this.formPanel.getForm().findField('refparamsampling');
		var samplingField = this.formPanel.getForm().findField('sampling');
16035364   Benjamin Renard   First commit
327

9cb1f3cd   Benjamin Renard   Update download i...
328
329
330
		if (samplingField &&  newValue !== oldValue) {
		     refParamCheck.setDisabled(newValue == 2);
		     samplingField.setDisabled((newValue == 2) || refParamCheck.getValue());
16035364   Benjamin Renard   First commit
331
332
		}
	},
9cb1f3cd   Benjamin Renard   Update download i...
333
334
335
336
337
338
339
340
341
342
343

	onRefParamSamplingChange : function(check, newValue, oldValue){
		if (!this.formPanel)
                        return;

		var samplingField = this.formPanel.getForm().findField('sampling');
		var structureCombo = this.formPanel.getForm().findField('filestructure');

		if (samplingField &&  newValue !== oldValue)
			samplingField.setDisabled((structureCombo.getValue() == 2) || check.getValue());
	},
16035364   Benjamin Renard   First commit
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
	
	/**
	 * Check if changes were made before closing window 
	 * @return false
	 */	
	fclose : function() {
		return false;
	},
	
	init : function (config){
		
		this.timeSelector = new amdaUI.TimeSelectorUI({id: 'downloadTimeSelector',flex: 1});
		
		this.paramGrid = Ext.create('Ext.grid.Panel', {
		    flex: 2,
7ac3ce50   Benjamin Renard   First implementat...
359
		    store : Ext.create('Ext.data.Store', { model: 'amdaModel.DownloadParam'} ),  
16035364   Benjamin Renard   First commit
360
		    columns: [ 
7ac3ce50   Benjamin Renard   First implementat...
361
362
363
364
365
366
367
368
		              { xtype: 'rownumberer', width: 20 },
		              { 
		            	  header: "Parameter Name", 
		            	  dataIndex: 'name', 
		            	  flex:1, 
		            	  sortable: false, 
		            	  menuDisabled : true ,
		            	  renderer: function (val, meta, rec) {
bb6e93d9   Benjamin Renard   Implement templat...
369
		            		  return rec.getParamFullName();
7ac3ce50   Benjamin Renard   First implementat...
370
371
372
373
374
375
376
377
378
379
380
381
		                  }
		              },
		              {
		            	  menuDisabled : true, width: 30, renderer: function(){
		            		  return'<div class="icon-parameters" style="width: 15px; height: 15px;"></div>';
		            	  }
		              },
		              { 
		            	  menuDisabled : true, width: 30, renderer: function(){
		            		  return'<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
		            	  }
		              }
16035364   Benjamin Renard   First commit
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
		    ],
			//TODO - BRE - Wait the fix for drag&drop issue
		    listeners :
			{
			  render : function(o,op)
			  {
			    var me = this;
			    var el = me.body.dom;
			    var dropTarget = Ext.create('Ext.dd.DropTarget', el, {
			        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;   
                                    }	
                                    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;
bb6e93d9   Benjamin Renard   Implement templat...
420
                                    var idToSent;
63ac7745   Benjamin Renard   Support component...
421
                                    var components = null;
16035364   Benjamin Renard   First commit
422
423
424
425
426
                                    switch (data.records[0].data.nodeType)
                                    {
                                        case 'localParam' :
                                        case 'remoteParam':
                                        case 'remoteSimuParam':                                           
bb6e93d9   Benjamin Renard   Implement templat...
427
                                        	idToSent = data.records[0].get('id');
16035364   Benjamin Renard   First commit
428
                                            if (data.records[0].get('alias')!= "" )
63ac7745   Benjamin Renard   Support component...
429
430
431
432
433
434
435
436
437
438
439
                                            	idToSent = "#"+data.records[0].get('alias');
                                            var component_info = data.records[0].get('component_info');
                                            if (component_info && component_info.parentId) {
                                            	//It's a component
                                            	idToSent = component_info.parentId;
                                        		components = [];
                                        		if (component_info.index1)
                                        			components['index1'] = component_info.index1;
                                        		if (component_info.index2)
                                        			components['index2'] = component_info.index2;
                                            }
16035364   Benjamin Renard   First commit
440
441
                                            break;
                                        case 'alias' :
bb6e93d9   Benjamin Renard   Implement templat...
442
                                        	idToSent = "#"+data.records[0].get('text');
16035364   Benjamin Renard   First commit
443
444
                                            break;
                                        case 'derivedParam' :
bb6e93d9   Benjamin Renard   Implement templat...
445
                                        	idToSent = "ws_"+data.records[0].get('text');
16035364   Benjamin Renard   First commit
446
447
                                            break;
                                        case 'myDataParam' :
bb6e93d9   Benjamin Renard   Implement templat...
448
                                        	idToSent = "wsd_"+data.records[0].get('text');
16035364   Benjamin Renard   First commit
449
450
451
452
453
454
                                            break;
                                        default :
                                            return false;
                                    }
                                    var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
                                    if (downModule)
63ac7745   Benjamin Renard   Support component...
455
                                    	downModule.addParam(idToSent,data.records[0].get('leaf'), data.records[0].get('needsArgs'), components);	
16035364   Benjamin Renard   First commit
456
457
458
459
460
461
462
463
			          return true;
			        }
			    });
			  }
			}
			
		});      
						
7ac3ce50   Benjamin Renard   First implementat...
464
		this.paramGrid.on('cellclick', this.actionItem, this);
16035364   Benjamin Renard   First commit
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512

		this.TTGrid = Ext.create('Ext.grid.Panel', {
		    flex: 2,
		    store : Ext.create('Ext.data.Store', {model: 'amdaModel.TTobject'}),  
		    columns: [ 
			{ xtype: 'rownumberer', width: 20 },
			{ header: "Time Table Name", dataIndex: 'name', flex:1, sortable: false, menuDisabled: true},
			{ 
			    menuDisabled : true, width: 30, renderer: function(){
				return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
			    }
			}
		    ],
	    listeners :
		{
		  render : function(o,op)
		  {
		    var me = this;
		    var el = me.body.dom;
		    var dropTarget = Ext.create('Ext.dd.DropTarget', el, {
		        ddGroup: 'explorerTree',
		        notifyEnter : function(ddSource, e, data) 
		        {
		    	  
		        },
		        notifyOver  : function(ddSource, e, data)
		        {
		        	if ((data.records[0].get('nodeType') == 'timeTable' || data.records[0].get('nodeType') == 'sharedtimeTable') && (data.records[0].get('leaf')))
		        	{
		        	  this.valid = true;
		        	  return this.dropAllowed;
		        	}
		        	this.valid = false;
		        	return this.dropNotAllowed;
		        },
		        notifyDrop  : function(ddSource, e, data)
		        {
		          if (!this.valid)
		            return false;
		          var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
		          if (downModule)
		        	  downModule.getUiContent().addTTdownload(data.records[0].get('text'),data.records[0].get('id'));
		          return true;
		        }
		    });
		  }
		}
		});
7ac3ce50   Benjamin Renard   First implementat...
513
		this.TTGrid.on('cellclick', this.actionItem, this);
16035364   Benjamin Renard   First commit
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
						
		this.paramPanel = { 		 
		      xtype: 'container',	  
		      title: 'Get Data',		   
		      layout: {
			  type: 'hbox',
			  align : 'stretch',
			  defaultMargins: {top: 10, left:10, bottom: 5, right:10}
		      },
		      items: [		     
			  {
			     xtype: 'container',
			     flex: 2,
			     layout: {
			 	type: 'vbox',
			 	align : 'stretch'
			      },
			     items: [ 				
				{
				  xtype: 'textfield',				 				 
				  fieldLabel: 'Request Name',
				  disabled: true,
				  name : 'name'	 
				}, 
				{
				  xtype: 'splitter',
				  flex: 0.05 
				},  	 			 				 			 	      
			 	this.paramGrid
			      ]  
			   },			 
			  {                 		   
			    xtype: 'container',
			    flex: 2,
			    defaults : {
			      xtype : 'combo',
			      labelWidth: 90,
			      queryMode: 'local',
			      editable: false
			    },
			    layout: {
				type: 'vbox',
				align: 'stretch'
			    },
			    items: [				
				{				    				  
				  fieldLabel: 'Time Format',				  
				  name: 'timeformat',				   
				  store: this.timeformatData,
				  value: this.timeformatData[0]					     
				},
16035364   Benjamin Renard   First commit
565
566
567
568
569
570
				{				    
				    fieldLabel: 'File Structure',
				    name: 'filestructure',
				    store: this.filestructureData,
				    value: this.filestructureData[2],
				    listeners : {
9cb1f3cd   Benjamin Renard   Update download i...
571
572
				      change  : { fn : this.onFileStructureChange },
				      scope: this
16035364   Benjamin Renard   First commit
573
				    } 
9cb1f3cd   Benjamin Renard   Update download i...
574
575
576
577
578
579
580
581
582
				},
				{
				    xtype: 'checkbox', boxLabel: 'Use first param. as reference for sampling', 		
				    boxLabelAlign: 'before',
				    name: 'refparamsampling', checked: false, disabled: true,
				    listeners : {
				      change : { fn : this.onRefParamSamplingChange },
				      scope : this
				    }
16035364   Benjamin Renard   First commit
583
584
585
586
587
588
589
590
				},  		 					    						
				{
				    xtype: 'numberfield', name: 'sampling',
				    fieldLabel: 'Sampling Time', value: 600,
				    hideTrigger: true,  editable: true,
				    disabled: true
				},
				{
3604e40f   Benjamin Renard   "File Name" repla...
591
592
593
				    xtype: 'textfield', name: 'fileprefix',
				    fieldLabel: 'File Prefix',				    
				    disabled: false,  editable: true
16035364   Benjamin Renard   First commit
594
				},
16035364   Benjamin Renard   First commit
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
				{				     
				      fieldLabel: 'File Format',
				      name: 'fileformat',				    
				      store: this.fileformatData, 
				      value: this.fileformatData[0]                  	        	        	 
				},				
				{
				      fieldLabel: 'Compression', 
				      name: 'compression',
				      store: this.filecompressData, 
				      value: this.filecompressData[0]
				},
				this.timeSelector
                      ]
                   } 
                ]};
 
		     this.ttPanel =
		     {  
			  xtype: 'container',	        
			  title: 'Get Time Table',			 
			  layout: {
			      type: 'hbox',
			      align : 'stretch',
			      defaultMargins: {top: 10, left:10, bottom: 5, right:10}
			  },
			  items: [ 			 									 			 				 			 	      
			 	this.TTGrid,			         
			  {                 		   
			    xtype: 'container',
			    flex: 2,
			    defaults : {
			      xtype : 'combo',
			      labelWidth: 90,
			      queryMode: 'local',
			      editable: false			      
			    },
			    layout: {
				type: 'vbox',
				align : 'stretch'
			    },
			    items: [			       
				{				    				  
				  fieldLabel:'Time Format',				  
				  name:'timeformatTT',				   
				  store: this.timeformatData,
				  value: this.timeformatData[0]					     
                   		 }, 
				{				     
				    fieldLabel: 'File Format ',
				    name: 'fileformatTT',				    
				    store: this.fileformatTTData, 
				    value: this.fileformatTTData[0]                  	        	        	 
				},				
				{
				    fieldLabel: 'Compression ', 
				    name: 'compressionTT',
				    store: this.filecompressData, 
				    value: this.filecompressData[0]
				}	          	        	           
			    ]
                         }
	             ]
			 } ;       
 
		this.formPanel = new Ext.form.Panel({
		    layout: 'fit',
		    region: 'center',
		    bodyStyle: { background : '#dfe8f6' },  
		    buttonAlign: 'left',
		    trackResetOnLoad: true,  //reset to the last loaded record
		    defaults: {
			border: false
		    },
		    items: [  			   
			 {
			   xtype: 'tabpanel',
			   activeTab : 0,
			   bodyStyle: { background : '#dfe8f6' },
			   items: [
			       this.paramPanel,
			       this.ttPanel			      
			   ]
			 }
		      ],
		    fbar: [
			  {
			    text: 'Download',
			    scope : this,
			    handler: function(button){
			    // if the return is true (object had been updated)
			      if(this.updateObject()){
			      // launch the search process 			        
				this.doDownload();				   				
			      }
			    } 
			  },
			  {
                            text: 'Reset',
			    scope : this,
			    handler: function(){
				  this.formPanel.getForm().reset();	
				  
				  var tabPanel = this.formPanel.down();
				  var downloadSrc = tabPanel.items.indexOf(tabPanel.getActiveTab());					 
			      if (downloadSrc === 0) {
			    	  // reset parameters and Time Tables in Get Data
			    	  this.paramGrid.store.removeAll();
			    	  this.timeSelector.TTGrid.store.removeAll();
			      }
			      else {
			    	// reset Time Tables in Get time Table
			    	  this.TTGrid.store.removeAll();
			      }
			    }			 
			  }
		    ]  
		});
    	 
		
	var myConf = {
		layout: 'border',
		items: [		   
		      this.formPanel, 		     
		      {
			xtype: 'panel', 
			region: 'south',
			title: 'Information',
			collapsible: true,
			height: 100,
			autoHide: false,
			bodyStyle: 'padding:5px',
			iconCls: 'icon-information',
			  loader: {
			    autoLoad: true,
			    url: helpDir+'downloadHOWTO'
			  }

		    	  
		      }
		],
7ac3ce50   Benjamin Renard   First implementat...
736
		plugins: [ {ptype: 'paramArgumentsPlugin', pluginId: 'download-param-arguments-plugin'}]
16035364   Benjamin Renard   First commit
737
738
739
740
741
742
	  };
        
	Ext.apply (this, Ext.apply(arguments, myConf));
      }

});