Blame view

js/app/views/DownloadUI.js 34.6 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
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
167
    addParam: function (paramId, isLeaf, needArgs, components, predefined_args) {
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;
        }
2fa56f95   Benjamin Renard   Predefined templa...
187

0cefcae2   Benjamin Renard   il reste click droit
188
189
190
191
192
193
194
195
196
        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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
    // 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...
214
    updateObject: function () {
0cefcae2   Benjamin Renard   il reste click droit
215
216
217
218
219
220
221
222
        // 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...
223
        if (downloadSrc === 0) {
0cefcae2   Benjamin Renard   il reste click droit
224
225
            var timeformat = values.timeformat;
            var timeSource = this.timeSelector.getActiveTimeSource();
0e540b69   Benjamin Renard   Finalize save of ...
226
            var filestructure = values.filestructure;
0cefcae2   Benjamin Renard   il reste click droit
227
            var sampling = values.sampling ? values.sampling : 600;
fb23b7fe   Benjamin Renard   Save 'used first ...
228
            var refparamSampling = values.refparamSampling == 'on';
0cefcae2   Benjamin Renard   il reste click droit
229
230
231
232
233
234
            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
235
                if ((item.name != 'name') && !item.isValid()) {
0cefcae2   Benjamin Renard   il reste click droit
236
                    if ((timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0]) &&
3ec6bc73   Erdogan Furkan   8950 - Positionne...
237
                        ((item.name == 'startDate') || (item.name == 'stopDate') || (item.name == 'duration'))) {
0cefcae2   Benjamin Renard   il reste click droit
238
239
240
241
242
243
244
245
246
247
                        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...
248
                && this.timeSelector.TTGrid.getStore().count() == 0) {
0cefcae2   Benjamin Renard   il reste click droit
249
                myDesktopApp.warningMsg('You\'ve chosen Time Selection `by TimeTable` but no timeTable was added!'
3ec6bc73   Erdogan Furkan   8950 - Positionne...
250
                    + '<br>You must add one or choose Time Selection `by Interval`');
0cefcae2   Benjamin Renard   il reste click droit
251
252
253
                updateStatus = false;
            }

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

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

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

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

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

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

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

    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...
395
396
    doNotifyDrop: function (record) {
        if (record.get('nodeType') == 'localParam' && record.get('notyet')) {
f569bae5   Benjamin Renard   Save download
397
398
399
            return false;
        }
        if (((record.get('nodeType') == 'localParam') ||
3ec6bc73   Erdogan Furkan   8950 - Positionne...
400
401
402
403
404
405
406
            (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')) {
f569bae5   Benjamin Renard   Save download
407
408
409
410
411
412
            return true;
        }

        return false;
    },

3ec6bc73   Erdogan Furkan   8950 - Positionne...
413
    doParamDrop: function (record) {
f569bae5   Benjamin Renard   Save download
414
415
416
        var idToSent;
        var components = null;
        var predefinedArgs = record.get('predefinedArgs');
3ec6bc73   Erdogan Furkan   8950 - Positionne...
417
418
        switch (record.get('nodeType')) {
            case 'localParam':
f569bae5   Benjamin Renard   Save download
419
420
421
422
423
424
            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...
425
426
                if (component_info && component_info.parentId) {
                    if (component_info.index1 || component_info.index2) {
f569bae5   Benjamin Renard   Save download
427
428
429
430
431
432
433
434
                        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...
435
                    if (record.get('needsArgs')) {
f569bae5   Benjamin Renard   Save download
436
                        idToSent = component_info.parentId;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
437
                        if (component_info.index1) {
f569bae5   Benjamin Renard   Save download
438
439
440
441
442
443
                            components = [];
                            components['index1'] = component_info.index1;
                        }
                    }
                }
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
444
            case 'alias':
f569bae5   Benjamin Renard   Save download
445
446
                idToSent = "#" + record.get('text');
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
447
448
            case 'derivedParam':
                if (record.modelName == 'amdaModel.DerivedParamComponentNode') {
f569bae5   Benjamin Renard   Save download
449
450
451
452
453
                    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...
454
                    if (component_index) {
f569bae5   Benjamin Renard   Save download
455
456
457
                        components = [];
                        components['index1'] = component_index[1];
                    }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
458
                }
f569bae5   Benjamin Renard   Save download
459
460
461
462
                else {
                    idToSent = "ws_" + record.get('text');
                }
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
463
464
            case 'myDataParam':
                if (record.modelName == 'amdaModel.MyDataParamComponentNode') {
f569bae5   Benjamin Renard   Save download
465
466
467
468
469
                    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...
470
                    if (component_index) {
f569bae5   Benjamin Renard   Save download
471
472
473
474
475
476
477
478
                        components = [];
                        components['index1'] = component_index[1];
                    }
                }
                else {
                    idToSent = "wsd_" + record.get('text');
                }
                break;
3ec6bc73   Erdogan Furkan   8950 - Positionne...
479
            default:
f569bae5   Benjamin Renard   Save download
480
481
482
483
484
485
                return false;
        }

        var downModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.download.id);
        if (downModule) {
            if (predefinedArgs) {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
486
                downModule.parseTemplatedParam(idToSent, function (param_info) {
f569bae5   Benjamin Renard   Save download
487
488
489
490
491
492
493
494
495
                    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 ...
496
497
    },

0cefcae2   Benjamin Renard   il reste click droit
498
499
500
501
502
    /**
     * Check if changes were made before closing window 
     * @return false
     */
    fclose: function () {
0e540b69   Benjamin Renard   Finalize save of ...
503
        return this.object.isDirty();
0cefcae2   Benjamin Renard   il reste click droit
504
505
506
507
508
    },

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

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

f569bae5   Benjamin Renard   Save download
511
512
513
514
        this.fieldName = new Ext.form.field.Text({
            labelAlign: 'left',
            labelWidth: 90,
            fieldLabel: 'Request Name',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
515
516
            name: 'name',
            allowBlank: false,
f569bae5   Benjamin Renard   Save download
517
518
519
520
            stripCharsRe: /(^\s+|\s+$)/g,
            validateOnChange: false,
            validateOnBlur: false,
            validFlag: false,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
521
            validator: function () {
f569bae5   Benjamin Renard   Save download
522
523
524
525
526
                return this.validFlag;
            }
        });

        var downloadCont = this;
0cefcae2   Benjamin Renard   il reste click droit
527
528
        this.paramGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
529
            store: Ext.create('Ext.data.Store', { model: 'amdaModel.DownloadParam' }),
0cefcae2   Benjamin Renard   il reste click droit
530
            columns: [
3ec6bc73   Erdogan Furkan   8950 - Positionne...
531
                { xtype: 'rownumberer', width: 20 },
0cefcae2   Benjamin Renard   il reste click droit
532
533
534
535
536
537
538
539
540
541
542
543
                {
                    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 () {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
544
                        return '<div class="icon-parameters" style="width: 15px; height: 15px;"></div>';
0cefcae2   Benjamin Renard   il reste click droit
545
546
547
548
                    }
                },
                {
                    menuDisabled: true, width: 30, renderer: function () {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
549
                        return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
0cefcae2   Benjamin Renard   il reste click droit
550
551
552
553
554
                    }
                }
            ],
            //TODO - BRE - Wait the fix for drag&drop issue
            listeners:
3ec6bc73   Erdogan Furkan   8950 - Positionne...
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
            {
                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
574
                        }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
575
576
577
                    });
                }
            }
0cefcae2   Benjamin Renard   il reste click droit
578
579
580
581
582
583
        });

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

        this.TTGrid = Ext.create('Ext.grid.Panel', {
            flex: 2,
3ec6bc73   Erdogan Furkan   8950 - Positionne...
584
            store: Ext.create('Ext.data.Store', { model: 'amdaModel.TTobject' }),
0cefcae2   Benjamin Renard   il reste click droit
585
            columns: [
3ec6bc73   Erdogan Furkan   8950 - Positionne...
586
587
                { xtype: 'rownumberer', width: 20 },
                { header: "TimeTable/Catalog Name", dataIndex: 'name', flex: 1, sortable: false, menuDisabled: true },
0cefcae2   Benjamin Renard   il reste click droit
588
589
590
591
592
593
594
                {
                    menuDisabled: true, width: 30, renderer: function () {
                        return '<div class="icon-remover" style="width: 15px; height: 15px;"></div>';
                    }
                }
            ],
            listeners:
3ec6bc73   Erdogan Furkan   8950 - Positionne...
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
            {
                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
622
                        }
3ec6bc73   Erdogan Furkan   8950 - Positionne...
623
624
625
                    });
                }
            }
