Blame view

js/app/views/DownloadUI.js 36.3 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
/**
 * 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 $  
 */
e8805e7f   Elena.Budnik   tooltip for timef...
10

16035364   Benjamin Renard   First commit
11
Ext.define('amdaUI.DownloadUI', {
0cefcae2   Benjamin Renard   il reste click droit
12
13
    extend: 'Ext.container.Container',
    alias: 'widget.panelDownload',
16035364   Benjamin Renard   First commit
14

0cefcae2   Benjamin Renard   il reste click droit
15
16
17
18
    requires: [
        'amdaUI.TimeSelectorUI',
        'amdaUI.ParamArgumentsPlug',
        'amdaUI.SendToSampButtonUI',
0e540b69   Benjamin Renard   Finalize save of ...
19
	'amdaModel.Download',
9abfbee9   Benjamin Renard   Add some frames
20
21
        'amdaModel.DownloadParam',
        'amdaModel.RequestParamObject'
0cefcae2   Benjamin Renard   il reste click droit
22
23
    ],

0cefcae2   Benjamin Renard   il reste click droit
24
25
26
27
28
29
30
31
32
33
34
35
    constructor: function (config) {
        this.init(config);
        this.callParent(arguments);
        // load object into view		 
        if (this.object)
            this.loadObject();
        //
        var paramArgsPlug = this.getPlugin('download-param-arguments-plugin');
        if (paramArgsPlug)
            paramArgsPlug.onApply = this.onApplyParameterArgs;
    },

f569bae5   Benjamin Renard   Save download
36
37
38
39
40
41
42
43
44
45
46
47
48
    saveRequest: function()
    {
        var me = this;

        if (!this.updateObject()) {
            return;
        }

        var downloadModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (!downloadModule) {
            return;
        }

f6539f85   Benjamin Renard   Download - Fix sa...
49
50
51
52
53
        if ((this.object.get('id') != '') && (downloadModule.linkedNode.get('text') == this.object.get('name'))) {
            this.saveProcess(false);
            return;
        }

f569bae5   Benjamin Renard   Save download
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
        downloadModule.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,
f6539f85   Benjamin Renard   Download - Fix sa...
72
73
74
75
76
                            fn : function(btn) {
                                if (btn == 'cancel') return;
                                this.fieldName.clearInvalid();
                                this.saveProcess(true);
                            },
f569bae5   Benjamin Renard   Save download
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
                            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);
        });
    },

    saveProcess: function(toRename) {
0e540b69   Benjamin Renard   Finalize save of ...
101
102
103
104
105
106
107
108
109
110
111
        var downloadModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (this.object.isModified('name')) {
            if (this.object.get('id'))
            {
                var contextNode = downloadModule.linkedNode.parentNode;
                downloadModule.createLinkedNode();
                downloadModule.linkedNode.set('contextNode',contextNode);
                downloadModule.createObject(this.object.getJsonValues());
                var downloadObj = downloadModule.linkedNode.get('object');
                this.object = downloadObj;
                if (toRename) downloadModule.linkedNode.toRename = true;
f569bae5   Benjamin Renard   Save download
112
            }
0e540b69   Benjamin Renard   Finalize save of ...
113
114
115
116
117
            downloadModule.linkedNode.create();
        }
        else {
            downloadModule.linkedNode.set('contextNode',downloadModule.contextNode);
            downloadModule.linkedNode.update();
f569bae5   Benjamin Renard   Save download
118
119
120
        }
    },

0cefcae2   Benjamin Renard   il reste click droit
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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
164
165
    addTT: function (newTTName, newTTid)
    {
        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) {
        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.down('form').getForm().setValues({startDate: dateStart, stopDate: dateStop});
        this.timeSelector.intervalSel.updateDuration();
    },

915d6711   Benjamin Renard   DownloadNode now ...
166
167
    addParameter: function(paramNode, updateTime)
    {
f569bae5   Benjamin Renard   Save download
168
169
170
171
        if (this.doNotifyDrop(paramNode)) {
            return this.doParamDrop(paramNode);
        }
        return false;
915d6711   Benjamin Renard   DownloadNode now ...
172
173
    },

