Blame view

js/app/views/DownloadUI.js 35 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',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
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;
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
36
    saveRequest: function () {
f569bae5   Benjamin Renard   Save download
37
38
39
40
41
42
43
44
45
46
47
        var me = this;

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

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

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

f569bae5   Benjamin Renard   Save download
53
        downloadModule.linkedNode.isValidName(this.fieldName.getValue(), function (res) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
54
            if (!res) {
f569bae5   Benjamin Renard   Save download
55
56
57
58
59
60
                me.fieldName.validFlag = 'Error during object validation';
                myDesktopApp.errorMsg(me.fieldName.validFlag);
                me.fieldName.validate();
                return;
            }

3ec6bc73   Erdogan Furkan   8950 - Positionne...
61
62
            if (!res.valid) {
                if (res.error) {
f569bae5   Benjamin Renard   Save download
63
                    if (res.error.search('subtree') != -1) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
64
65
66
                        Ext.MessageBox.show({
                            title: 'Warning',
                            msg: res.error + '<br/>Do you want to overwrite it?',
f569bae5   Benjamin Renard   Save download
67
68
                            width: 300,
                            buttons: Ext.MessageBox.OKCANCEL,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
69
                            fn: function (btn) {
f6539f85   Benjamin Renard   Download - Fix sa...
70
71
72
73
                                if (btn == 'cancel') return;
                                this.fieldName.clearInvalid();
                                this.saveProcess(true);
                            },
f569bae5   Benjamin Renard   Save download
74
                            icon: Ext.MessageBox.WARNING,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
75
                            scope: me
f569bae5   Benjamin Renard   Save download
76
77
78
79
80
81
                        });
                        me.fieldName.validFlag = true;
                    }
                    else
                        me.fieldName.validFlag = res.error;
                }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
82
                else {
f569bae5   Benjamin Renard   Save download
83
84
85
86
87
88
89
90
91
92
93
94
95
                    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);
        });
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
96
    saveProcess: function (toRename) {
0e540b69   Benjamin Renard   Finalize save of ...
97
98
        var downloadModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (this.object.isModified('name')) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
99
            if (this.object.get('id')) {
0e540b69   Benjamin Renard   Finalize save of ...
100
101
                var contextNode = downloadModule.linkedNode.parentNode;
                downloadModule.createLinkedNode();
3ec6bc73   Erdogan Furkan   8950 - Positionne...
102
                downloadModule.linkedNode.set('contextNode', contextNode);
0e540b69   Benjamin Renard   Finalize save of ...
103
104
105
106
                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
107
            }
0e540b69   Benjamin Renard   Finalize save of ...
108
109
110
            downloadModule.linkedNode.create();
        }
        else {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
111
            downloadModule.linkedNode.set('contextNode', downloadModule.contextNode);
0e540b69   Benjamin Renard   Finalize save of ...
112
            downloadModule.linkedNode.update();
f569bae5   Benjamin Renard   Save download
113
114
115
        }
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
116
    addTT: function (newTTName, newTTid) {
0cefcae2   Benjamin Renard   il reste click droit
117
118
119
120
121
122
123
124
125
126
127
        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 
3ec6bc73   Erdogan Furkan   8950 - Positionne...
128
                var r = Ext.create('amdaModel.TTobject', { id: newTTid, name: newTTName });
0cefcae2   Benjamin Renard   il reste click droit
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
                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, '\/'));

3ec6bc73   Erdogan Furkan   8950 - Positionne...
156
        this.down('form').getForm().setValues({ startDate: dateStart, stopDate: dateStop });
0cefcae2   Benjamin Renard   il reste click droit
157
158
159
        this.timeSelector.intervalSel.updateDuration();
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
160
    addParameter: function (paramNode, updateTime) {
f569bae5   Benjamin Renard   Save download
161
162
163
164
        if (this.doNotifyDrop(paramNode)) {
            return this.doParamDrop(paramNode);
        }
        return false;
915d6711   Benjamin Renard   DownloadNode now ...
165
166
    },