0cefcae2   Benjamin Renard   il reste click droit
626
627
628
629
        });

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

915febd3   Vincent Cephirins   RM7926 - Evol - C...
630
        var storeTimeFormat = new Ext.data.ArrayStore({
0cefcae2   Benjamin Renard   il reste click droit
631
            fields: ['id', 'name', 'qtip'],
0e540b69   Benjamin Renard   Finalize save of ...
632
            data: amdaModel.DownloadConfig.timeformatData
0cefcae2   Benjamin Renard   il reste click droit
633
        });
f6539f85   Benjamin Renard   Download - Fix sa...
634
        this.paramPanel = new Ext.container.Container({
0cefcae2   Benjamin Renard   il reste click droit
635
636
637
638
            title: 'Parameters',
            layout: {
                type: 'hbox',
                align: 'stretch',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
639
                defaultMargins: { top: 10, left: 10, bottom: 5, right: 10 }
0cefcae2   Benjamin Renard   il reste click droit
640
641
642
643
644
645
646
647
648
649
            },
            items: [
                {
                    xtype: 'container',
                    flex: 2,
                    layout: {
                        type: 'vbox',
                        align: 'stretch'
                    },
                    items: [
f6539f85   Benjamin Renard   Download - Fix sa...
650
                        this.fieldName,
0cefcae2   Benjamin Renard   il reste click droit
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
                        {
                            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...
678
                            store: storeTimeFormat,
0cefcae2   Benjamin Renard   il reste click droit
679
680
681
682
683
684
                            listConfig: {
                                tpl: [
                                    '<tpl for=".">',
                                    '<li class="x-boundlist-item" data-qtip="{qtip}">{name}</li>',
                                    '</tpl>'
                                ]
0e540b69   Benjamin Renard   Finalize save of ...
685
                            }
0cefcae2   Benjamin Renard   il reste click droit
686
687
688
689
                        },
                        {
                            fieldLabel: 'File Structure',
                            name: 'filestructure',
0e540b69   Benjamin Renard   Finalize save of ...
690
                            store: amdaModel.DownloadConfig.filestructureData,
0cefcae2   Benjamin Renard   il reste click droit
691
                            listeners: {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
692
                                change: { fn: this.onFileStructureChange },
0cefcae2   Benjamin Renard   il reste click droit
693
694
695
696
697
698
699
700
701
702
                                scope: this
                            }
                        },
                        {
                            xtype: 'checkbox', boxLabel: 'Header in a separate file',
                            boxLabelAlign: 'before',
                            name: 'separateInfoFile', checked: false

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

        this.ttPanel =
3ec6bc73   Erdogan Furkan   8950 - Positionne...
744
745
746
747
748
749
750
751
752
753
        {
            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
754
755
                {
                    xtype: 'container',
3ec6bc73   Erdogan Furkan   8950 - Positionne...
756
757
758
759
760
761
762
                    flex: 2,
                    defaults: {
                        xtype: 'combo',
                        labelWidth: 90,
                        queryMode: 'local',
                        editable: false
                    },
0cefcae2   Benjamin Renard   il reste click droit
763
                    layout: {
3ec6bc73   Erdogan Furkan   8950 - Positionne...
764
765
                        type: 'vbox',
                        align: 'stretch'
0cefcae2   Benjamin Renard   il reste click droit
766
                    },
3ec6bc73   Erdogan Furkan   8950 - Positionne...
767
768
769
770
771
772
773
774
775
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
804
805
806
                    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
807
                    ]
3ec6bc73   Erdogan Furkan   8950 - Positionne...
808
809
810
                }
            ]
        };
0cefcae2   Benjamin Renard   il reste click droit
811
812
813
814

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

        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...
898
            plugins: [{ ptype: 'paramArgumentsPlugin', pluginId: 'download-param-arguments-plugin' }]
0cefcae2   Benjamin Renard   il reste click droit
899
900
901
902
        };

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