2fa56f95   Benjamin Renard   Predefined templa...
174
    addParam: function (paramId, isLeaf, needArgs, components, predefined_args)
0cefcae2   Benjamin Renard   il reste click droit
175
176
    {
        // adding the parameter to the  paramGrid	
29dfb596   Benjamin Renard   Rework of ParamAr...
177
178
        var paramObj = amdaModel.RequestParamObject.getEmptyObj();
        paramObj.paramid = paramId;
0cefcae2   Benjamin Renard   il reste click droit
179
180
181
182
183
184
185
186
187
188
189
190
191

        if (components) {
            if (components['index1']) {
                paramObj['dim1-index'] = components['index1'];
                ++paramObj['type'];
            }

            if (components['index2']) {
                paramObj['dim2-index'] = components['index2'];
                ++paramObj['type'];
            }
        }

2fa56f95   Benjamin Renard   Predefined templa...
192
193
194
195
	if (predefined_args) {
		paramObj.template_args = predefined_args;
	}

0cefcae2   Benjamin Renard   il reste click droit
196
197
198
199
200
201
202
203
204
        var r = Ext.create('amdaModel.DownloadParam', paramObj);
        var pos = this.paramGrid.store.getCount();
        this.paramGrid.store.insert(pos, r);
        this.paramGrid.getView().refresh();

        if (needArgs)
            this.editParameterArgs(r);
    },

0cefcae2   Benjamin Renard   il reste click droit
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
    // 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 = values.timeformat;
            var timeSource = this.timeSelector.getActiveTimeSource();
0e540b69   Benjamin Renard   Finalize save of ...
236
            var filestructure = values.filestructure;
0cefcae2   Benjamin Renard   il reste click droit
237
            var sampling = values.sampling ? values.sampling : 600;
fb23b7fe   Benjamin Renard   Save 'used first ...
238
            var refparamSampling = values.refparamSampling == 'on';