7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
167
    addParam: function (paramId, isLeaf, needArgs, components, predefined_args, info) {
0cefcae2   Benjamin Renard   il reste click droit
168
        // adding the parameter to the  paramGrid	
29dfb596   Benjamin Renard   Rework of ParamAr...
169
170
        var paramObj = amdaModel.RequestParamObject.getEmptyObj();
        paramObj.paramid = paramId;
0cefcae2   Benjamin Renard   il reste click droit
171
172
173
174
175
176
177
178
179
180
181
182
183

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

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

3ec6bc73   Erdogan Furkan   8950 - Positionne...
184
185
186
        if (predefined_args) {
            paramObj.template_args = predefined_args;
        }
7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
187
188
189
190
        
        if(info){
            paramObj.qtip= info;
        }
2fa56f95   Benjamin Renard   Predefined templa...
191

0cefcae2   Benjamin Renard   il reste click droit
192
193
194
195
196
197
198
199
200
        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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
    // 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
     */
3ec6bc73   Erdogan Furkan   8950 - Positionne...
218
    updateObject: function () {
0cefcae2   Benjamin Renard   il reste click droit
219
220
221
222
223
224
225
226
        // 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
3ec6bc73   Erdogan Furkan   8950 - Positionne...
227
        if (downloadSrc === 0) {
0cefcae2   Benjamin Renard   il reste click droit
228
229
            var timeformat = values.timeformat;
            var timeSource = this.timeSelector.getActiveTimeSource();
0e540b69   Benjamin Renard   Finalize save of ...
230
            var filestructure = values.filestructure;
0cefcae2   Benjamin Renard   il reste click droit
231
            var sampling = values.sampling ? values.sampling : 600;
fb23b7fe   Benjamin Renard   Save 'used first ...
232
            var refparamSampling = values.refparamSampling == 'on';
0cefcae2   Benjamin Renard   il reste click droit
233
234
235
236
237
238
            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
239
                if ((item.name != 'name') && !item.isValid()) {
0cefcae2   Benjamin Renard   il reste click droit
240
                    if ((timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0]) &&
3ec6bc73   Erdogan Furkan   8950 - Positionne...
241
                        ((item.name == 'startDate') || (item.name == 'stopDate') || (item.name == 'duration'))) {
0cefcae2   Benjamin Renard   il reste click droit
242
243
244
245
246
247
248
249
250
251
                        updateStatus = true;
                    } else {
                        // set update isn't allowed
                        updateStatus = false;
                        return false;
                    }
                }
            }, this);

            if (timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0] // timeSource  'TimeTable'
3ec6bc73   Erdogan Furkan   8950 - Positionne...
252
                && this.timeSelector.TTGrid.getStore().count() == 0) {
0cefcae2   Benjamin Renard   il reste click droit
253
                myDesktopApp.warningMsg('You\'ve chosen Time Selection `by TimeTable` but no timeTable was added!'
3ec6bc73   Erdogan Furkan   8950 - Positionne...
254
                    + '<br>You must add one or choose Time Selection `by Interval`');
0cefcae2   Benjamin Renard   il reste click droit
255
256
257
                updateStatus = false;
            }

3ec6bc73   Erdogan Furkan   8950 - Positionne...
258
            if (updateStatus && (this.object.params().count() == 0)) {
0e540b69   Benjamin Renard   Finalize save of ...
259
260
261
262
                myDesktopApp.warningMsg('You must define at least one parameter to download');
                updateStatus = false;
            }