0cefcae2   Benjamin Renard   il reste click droit
239
240
241
242
243
244
            var fileprefix = values.fileprefix ? values.fileprefix : '';
            var fileformat = values.fileformat;
            var compression = values.compression;

            var fieldsWithoutName = basicForm.getFields().items;
            Ext.Array.each(fieldsWithoutName, function (item, index, allItems) {
f569bae5   Benjamin Renard   Save download
245
                if ((item.name != 'name') && !item.isValid()) {
0cefcae2   Benjamin Renard   il reste click droit
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
                    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;
            }

0e540b69   Benjamin Renard   Finalize save of ...
264
265
266
267
268
269
            if (updateStatus && (this.object.params().count() == 0))
            {
                myDesktopApp.warningMsg('You must define at least one parameter to download');
                updateStatus = false;
            }

0cefcae2   Benjamin Renard   il reste click droit
270
271
272
273
274
            if (updateStatus)
            {
                /// real object update
                // update TimeTable object with the content of form
                basicForm.updateRecord(this.object);
0e540b69   Benjamin Renard   Finalize save of ...
275

0cefcae2   Benjamin Renard   il reste click droit
276
277
278
279
                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);
0e540b69   Benjamin Renard   Finalize save of ...
280
                this.object.set('filestructure', filestructure);
0cefcae2   Benjamin Renard   il reste click droit
281
282
283
284
285
286
287
288
289
290
291
                this.object.set('refparamSampling', refparamSampling);
                this.object.set('sampling', sampling);
                this.object.set('fileprefix', fileprefix);
                this.object.set('timeformat', timeformat);
                this.object.set('fileformat', fileformat);
                this.object.set('compression', compression);
            }
        }
        //TT download
        else
        {
6d20bc66   Hacene SI HADJ MOHAND   correction ok
292
            var timeformat = values.timeformatTT ? values.timeformatTT :amdaModel.DownloadConfig.defaultValues.timeformatTT;
0cefcae2   Benjamin Renard   il reste click droit
293
294
            var compression = values.compressionTT;
            var fileformat = values.fileformatTT;
0e540b69   Benjamin Renard   Finalize save of ...
295
296
297
298
299
            if (this.TTGrid.getStore().count() == 0) {
                myDesktopApp.warningMsg('You must define at least one TimeTable or Catalog to download');
                updateStatus = false;
            }
            else if (compression === 'none'
0cefcae2   Benjamin Renard   il reste click droit
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
                    && this.TTGrid.getStore().count() > 1) {
                myDesktopApp.warningMsg('You are going to download several time tables -  select the Compression please');
                updateStatus = false;
            }
            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 () {
0cefcae2   Benjamin Renard   il reste click droit
319
320
321
322
        // load object into form	
        this.formPanel.getForm().loadRecord(this.object);
        // set object's TTs into the timeselector
        this.addTTs(this.object.get('timeTables'));
0e540b69   Benjamin Renard   Finalize save of ...
323
324
325
326
327
328
        // set parameters
        this.paramGrid.reconfigure(this.object.params());
        //this.paramGrid.getStore().loadData(this.object.params().data.items);
	// select "Parameters" tab
	var tabPanel = this.formPanel.down();
        tabPanel.setActiveTab(0);
0cefcae2   Benjamin Renard   il reste click droit
329
330
331
332
333
334
335
336
    },

    /**
     * download method called by 'Download' button to launch the download process
     */
    doDownload: function (sendToSamp, clientId) {
        var downloadModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (downloadModule)
915d6711   Benjamin Renard   DownloadNode now ...
337
            downloadModule.linkedNode.execute({'sendToSamp': (sendToSamp == true), 'clientId': clientId});
0cefcae2   Benjamin Renard   il reste click droit
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
    },

    actionItem: function (grid, cell, cellIndex, record, row, recordIndex, e) {

        var isTimeTable = record instanceof amdaModel.TTobject;

        if (cellIndex == 3 || (cellIndex == 2 && isTimeTable))
            grid.getStore().remove(record);
        else if (cellIndex == 2) {
            this.paramGrid.getView().select(row);
            this.editParameterArgs(record);
        }
    },

    editParameterArgs: function (record) {
        var paramArgsPlug = this.getPlugin('download-param-arguments-plugin');
        if (paramArgsPlug)
            paramArgsPlug.show('download-param-arguments-plugin', record);
    },

    onApplyParameterArgs: function (parentUI, paramObject) {
        parentUI.paramGrid.getView().refresh();
    },

    onFileStructureChange: function (combo, newValue, oldValue) {
        if (!this.formPanel)
            return;

fb23b7fe   Benjamin Renard   Save 'used first ...
366
        var refParamCheck = this.formPanel.getForm().findField('refparamSampling');
0cefcae2   Benjamin Renard   il reste click droit
367
368
369
370
371
372
373
        var samplingField = this.formPanel.getForm().findField('sampling');

        if (samplingField && newValue !== oldValue) {
            refParamCheck.setDisabled(newValue == 2);
            samplingField.setDisabled((newValue == 2) || refParamCheck.getValue());
        }
    },
9827d468   Hacene SI HADJ MOHAND   us ok
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
    onTTFileFormatChange: function (combo, newValue, oldValue) {
         if (!this.formPanel)
            return;

        var refTimeFormatField = this.formPanel.getForm().findField('timeformatTT');

        if (refTimeFormatField && newValue !== oldValue) {
                       if (newValue === 'space' ){
                           refTimeFormatField.setValue('YYYY-MM-DDThh:mm:ss');
                           refTimeFormatField.setDisabled(true);
                       }else{
                           refTimeFormatField.setDisabled(false);
                       }
        }
    },
0cefcae2   Benjamin Renard   il reste click droit
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407

    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());
    },

    onSendVOTableToSamp: function (clientId, sendOpt) {
        var me = sendOpt.scope;
        if (me.updateObject()) {
            me.doDownload(true, clientId);
        }
    },

f569bae5   Benjamin Renard   Save download
408
    doNotifyDrop: function(record)