3ec6bc73   Erdogan Furkan   8950 - Positionne...
263
            if (updateStatus) {
0cefcae2   Benjamin Renard   il reste click droit
264
265
266
                /// real object update
                // update TimeTable object with the content of form
                basicForm.updateRecord(this.object);
0e540b69   Benjamin Renard   Finalize save of ...
267

0cefcae2   Benjamin Renard   il reste click droit
268
269
270
271
                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 ...
272
                this.object.set('filestructure', filestructure);
0cefcae2   Benjamin Renard   il reste click droit
273
274
275
276
277
278
279
280
281
                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
3ec6bc73   Erdogan Furkan   8950 - Positionne...
282
283
        else {
            var timeformat = values.timeformatTT ? values.timeformatTT : amdaModel.DownloadConfig.defaultValues.timeformatTT;
0cefcae2   Benjamin Renard   il reste click droit
284
285
            var compression = values.compressionTT;
            var fileformat = values.fileformatTT;
0e540b69   Benjamin Renard   Finalize save of ...
286
287
288
289
290
            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'
3ec6bc73   Erdogan Furkan   8950 - Positionne...
291
                && this.TTGrid.getStore().count() > 1) {
0cefcae2   Benjamin Renard   il reste click droit
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
                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
310
311
312
313
        // 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 ...
314
315
316
        // set parameters
        this.paramGrid.reconfigure(this.object.params());
        //this.paramGrid.getStore().loadData(this.object.params().data.items);
3ec6bc73   Erdogan Furkan   8950 - Positionne...
317
318
        // select "Parameters" tab
        var tabPanel = this.formPanel.down();
0e540b69   Benjamin Renard   Finalize save of ...
319
        tabPanel.setActiveTab(0);
0cefcae2   Benjamin Renard   il reste click droit
320
321
322
323
324
325
326
327
    },

    /**
     * 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)
3ec6bc73   Erdogan Furkan   8950 - Positionne...
328
            downloadModule.linkedNode.execute({ 'sendToSamp': (sendToSamp == true), 'clientId': clientId });
0cefcae2   Benjamin Renard   il reste click droit
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
    },

    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 ...
357
        var refParamCheck = this.formPanel.getForm().findField('refparamSampling');
0cefcae2   Benjamin Renard   il reste click droit
358
359
360
361
362
363
364
        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
365
    onTTFileFormatChange: function (combo, newValue, oldValue) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
366
        if (!this.formPanel)
9827d468   Hacene SI HADJ MOHAND   us ok
367
368
369
370
371
            return;

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

        if (refTimeFormatField && newValue !== oldValue) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
372
373
374
375
376
377
            if (newValue === 'space') {
                refTimeFormatField.setValue('YYYY-MM-DDThh:mm:ss');
                refTimeFormatField.setDisabled(true);
            } else {
                refTimeFormatField.setDisabled(false);
            }
9827d468   Hacene SI HADJ MOHAND   us ok
378
379
        }
    },
0cefcae2   Benjamin Renard   il reste click droit
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398

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

3ec6bc73   Erdogan Furkan   8950 - Positionne...
399
400
    doNotifyDrop: function (record) {
        if (record.get('nodeType') == 'localParam' && record.get('notyet')) {
f569bae5   Benjamin Renard   Save download
401
402
403
            return false;
        }
        if (((record.get('nodeType') == 'localParam') ||
3ec6bc73   Erdogan Furkan   8950 - Positionne...
404
405
406
            (record.get('nodeType') == 'remoteParam') ||
            (record.get('nodeType') == 'remoteSimuParam') ||
            (record.get('nodeType') == 'derivedParam') ||
b0f72ee0   Erdogan Furkan   #10557 For now
407
            (record.get('nodeType') == 'specialParam') ||
3ec6bc73   Erdogan Furkan   8950 - Positionne...
408
409
410
411
            (record.get('nodeType') == 'myDataParam') ||
            (record.get('nodeType') == 'alias')) &&
            (record.isLeaf() || record.get('isParameter')) &&
            !record.get('disable')) {
f569bae5   Benjamin Renard   Save download
412
413
414
415
416
417
            return true;
        }

        return false;
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
418
    doParamDrop: function (record) {
f569bae5   Benjamin Renard   Save download
419
420
421
        var idToSent;
        var components = null;
        var predefinedArgs = record.get('predefinedArgs');
7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
422
423
        var info = record.get('info');

3ec6bc73   Erdogan Furkan   8950 - Positionne...
424
425
        switch (record.get('nodeType')) {
            case 'localParam':
f569bae5   Benjamin Renard   Save download
426
427
428
429
430
431
            case 'remoteParam':
            case 'remoteSimuParam':
                idToSent = record.get('id');
                if (record.get('alias') != "")
                    idToSent = "#" + record.get('alias');
                var component_info = record.get('component_info');
3ec6bc73   Erdogan Furkan   8950 - Positionne...
432
433
                if (component_info && component_info.parentId) {
                    if (component_info.index1 || component_info.index2) {
f569bae5   Benjamin Renard   Save download
434
435
436
437
438
439
440
441
                        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');
                    }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
442
                    if (record.get('needsArgs')) {
f569bae5   Benjamin Renard   Save download
443
                        idToSent = component_info.parentId;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
444
                        if (component_info.index1) {
f569bae5   Benjamin Renard   Save download
445
446
447
448
449
450
                            components = [];
                            components['index1'] = component_info.index1;
                        }
                    }
                }
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
451
            case 'alias':
f569bae5   Benjamin Renard   Save download
452
453
                idToSent = "#" + record.get('text');
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
454
455
            case 'derivedParam':
                if (record.modelName == 'amdaModel.DerivedParamComponentNode') {
f569bae5   Benjamin Renard   Save download
456
457
458
459
460
                    paramId = record.get('text');
                    var parentId = paramId.substr(0, paramId.length - 3);
                    idToSent = "ws_" + parentId;
                    var regExp = /\(([\d]+)\)/;
                    var component_index = regExp.exec(paramId);
3ec6bc73   Erdogan Furkan   8950 - Positionne...
461
                    if (component_index) {
f569bae5   Benjamin Renard   Save download
462
463
464
                        components = [];
                        components['index1'] = component_index[1];
                    }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
465
                }
f569bae5   Benjamin Renard   Save download
466
467
468
469
                else {
                    idToSent = "ws_" + record.get('text');
                }
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
470
471
            case 'myDataParam':
                if (record.modelName == 'amdaModel.MyDataParamComponentNode') {
f569bae5   Benjamin Renard   Save download
472
473
474
475
476
                    paramId = record.get('text');
                    var parentId = paramId.substr(0, paramId.length - 3);
                    idToSent = "wsd_" + parentId;
                    var regExp = /\(([\d]+)\)/;
                    var component_index = regExp.exec(paramId);
3ec6bc73   Erdogan Furkan   8950 - Positionne...
477
                    if (component_index) {
f569bae5   Benjamin Renard   Save download
478
479
480
481
482
483
484
485
                        components = [];
                        components['index1'] = component_index[1];
                    }
                }
                else {
                    idToSent = "wsd_" + record.get('text');
                }
                break;
b0f72ee0   Erdogan Furkan   #10557 For now
486
487
488
            case 'specialParam':
                idToSent=record.get('id');
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
489
            default:
f569bae5   Benjamin Renard   Save download
490
491
492
493
494
495
                return false;
        }

        var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (downModule) {
            if (predefinedArgs) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
496
                downModule.parseTemplatedParam(idToSent, function (param_info) {
7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
497
                    downModule.addParam(param_info.paramid, record.get('leaf'), record.get('needsArgs'), components, param_info.template_args, info);
f569bae5   Benjamin Renard   Save download
498
499
500
                });
            }
            else {
7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
501
                downModule.addParam(idToSent, record.get('leaf'), record.get('needsArgs'), components, null,info);
f569bae5   Benjamin Renard   Save download
502
503
504
505
                return true;
            }
        }
        return true;
915d6711   Benjamin Renard   DownloadNode now ...
506
507
    },

0cefcae2   Benjamin Renard   il reste click droit
508
509
510
511
512
    /**
     * Check if changes were made before closing window 
     * @return false
     */
    fclose: function () {
0e540b69   Benjamin Renard   Finalize save of ...
513
        return this.object.isDirty();
0cefcae2   Benjamin Renard   il reste click droit
514
515
516
517
518
    },

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

3ec6bc73   Erdogan Furkan   8950 - Positionne...
519
        this.timeSelector = new amdaUI.TimeSelectorUI({ id: 'downloadTimeSelector', flex: 1 });
0cefcae2   Benjamin Renard   il reste click droit
520

f569bae5   Benjamin Renard   Save download
521
522
523
524
        this.fieldName = new Ext.form.field.Text({
            labelAlign: 'left',
            labelWidth: 90,
            fieldLabel: 'Request Name',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
525
526
            name: 'name',
            allowBlank: false,
f569bae5   Benjamin Renard   Save download
527
528
529
530
            stripCharsRe: /(^\s+|\s+$)/g,
            validateOnChange: false,
            validateOnBlur: false,
            validFlag: false,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
531
            validator: function () {
f569bae5   Benjamin Renard   Save download
532
533
534
535
536
                return this.validFlag;
            }
        });

        var downloadCont = this;
0cefcae2   Benjamin Renard   il reste click droit
537
538
        this.paramGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
539
            store: Ext.create('Ext.data.Store', { model: 'amdaModel.DownloadParam' }),
0cefcae2   Benjamin Renard   il reste click droit
540
            columns: [
3ec6bc73   Erdogan Furkan   8950 - Positionne...
541
                { xtype: 'rownumberer', width: 20 },
0cefcae2   Benjamin Renard   il reste click droit
542
543
544
545
546
547
548
                {
                    header: "Parameter Name",
                    dataIndex: 'name',
                    flex: 1,
                    sortable: false,
                    menuDisabled: true,
                    renderer: function (val, meta, rec) {
7f23e0f7   Erdogan Furkan   #5119 -Done. Adde...
549
                        meta.tdAttr = 'data-qtip="' + rec.data.qtip + '"';
0cefcae2   Benjamin Renard   il reste click droit
550
551
552
553
554
                        return rec.getParamFullName();
                    }
                },
                {
                    menuDisabled: true, width: 30, renderer: function () {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
555
                        return '<div class="icon-parameters" style="width: 15px; height: 15px;"></div>';
0cefcae2   Benjamin Renard   il reste click droit
556
557
558
559
                    }
                },
                {
                    menuDisabled: true, width: 30, renderer: function () {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
560
                        return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
0cefcae2   Benjamin Renard   il reste click droit
561
562
563
564
565
                    }
                }
            ],
            //TODO - BRE - Wait the fix for drag&drop issue
            listeners:
3ec6bc73   Erdogan Furkan   8950 - Positionne...
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
            {
                render: function (o, op) {
                    var me = this;
                    var el = me.body.dom;
                    me.dropTarget = Ext.create('Ext.dd.DropTarget', el, {
                        ddGroup: 'explorerTree',
                        notifyEnter: function (ddSource, e, data) { },
                        notifyOver: function (ddSource, e, data) {
                            if (!downloadCont.doNotifyDrop(data.records[0])) {
                                this.valid = false;
                                return this.dropNotAllowed;
                            }
                            this.valid = true;
                            return this.dropAllowed;
                        },
                        notifyDrop: function (ddSource, e, data) {
                            if (!this.valid)
                                return false;
                            return downloadCont.doParamDrop(data.records[0]);
0cefcae2   Benjamin Renard   il reste click droit
585
                        }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
586
587
588
                    });
                }
            }
0cefcae2   Benjamin Renard   il reste click droit
589
590
591
592
593
594
        });

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

        this.TTGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
595
            store: Ext.create('Ext.data.Store', { model: 'amdaModel.TTobject' }),
0cefcae2   Benjamin Renard   il reste click droit
596
            columns: [
3ec6bc73   Erdogan Furkan   8950 - Positionne...
597
598
                { xtype: 'rownumberer', width: 20 },
                { header: "TimeTable/Catalog Name", dataIndex: 'name', flex: 1, sortable: false, menuDisabled: true },
0cefcae2   Benjamin Renard   il reste click droit
599
600
601
602
603
604
605
                {
                    menuDisabled: true, width: 30, renderer: function () {
                        return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
                    }
                }
            ],
            listeners:
3ec6bc73   Erdogan Furkan   8950 - Positionne...
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
            {
                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');
                            if ((nodeType == 'timeTable' || nodeType == 'sharedtimeTable') ||
                                (nodeType == 'catalog' || nodeType == 'sharedcatalog') &&
                                (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;
0cefcae2   Benjamin Renard   il reste click droit
633
                        }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
634
635
636
                    });
                }
            }
0cefcae2   Benjamin Renard   il reste click droit
637
638
639
640
        });

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

915febd3   Vincent Cephirins   RM7926 - Evol - C...
641
        var storeTimeFormat = new Ext.data.ArrayStore({
0cefcae2   Benjamin Renard   il reste click droit
642
            fields: ['id', 'name', 'qtip'],
0e540b69   Benjamin Renard   Finalize save of ...
643
            data: amdaModel.DownloadConfig.timeformatData
0cefcae2   Benjamin Renard   il reste click droit
644
        });