915d6711   Benjamin Renard   DownloadNode now ...
409
    {
f569bae5   Benjamin Renard   Save download
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
        if (record.get('nodeType') == 'localParam' && record.get('notyet'))
        {
            return false;
        }
        if (((record.get('nodeType') == 'localParam') ||
             (record.get('nodeType') == 'remoteParam') ||
             (record.get('nodeType') == 'remoteSimuParam') ||
             (record.get('nodeType') == 'derivedParam') ||
             (record.get('nodeType') == 'myDataParam') ||
             (record.get('nodeType') == 'alias')) &&
             (record.isLeaf() || record.get('isParameter')) &&
             !record.get('disable'))
        {
            return true;
        }

        return false;
    },

    doParamDrop: function(record)
    {
        var idToSent;
        var components = null;
        var predefinedArgs = record.get('predefinedArgs');
        switch (record.get('nodeType'))
        {
            case 'localParam' :
            case 'remoteParam':
            case 'remoteSimuParam':
                idToSent = record.get('id');
                if (record.get('alias') != "")
                    idToSent = "#" + record.get('alias');
                var component_info = record.get('component_info');
                if (component_info && component_info.parentId)
                {
                    if (component_info.index1 || component_info.index2)
                    {
                        idToSent = component_info.parentId;
                        components = [];
                        if (component_info.index1)
                            components['index1'] = component_info.index1;
                        if (component_info.index2)
                            components['index2'] = component_info.index2;
                        predefinedArgs = record.parentNode.get('predefinedArgs');
                    }
                    if (record.get('needsArgs'))
                    {
                        idToSent = component_info.parentId;
                        if (component_info.index1)
                        {
                            components = [];
                            components['index1'] = component_info.index1;
                        }
                    }
                }
                break;
            case 'alias' :
                idToSent = "#" + record.get('text');
                break;
            case 'derivedParam' :
                if (record.modelName == 'amdaModel.DerivedParamComponentNode')
                {
                    paramId = record.get('text');
                    var parentId = paramId.substr(0, paramId.length - 3);
                    idToSent = "ws_" + parentId;
                    var regExp = /\(([\d]+)\)/;
                    var component_index = regExp.exec(paramId);
                    if (component_index)
                    {
                        components = [];
                        components['index1'] = component_index[1];
                    }
                } 
                else {
                    idToSent = "ws_" + record.get('text');
                }
                break;
            case 'myDataParam' :
                if (record.modelName == 'amdaModel.MyDataParamComponentNode')
                {
                    paramId = record.get('text');
                    var parentId = paramId.substr(0, paramId.length - 3);
                    idToSent = "wsd_" + parentId;
                    var regExp = /\(([\d]+)\)/;
                    var component_index = regExp.exec(paramId);
                    if (component_index)
                    {
                        components = [];
                        components['index1'] = component_index[1];
                    }
                }
                else {
                    idToSent = "wsd_" + record.get('text');
                }
                break;
            default :
                return false;
        }

        var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (downModule) {
            if (predefinedArgs) {
                downModule.parseTemplatedParam(idToSent, function(param_info) {
                    downModule.addParam(param_info.paramid, record.get('leaf'), record.get('needsArgs'), components, param_info.template_args);
                });
            }
            else {
                downModule.addParam(idToSent, record.get('leaf'), record.get('needsArgs'), components);
                return true;
            }
        }
        return true;
915d6711   Benjamin Renard   DownloadNode now ...
522
523
    },

0cefcae2   Benjamin Renard   il reste click droit
524
525
526
527
528
    /**
     * Check if changes were made before closing window 
     * @return false
     */
    fclose: function () {
0e540b69   Benjamin Renard   Finalize save of ...
529
        return this.object.isDirty();
0cefcae2   Benjamin Renard   il reste click droit
530
531
532
533
534
535
536
    },

    init: function (config) {
        var me = this;

        this.timeSelector = new amdaUI.TimeSelectorUI({id: 'downloadTimeSelector', flex: 1});

f569bae5   Benjamin Renard   Save download
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
        this.fieldName = new Ext.form.field.Text({
            labelAlign: 'left',
            labelWidth: 90,
            fieldLabel: 'Request Name',
            name : 'name',
            allowBlank : false,
            stripCharsRe: /(^\s+|\s+$)/g,
            validateOnChange: false,
            validateOnBlur: false,
            validFlag: false,
            validator : function()
            {
                return this.validFlag;
            }
        });

        var downloadCont = this;
0cefcae2   Benjamin Renard   il reste click droit
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
        this.paramGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
            store: Ext.create('Ext.data.Store', {model: 'amdaModel.DownloadParam'}),
            columns: [
                {xtype: 'rownumberer', width: 20},
                {
                    header: "Parameter Name",
                    dataIndex: 'name',
                    flex: 1,
                    sortable: false,
                    menuDisabled: true,
                    renderer: function (val, meta, rec) {
                        return rec.getParamFullName();
                    }
                },
                {
                    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>';
                    }
                }
            ],
            //TODO - BRE - Wait the fix for drag&drop issue
            listeners:
                    {
                        render: function (o, op)
                        {
                            var me = this;
                            var el = me.body.dom;
915d6711   Benjamin Renard   DownloadNode now ...
587
                            me.dropTarget = Ext.create('Ext.dd.DropTarget', el, {
0cefcae2   Benjamin Renard   il reste click droit
588
589
590
591
                                ddGroup: 'explorerTree',
                                notifyEnter: function (ddSource, e, data) { },
                                notifyOver: function (ddSource, e, data)
                                {
f569bae5   Benjamin Renard   Save download
592
                                    if (!downloadCont.doNotifyDrop(data.records[0])) {
0cefcae2   Benjamin Renard   il reste click droit
593
594
595
                                        this.valid = false;
                                        return this.dropNotAllowed;
                                    }
f569bae5   Benjamin Renard   Save download
596
597
                                    this.valid = true;
                                    return this.dropAllowed;
0cefcae2   Benjamin Renard   il reste click droit
598
599
600
601
602
                                },
                                notifyDrop: function (ddSource, e, data)
                                {
                                    if (!this.valid)
                                        return false;
f569bae5   Benjamin Renard   Save download
603
                                    return downloadCont.doParamDrop(data.records[0]);
0cefcae2   Benjamin Renard   il reste click droit
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
                                }
                            });
                        }
                    }
        });

        this.paramGrid.on('cellclick', this.actionItem, this);

        this.TTGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
            store: Ext.create('Ext.data.Store', {model: 'amdaModel.TTobject'}),
            columns: [
                {xtype: 'rownumberer', width: 20},
                {header: "TimeTable/Catalog 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)
                                {
                                    var nodeType = data.records[0].get('nodeType');
0cefcae2   Benjamin Renard   il reste click droit
639
                                    if ((nodeType == 'timeTable' || nodeType == 'sharedtimeTable') ||
db2c0c60   Elena.Budnik   redmine 6884 shar...
640
                                            (nodeType == 'catalog' || nodeType == 'sharedcatalog') &&
0cefcae2   Benjamin Renard   il reste click droit
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
                                            (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;
                                }
                            });
                        }
                    }
        });

        this.TTGrid.on('cellclick', this.actionItem, this);

915febd3   Vincent Cephirins   RM7926 - Evol - C...
665
        var storeTimeFormat = new Ext.data.ArrayStore({
0cefcae2   Benjamin Renard   il reste click droit
666
            fields: ['id', 'name', 'qtip'],
0e540b69   Benjamin Renard   Finalize save of ...
667
            data: amdaModel.DownloadConfig.timeformatData
0cefcae2   Benjamin Renard   il reste click droit
668
        });