f6539f85   Benjamin Renard   Download - Fix sa...
645
        this.paramPanel = new Ext.container.Container({
0cefcae2   Benjamin Renard   il reste click droit
646
647
648
649
            title: 'Parameters',
            layout: {
                type: 'hbox',
                align: 'stretch',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
650
                defaultMargins: { top: 10, left: 10, bottom: 5, right: 10 }
0cefcae2   Benjamin Renard   il reste click droit
651
652
653
654
655
656
657
658
659
660
            },
            items: [
                {
                    xtype: 'container',
                    flex: 2,
                    layout: {
                        type: 'vbox',
                        align: 'stretch'
                    },
                    items: [
f6539f85   Benjamin Renard   Download - Fix sa...
661
                        this.fieldName,
0cefcae2   Benjamin Renard   il reste click droit
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
                        {
                            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...
689
                            store: storeTimeFormat,
0cefcae2   Benjamin Renard   il reste click droit
690
691
692
693
694
695
                            listConfig: {
                                tpl: [
                                    '<tpl for=".">',
                                    '<li class="x-boundlist-item" data-qtip="{qtip}">{name}</li>',
                                    '</tpl>'
                                ]
0e540b69   Benjamin Renard   Finalize save of ...
696
                            }
0cefcae2   Benjamin Renard   il reste click droit
697
698
699
700
                        },
                        {
                            fieldLabel: 'File Structure',
                            name: 'filestructure',
0e540b69   Benjamin Renard   Finalize save of ...
701
                            store: amdaModel.DownloadConfig.filestructureData,
0cefcae2   Benjamin Renard   il reste click droit
702
                            listeners: {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
703
                                change: { fn: this.onFileStructureChange },
0cefcae2   Benjamin Renard   il reste click droit
704
705
706
707
708
709
710
711
712
713
                                scope: this
                            }
                        },
                        {
                            xtype: 'checkbox', boxLabel: 'Header in a separate file',
                            boxLabelAlign: 'before',
                            name: 'separateInfoFile', checked: false

                        },
                        {
76447670   Benjamin Renard   Minor fixes
714
                            xtype: 'checkbox', boxLabel: 'Sampling: use first parameter as reference',
0cefcae2   Benjamin Renard   il reste click droit
715
                            boxLabelAlign: 'before',
fb23b7fe   Benjamin Renard   Save 'used first ...
716
                            name: 'refparamSampling', checked: false, disabled: true,
0cefcae2   Benjamin Renard   il reste click droit
717
                            listeners: {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
718
                                change: { fn: this.onRefParamSamplingChange },
0cefcae2   Benjamin Renard   il reste click droit
719
720
721
722
723
                                scope: this
                            }
                        },
                        {
                            xtype: 'numberfield', name: 'sampling',
76447670   Benjamin Renard   Minor fixes
724
                            fieldLabel: 'Sampling (s.)', value: 600,
0cefcae2   Benjamin Renard   il reste click droit
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
                            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 ...
741
                            store: amdaModel.DownloadConfig.fileformatData
0cefcae2   Benjamin Renard   il reste click droit
742
743
744
745
                        },
                        {
                            fieldLabel: 'Compression',
                            name: 'compression',
0e540b69   Benjamin Renard   Finalize save of ...
746
                            store: amdaModel.DownloadConfig.filecompressData
0cefcae2   Benjamin Renard   il reste click droit
747
                        },
0cefcae2   Benjamin Renard   il reste click droit
748
749
750
                        this.timeSelector
                    ]
                }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
751
752
            ]
        });
0cefcae2   Benjamin Renard   il reste click droit
753
754

        this.ttPanel =
3ec6bc73   Erdogan Furkan   8950 - Positionne...
755
756
757
758
759
760
761
762
763
764
        {
            xtype: 'container',
            title: 'Time Tables / Catalogs',
            layout: {
                type: 'hbox',
                align: 'stretch',
                defaultMargins: { top: 10, left: 10, bottom: 5, right: 10 }
            },
            items: [
                this.TTGrid,
0cefcae2   Benjamin Renard   il reste click droit
765
766
                {
                    xtype: 'container',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
767
768
769
770
771
772
773
                    flex: 2,
                    defaults: {
                        xtype: 'combo',
                        labelWidth: 90,
                        queryMode: 'local',
                        editable: false
                    },
0cefcae2   Benjamin Renard   il reste click droit
774
                    layout: {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
775
776
                        type: 'vbox',
                        align: 'stretch'
0cefcae2   Benjamin Renard   il reste click droit
777
                    },
3ec6bc73   Erdogan Furkan   8950 - Positionne...
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
804
805
806
807
808
809
810
811
812
813
814
815
816
817
                    items: [{
                        fieldLabel: 'Time Format',
                        name: 'timeformatTT',
                        valueField: 'id',
                        store: storeTimeFormat,
                        displayField: 'name',
                        queryMode: 'local',
                        listConfig: {
                            tpl: [
                                '<tpl for=".">',
                                '<li class="x-boundlist-item" data-qtip="{qtip}">{name}</li>',
                                '</tpl>'
                            ]
                        }
                    },
                    {
                        fieldLabel: 'File Format ',
                        name: 'fileformatTT',
                        store: amdaModel.DownloadConfig.fileformatTTData,
                        listeners: {
                            change: { fn: this.onTTFileFormatChange },
                            scope: this
                        }
                    },
                    {
                        fieldLabel: 'Compression ',
                        name: 'compressionTT',
                        store: amdaModel.DownloadConfig.filecompressTTData
                    },
                    {
                        xtype: 'panel',
                        html: ['<div>',
                            '<p><b>=> Format specifications:</b></p>',
                            '<ul>',
                            '<li><b>Plain text:</b> ASCII tabular file. A comment line starts with "#"</li>',
                            '<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>',
                            '<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>',
                            '</ul>',
                            '</div>'].join("\n")
                    }
0cefcae2   Benjamin Renard   il reste click droit
818
                    ]
3ec6bc73   Erdogan Furkan   8950 - Positionne...
819
820
821
                }
            ]
        };