f6539f85   Benjamin Renard   Download - Fix sa...
669
        this.paramPanel = new Ext.container.Container({
0cefcae2   Benjamin Renard   il reste click droit
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
            title: 'Parameters',
            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: [
f6539f85   Benjamin Renard   Download - Fix sa...
685
                        this.fieldName,
0cefcae2   Benjamin Renard   il reste click droit
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
                        {
                            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',
                            valueField: 'id',
                            displayField: 'name',
                            queryMode: 'local',
915febd3   Vincent Cephirins   RM7926 - Evol - C...
713
                            store: storeTimeFormat,
0cefcae2   Benjamin Renard   il reste click droit
714
715
716
717
718
719
                            listConfig: {
                                tpl: [
                                    '<tpl for=".">',
                                    '<li class="x-boundlist-item" data-qtip="{qtip}">{name}</li>',
                                    '</tpl>'
                                ]
0e540b69   Benjamin Renard   Finalize save of ...
720
                            }
0cefcae2   Benjamin Renard   il reste click droit
721
722
723
724
                        },
                        {
                            fieldLabel: 'File Structure',
                            name: 'filestructure',
0e540b69   Benjamin Renard   Finalize save of ...
725
                            store: amdaModel.DownloadConfig.filestructureData,
0cefcae2   Benjamin Renard   il reste click droit
726
727
728
729
730
731
732
733
734
735
736
737
738
739
                            listeners: {
                                change: {fn: this.onFileStructureChange},
                                scope: this
                            }
                        },
                        {
                            xtype: 'checkbox', boxLabel: 'Header in a separate file',
                            boxLabelAlign: 'before',
                            name: 'separateInfoFile', checked: false

                        },
                        {
                            xtype: 'checkbox', boxLabel: 'Use first param. as reference for sampling',
                            boxLabelAlign: 'before',
fb23b7fe   Benjamin Renard   Save 'used first ...
740
                            name: 'refparamSampling', checked: false, disabled: true,
0cefcae2   Benjamin Renard   il reste click droit
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
                            listeners: {
                                change: {fn: this.onRefParamSamplingChange},
                                scope: this
                            }
                        },
                        {
                            xtype: 'numberfield', name: 'sampling',
                            fieldLabel: 'Sampling Time', value: 600,
                            hideTrigger: true, editable: true,
                            disabled: true
                        },
                        {
                            xtype: 'checkbox', boxLabel: 'Scientific floating-point formatting',
                            boxLabelAlign: 'before',
                            name: 'scientificformat', checked: false
                        },
                        {
                            xtype: 'textfield', name: 'fileprefix',
                            fieldLabel: 'File Prefix',
                            disabled: false, editable: true
                        },
                        {
                            fieldLabel: 'File Format',
                            name: 'fileformat',
0e540b69   Benjamin Renard   Finalize save of ...
765
                            store: amdaModel.DownloadConfig.fileformatData
0cefcae2   Benjamin Renard   il reste click droit
766
767
768
769
                        },
                        {
                            fieldLabel: 'Compression',
                            name: 'compression',
0e540b69   Benjamin Renard   Finalize save of ...
770
                            store: amdaModel.DownloadConfig.filecompressData
0cefcae2   Benjamin Renard   il reste click droit
771
                        },
0cefcae2   Benjamin Renard   il reste click droit
772
773
774
                        this.timeSelector
                    ]
                }
f6539f85   Benjamin Renard   Download - Fix sa...
775
            ]});