0cefcae2   Benjamin Renard   il reste click droit
822
823
824
825

        this.formPanel = new Ext.form.Panel({
            layout: 'fit',
            region: 'center',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
826
            bodyStyle: { background: '#dfe8f6' },
0cefcae2   Benjamin Renard   il reste click droit
827
828
829
830
831
832
            buttonAlign: 'left',
            trackResetOnLoad: true, //reset to the last loaded record
            defaults: {
                border: false
            },
            items: [{
3ec6bc73   Erdogan Furkan   8950 - Positionne...
833
834
835
836
837
838
839
840
841
842
843
                xtype: 'tabpanel',
                activeTab: 0,
                bodyStyle: { background: '#dfe8f6' },
                items: [
                    this.paramPanel,
                    this.ttPanel
                ],
                listeners: {
                    tabchange: function (tabPanel, newCard, oldCard, eOpts) {
                        var saveBtn = this.down('#save-download');
                        saveBtn.setDisabled(newCard != this.paramPanel);
f6539f85   Benjamin Renard   Download - Fix sa...
844
                    },
3ec6bc73   Erdogan Furkan   8950 - Positionne...
845
846
847
848
                    scope: this
                }
            },
            ],
0cefcae2   Benjamin Renard   il reste click droit
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
            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 ...
865
866
867
868
869
                        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
870
871
                    }
                },
f569bae5   Benjamin Renard   Save download
872
873
                {
                    text: 'Save',
f6539f85   Benjamin Renard   Download - Fix sa...
874
                    id: 'save-download',
f569bae5   Benjamin Renard   Save download
875
876
877
878
879
                    scope: this,
                    handler: function () {
                        this.saveRequest();
                    }
                },
0cefcae2   Benjamin Renard   il reste click droit
880
881
882
883
884
                '->',
                {
                    xtype: 'sendToSampButton',
                    type: 'votable',
                    onSendToSamp: this.onSendVOTableToSamp,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
885
                    sendOpt: { scope: this }
0cefcae2   Benjamin Renard   il reste click droit
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
                }]
        });

        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'
                    }
                }
            ],
3ec6bc73   Erdogan Furkan   8950 - Positionne...
909
            plugins: [{ ptype: 'paramArgumentsPlugin', pluginId: 'download-param-arguments-plugin' }]
0cefcae2   Benjamin Renard   il reste click droit
910
911
912
913
        };

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