0cefcae2   Benjamin Renard   il reste click droit
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803

        this.ttPanel =
                {
                    xtype: 'container',
                    title: 'Time Tables / Catalogs',
                    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',
915febd3   Vincent Cephirins   RM7926 - Evol - C...
804
805
806
807
808
809
810
811
812
813
                                    valueField: 'id',
                                    store: storeTimeFormat,
                                    displayField: 'name',
                                    queryMode: 'local',
                                    listConfig: {
                                        tpl: [
                                            '<tpl for=".">',
                                            '<li class="x-boundlist-item" data-qtip="{qtip}">{name}</li>',
                                            '</tpl>'
                                        ]
0e540b69   Benjamin Renard   Finalize save of ...
814
                                    }
0cefcae2   Benjamin Renard   il reste click droit
815
816
817
818
                                },
                                {
                                    fieldLabel: 'File Format ',
                                    name: 'fileformatTT',
9827d468   Hacene SI HADJ MOHAND   us ok
819
820
821
822
823
                                    store: amdaModel.DownloadConfig.fileformatTTData,
                                    listeners: {
                                        change: {fn: this.onTTFileFormatChange},
                                            scope: this
                                   }
0cefcae2   Benjamin Renard   il reste click droit
824
825
826
827
                                },
                                {
                                    fieldLabel: 'Compression ',
                                    name: 'compressionTT',
0e540b69   Benjamin Renard   Finalize save of ...
828
                                    store: amdaModel.DownloadConfig.filecompressTTData
7b1c548d   Benjamin Renard   Add TT/catalog fo...
829
830
831
832
                                },
				{
                                    xtype: 'panel',
                                    html: ['<div>',
e206c6fe   Benjamin Renard   Fix typo
833
                                           '<p><b>=> Format specifications:</b></p>',
7b1c548d   Benjamin Renard   Add TT/catalog fo...
834
                                           '<ul>',
e206c6fe   Benjamin Renard   Fix typo
835
                                           '<li><b>Plain text:</b> ASCII tabular file. A comment line starts with "#"</li>',
7b1c548d   Benjamin Renard   Add TT/catalog fo...
836
                                           '<li><b>VOTable:</b> <a target="_blank" href="https://www.ivoa.net/documents/VOTable/20130315/PR-VOTable-1.3-20130315.html">Version 1.3</a></li>',
d6841607   Benjamin Renard   Update links to H...
837
                                           '<li><b>HPEvent:</b> <a target="_blank" href="https://spase-group.org/docs/conventions/HDMC-Event-List-Specification-v1.0.4.pdf">Version 1.0</a></li>',
7b1c548d   Benjamin Renard   Add TT/catalog fo...
838
839
                                           '</ul>',
                                           '</div>'].join("\n")
0cefcae2   Benjamin Renard   il reste click droit
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
                                }
                            ]}
                    ]
                };

        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
f6539f85   Benjamin Renard   Download - Fix sa...
861
862
863
864
865
866
867
868
869
870
                    ],
                    listeners: {
                        tabchange: function(tabPanel, newCard, oldCard, eOpts) {
                            var saveBtn = this.down('#save-download');
                            saveBtn.setDisabled(newCard != this.paramPanel);
                        },
                        scope: this
                    }
                    },
                   ],
0cefcae2   Benjamin Renard   il reste click droit
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
            fbar: [
                {
                    text: 'Download',
                    scope: this,
                    handler: function (button) {
                        // if the return is true (object had been updated)
                        if (this.updateObject()) {
                            // launch the download process 			        
                            this.doDownload();
                        }
                    }
                },
                {
                    text: 'Reset',
                    scope: this,
                    handler: function () {
0e540b69   Benjamin Renard   Finalize save of ...
887
888
889
890
891
                        var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
                        downModule.createLinkedNode();
                        var obj = null;
                        downModule.createObject(obj);
                        this.setObject(downModule.linkedNode.get('object'));
0cefcae2   Benjamin Renard   il reste click droit
892
893
                    }
                },
f569bae5   Benjamin Renard   Save download
894
895
                {
                    text: 'Save',
f6539f85   Benjamin Renard   Download - Fix sa...
896
                    id: 'save-download',
f569bae5   Benjamin Renard   Save download
897
898
899
900
901
                    scope: this,
                    handler: function () {
                        this.saveRequest();
                    }
                },
0cefcae2   Benjamin Renard   il reste click droit
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
                '->',
                {
                    xtype: 'sendToSampButton',
                    type: 'votable',
                    onSendToSamp: this.onSendVOTableToSamp,
                    sendOpt: {scope: this}
                }]
        });

        var myConf = {
            layout: 'border',
            items: [
                this.formPanel,
                {
                    xtype: 'panel',
                    region: 'south',
                    title: 'Information',
                    collapsible: true,
                    collapseMode: 'header',
                    height: 100,
                    autoHide: false,
                    bodyStyle: 'padding:5px',
                    iconCls: 'icon-information',
                    loader: {
                        autoLoad: true,
                        url: helpDir + 'downloadHOWTO'
                    }
                }
            ],
            plugins: [{ptype: 'paramArgumentsPlugin', pluginId: 'download-param-arguments-plugin'}]
        };

        Ext.apply(this, Ext.apply(arguments, myConf));
    }
16035364   Benjamin Renard   First commit
936
});