Blame view

js/app/views/CatalogUI.js 65.5 KB
f792a3de   elena   catalog ihm
1
2
3
4
5
6
7
8
9
10
/**
 * Project       AMDA-NG
 * Name          CatalogUI.js
 * @class 	 amdaUI.catalogUI
 * @extends      Ext.container.Container
 * @brief	 Catalog Module UI definition (View)
 * @author 	 elena
 */

Ext.define('amdaUI.CatalogUI', {
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
11
12
13
14
15
16
17
18
19
    extend: 'Ext.container.Container',
    alias: 'widget.panelCatalog',

    requires: [
        'Ext.ux.grid.menu.RangeMenu',
        'Ext.ux.grid.FiltersFeature',
        'Ext.ux.grid.filter.DateFilter',
        'Ext.ux.grid.filter.NumericFilter',
        'Ext.ux.grid.filter.StringFilter',
f3e15e49   Erdogan Furkan   #10700 - Done
20
        'amdaUI.OperationsTT',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
21
        'Ext.grid.plugin.BufferedRenderer',
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
22
23
        'amdaUI.StatisticalPlug',
+       'amdaDesktop.AmdaStateProvider'
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
24
25
26
    ],

    isCatalog: true,
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
27
    activeField : null,
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
    statics: {
        COL_TO_HIDE_DURATION: 'colToHideDuration'
    },

    constructor: function (config) {
        this.init(config);
        this.callParent(arguments);
        this.toReconfigure = true;

        if (this.object) {
            this.loadObject();
        }
    },

    setObject: function (object, toReconfigure) {
        if (toReconfigure)
            this.toReconfigure = true;
        // set object
        this.object = object;
        // load object into view
        this.loadObject();
        // show the default duration column
        this.TTGrid.headerCt.getGridColumns();

        Ext.Array.each(this.TTGrid.headerCt.getGridColumns(), function (item, index, all) {
            // if item is the default duration column
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
54
            if (item.id == amdaUI.CatalogUI.COL_TO_HIDE_DURATION + Ext.state.Manager.getProvider().get('cat_duration').toString()) {
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
                // show this column
                item.show();
            }
        });
        // fire the refresh event (to statistical plugin)
        this.fireEvent("refresh");
        // global event
        myDesktopApp.EventManager.fireEvent("refresh");
    },

    /**
     * set params description into this.object
     */
    setParamInfo: function (parameters) {
        var params = [];
        Ext.Array.each(parameters, function (item, index) {
            params[index] = item;
        }, this);

        this.object.set('parameters', params);
        this.object.set('nbParameters', params.length);
    },

    /**
     * update this.object from form
     */
    updateObject: function () {
        // get the basic form
        var basicForm = this.formPanel.getForm();
        var updateStatus = true;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
85
86
87
88
89
90
        var fieldsWithoutName = basicForm.getFields().items;
        Ext.Array.each(fieldsWithoutName, function (item, index, allItems) {
            if (item !== this.fieldName) {
                if (!item.isValid()) {
                    // set update isn't allowed
                    updateStatus = false;
8b11b1af   Benjamin Renard   Insert intervals ...
91
                }
dd143fd0   Benjamin Renard   Fix conflit
92
            }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
93
94
95
96
97
        }, this);
        // if the update is allowed
        if (updateStatus) {
            /// real object update
            // update TimeTable object with the content of form
b0720b91   Benjamin Renard   Finalize catalog ...
98
            basicForm.updateRecord(this.object);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
        }
        // return the update status
        return updateStatus;
    },

    addInterval: function (start, stop) {
        var row = this.TTGrid.getStore().getTotalCount();
        var me = this;
        this.TTGrid.getSelectionModel().deselectAll();
        AmdaAction.addCacheInterval({'start': start, 'stop': stop, 'index': row, 'isCatalog': true}, function (result, e) {
            this.status = result.status;
            if (!this.TTGrid.getStore().loading) {
                this.TTGrid.getStore().reload({
                    callback: function (records, options, success) {
                        me.TTGrid.getView().bufferedRenderer.scrollTo(row, false, function () {
                            me.TTGrid.getView().select(row);
                        }, me);
                    }
                });
            }
        }, this);
    },

    updateCount: function () {
        this.object.set('nbIntervals', this.TTGrid.getStore().getTotalCount());
        this.formPanel.getForm().findField('nbIntervals').setValue(this.object.get('nbIntervals'));
    },
    generateTT: function () {
        if (this.fclose()) {
            Ext.Msg.confirm('Generate TT', 'Current Catalog has been modified.\nDo you want to save it to include these changes in the generated Time Table ?',
                    function (btn, text) {
                        if (btn == 'yes') {
827bddef   Benjamin Renard   Fix save of a fil...
131
			    var me = this;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
132
133
134
                            // mark this.closed as true before the call to close() as that will fire the beforeclose event again
                            if (this.object.get('id') == "") {
                                // case of creation of catalog
827bddef   Benjamin Renard   Fix save of a fil...
135
136
137
                                this.saveCatalog(function () {
					me.createTT(me.object.get('id'));
				}, true);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
138
139
                            } else {
                                // casse existing catalog
827bddef   Benjamin Renard   Fix save of a fil...
140
141
142
                                this.saveProcess(false, function () {
					me.createTT(me.object.get('id'));
				}, true);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
143
144
145
146
147
148
149
150
151
152
                            }
                            return;
                        }
                    }, this);

        } else {
            this.createTT(this.object.get('id'));
            return;
        }
    },
5535e93a   Erdogan Furkan   Filter(#10688)/So...
153
    updateSurveyDates : function(res){
6d20bc66   Hacene SI HADJ MOHAND   correction ok
154
155
        if (this.TTGrid.getStore().getTotalCount() <= 0)
            return;
79dd62c6   Erdogan Furkan   #10576 - Bug fixed
156

5535e93a   Erdogan Furkan   Filter(#10688)/So...
157
158
159
160
161
162
163
164
        if(! this.object.get('surveyStart') ){
            this.object.set('surveyStart',  res['minStart']);
            this.status.isModified = true;
        }
        if(! this.object.get('surveyStop') ){
            this.object.set('surveyStop',  res['maxStop']);
            this.status.isModified = true;
        } 
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
165
166
  },

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
167
168
169
170
171
    createTT: function (catId) {
        var ttObj = Ext.create('amdaModel.TimeTable');
        var timeTabNode = Ext.create('amdaModel.TimeTableNode', {leaf: true});
        ttObj.set('relatedCatalogId', catId)
        creatDate = new Date(this.object.get('created'));
217e6c35   Hacene SI HADJ MOHAND   affichage oki
172
        date = Ext.Date.format(creatDate, 'Y-m-d\\TH:i:s.u');
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
173
174
        descr = 'Generated by CDPP/Amda Catalog Module \n' + 'From Catalog: ' + this.object.get('name') + '\nOn: ' + date + '\n';
        ttObj.set('description', descr + this.object.get('description'));
a4acaf46   Hacene SI HADJ MOHAND   IHM progess
175
        ttObj.set('contact', this.object.get('contact'));
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
176
177
178
179
180
181
182
183
184
185
        timeTabNode.set('object', ttObj);
        var explorerTree = Ext.getCmp(amdaUI.ExplorerUI.RESRC_TAB.TREE_ID);
        var ttRootNode = explorerTree.getRootNode().findChild('id', 'timeTable-treeRootNode', true);
        amdaModel.InteractiveNode.preloadNodes(ttRootNode.getRootNode(),
                function ()
                {
                    // edit newNode into Parameter Module with node as contextNode
                    timeTabNode.editInModule();
                });
    },
33705dc4   Benjamin Renard   Catalog visu rework
186
    // Convert UTC date to client local date
bad1e728   Hacene SI HADJ MOHAND   Ok for time zone
187
    convertUTCDateToLocalDate: function (date) {
1d7c3a74   Hacene SI HADJ MOHAND   correcting #7320
188
189
190
191
        if (date == null) {
            return date;
        }
        ;
bad1e728   Hacene SI HADJ MOHAND   Ok for time zone
192
193
194
195
196
197
198
199
200
        var newDate = new Date(date.getTime() + date.getTimezoneOffset() * 60 * 1000);

        var offset = date.getTimezoneOffset() / 60;
        var hours = date.getHours();

        newDate.setHours(hours - offset);

        return newDate;
    },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
    onAfterInit: function (result, e)
    {
        var me = this;
        if (!result) {
            myDesktopApp.errorMsg(e.message);
            Ext.defer(function () {
                Ext.Msg.toFront()
            }, 10);

            return;
        } else if (!result.success)
        {
            if (result.message)
                myDesktopApp.errorMsg(result.message);
            else
                myDesktopApp.errorMsg('Unknown error during catalog cache initialisation');

            Ext.defer(function () {
                Ext.Msg.toFront()
            }, 10);
            return;
        }

        if (me.toReconfigure)
        {
            // clear filters
            if (me.TTGrid.filters) {
                me.TTGrid.getStore().clearFilter(true);
                me.TTGrid.filters.clearFilters();
                me.TTGrid.filters.destroy();
            }

            var fieldsConfig = [
                {
                    name: 'start',
                    type: 'date',
217e6c35   Hacene SI HADJ MOHAND   affichage oki
237
                    dateFormat: 'Y-m-d\\TH:i:s.u',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
238
239
                    convert: function (value, rec) {
                        if (!Ext.isDate(value)) {
3a8eaaff   Hacene SI HADJ MOHAND   resolue
240
                            return new Date(value);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
241
242
243
244
245
246
247
                        }
                        return value;
                    }
                },
                {
                    name: 'stop',
                    type: 'date',
217e6c35   Hacene SI HADJ MOHAND   affichage oki
248
                    dateFormat: 'Y-m-d\\TH:i:s.u',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
249
250
                    convert: function (value, rec) {
                        if (!Ext.isDate(value)) {
3a8eaaff   Hacene SI HADJ MOHAND   resolue
251
                            return new Date(value);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
252
253
254
255
                        }
                        return value;
                    }
                },
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
256
257
258
259
260
261
262
263
264
265
                 {
                    name: 'durationDay',
                    type: 'float',
                    convert: function (value, rec) {
                        if (rec.get('stop') && rec.get('start') && (rec.get('stop') - rec.get('start')) >= 0) {
                            return (rec.get('stop') - rec.get('start')) / 3600000.0/24.0;
                        }
                    },
                    persist: false
                },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
266
267
268
269
270
271
272
                {
                    name: 'durationHour',
                    type: 'float',
                    convert: function (value, rec) {
                        if (rec.get('stop') && rec.get('start') && (rec.get('stop') - rec.get('start')) >= 0) {
                            return (rec.get('stop') - rec.get('start')) / 3600000.0;
                        }
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
273
                    },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
274
275
276
277
278
279
280
281
282
                    persist: false
                },
                {
                    name: 'durationMin',
                    type: 'float',
                    convert: function (value, rec) {
                        if (rec.get('stop') && rec.get('start') && (rec.get('stop') - rec.get('start')) >= 0) {
                            return (rec.get('stop') - rec.get('start')) / 60000.0;
                        }
d547a559   Hacene SI HADJ MOHAND   rm_6903 ok
283
                    },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
                    persist: false
                },
                {
                    name: 'durationSec',
                    type: 'float',
                    convert: function (value, rec) {
                        if (rec.get('stop') && rec.get('start') && (rec.get('stop') - rec.get('start')) >= 0) {
                            return (rec.get('stop') - rec.get('start')) / 1000.0;
                        }
                    },
                    persist: false
                },
                {name: 'cacheId', type: 'int'},
                {name: 'isNew', type: 'boolean', defaultValue: false},
                {name: 'isModified', type: 'boolean', defaultValue: false}
            ];

            var updateDurationColumnsVisibility = function (columns, visibleId) {
                Ext.Array.each(columns, function (item, index) {
                    // if item is a column to hide automatically
                    if (Ext.util.Format.substr(item.id, 0, amdaUI.CatalogUI.COL_TO_HIDE_DURATION.length) == amdaUI.CatalogUI.COL_TO_HIDE_DURATION) {
                        // if item isn't the column which is being declared and is not hidden
                        if (item.id != visibleId && !item.isHidden()) {
                            // hide this column
                            item.hide();
                        }
                    }
                });
            };

            var columnsConfig = [
                {
                    xtype: 'rownumberer',
                    width: 50,
fd1e1850   Benjamin Renard   Apply minWidth to...
318
                    minWidth: 50,
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
319
320
321
322
323
324
325
326
327
328
                    renderer: function (value, metaData, record) {
                        var msg = record.index + 1;
                        if (record.get('isNew') || record.get('isModified')) {
                            msg += ' *';
                            metaData.style = 'font-weight: bold'
                        }
                        return msg;
                    }
                },
                {
abde111c   Benjamin Renard   Fix columns size ...
329
                    header: 'Start Time', dataIndex: 'start', width: 145,
3a8eaaff   Hacene SI HADJ MOHAND   resolue
330
331
332
333
334
335
336
337
338
339
340
341
                    editor: {xtype: 'datefield', allowBlank: false, hideTrigger: true, format: 'Y-m-d\\TH:i:s.u'},
                    renderer: function (value) {
                        if (value != null) {
                            if (Ext.isDate(value)) {
                                return Ext.Date.format(value, 'Y-m-d\\TH:i:s.u');
                            } else {
                                return Ext.Date.format(new Date(value), 'Y-m-d\\TH:i:s.u');
                            }
                        } else {
                            return value;
                        }
                    }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
342
343
                },
                {
abde111c   Benjamin Renard   Fix columns size ...
344
                    header: 'Stop Time', dataIndex: 'stop', width: 145,
3a8eaaff   Hacene SI HADJ MOHAND   resolue
345
346
347
348
349
350
351
352
353
354
355
356
                    editor: {xtype: 'datefield', allowBlank: false, hideTrigger: true, format: 'Y-m-d\\TH:i:s.u'},
                    renderer: function (value) {
                        if (value != null) {
                            if (Ext.isDate(value)) {
                                return Ext.Date.format(value, 'Y-m-d\\TH:i:s.u');
                            } else {
                                return Ext.Date.format(new Date(value), 'Y-m-d\\TH:i:s.u');
                            }
                        } else {
                            return value;
                        }
                    }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
357
                },
3a8eaaff   Hacene SI HADJ MOHAND   resolue
358
                    {
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
359
360
361
362
363
364
365
                    xtype: 'gridcolumn',
                    text: 'Duration (day)',
                    sortable: true,
                    dataIndex: 'durationDay',
                    width: 120,
                    minWidth: 50,
                    menuDisabled: false,
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
366
                    hidden: Ext.state.Manager.getProvider().get('cat_duration') != 1 ? true : false,
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
367
368
                    id: amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '1',
                    renderer: function (value) {
8ee13af1   Hacene SI HADJ MOHAND   solving 9344
369
                        return this.dateToString(value);
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
370
371
372
373
374
375
376
377
                    },
                    listeners: {
                        beforeshow: function () {
                            updateDurationColumnsVisibility(this.ownerCt.getGridColumns(), amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '1');
                        }
                    },
                    filter: {type: 'numeric'}
                },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
378
379
380
381
382
383
                {
                    xtype: 'gridcolumn',
                    text: 'Duration (hour)',
                    sortable: true,
                    dataIndex: 'durationHour',
                    width: 120,
fd1e1850   Benjamin Renard   Apply minWidth to...
384
                    minWidth: 50,
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
385
                    menuDisabled: false,
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
386
                    hidden: Ext.state.Manager.getProvider().get('cat_duration') != 2 ? true : false,
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
387
                    id: amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '2',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
388
                    renderer: function (value) {
8ee13af1   Hacene SI HADJ MOHAND   solving 9344
389
                        return this.dateToString(value);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
390
391
392
                    },
                    listeners: {
                        beforeshow: function () {
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
393
                            updateDurationColumnsVisibility(this.ownerCt.getGridColumns(), amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '2');
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
394
395
396
397
398
399
400
401
402
403
                        }
                    },
                    filter: {type: 'numeric'}
                },
                {
                    xtype: 'gridcolumn',
                    text: 'Duration (Min)',
                    sortable: true,
                    dataIndex: 'durationMin',
                    width: 120,
fd1e1850   Benjamin Renard   Apply minWidth to...
404
                    minWidth: 50,
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
405
                    menuDisabled: false,
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
406
                    hidden: Ext.state.Manager.getProvider().get('cat_duration') != 3 ? true : false,
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
407
                    id: amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '3',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
408
                    renderer: function (value) {
8ee13af1   Hacene SI HADJ MOHAND   solving 9344
409
                        return this.dateToString(value);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
410
411
412
                    },
                    listeners: {
                        beforeshow: function () {
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
413
                            updateDurationColumnsVisibility(this.ownerCt.getGridColumns(), amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '3');
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
414
415
416
417
418
419
420
421
422
423
                        }
                    },
                    filter: {type: 'numeric'}
                },
                {
                    xtype: 'gridcolumn',
                    text: 'Duration (Sec)',
                    sortable: true,
                    dataIndex: 'durationSec',
                    width: 120,
fd1e1850   Benjamin Renard   Apply minWidth to...
424
                    minWidth: 50,
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
425
                    menuDisabled: false,
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
426
                    hidden: Ext.state.Manager.getProvider().get('cat_duration') != 4 ? true : false,
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
427
                    id: amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '4',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
428
                    renderer: function (value) {
8ee13af1   Hacene SI HADJ MOHAND   solving 9344
429
                        return Ext.util.Format.number(value, '0.000');
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
430
431
432
                    },
                    listeners: {
                        beforeshow: function () {
791d4b0a   Hacene SI HADJ MOHAND   ok cat nok tt
433
                            updateDurationColumnsVisibility(this.ownerCt.getGridColumns(), amdaUI.CatalogUI.COL_TO_HIDE_DURATION + '4');
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
434
435
436
437
438
439
440
441
442
443
444
445
446
447
                        }
                    },
                    filter: {type: 'numeric'}
                }
            ];
            var pramColumnWidth = 120 * (1 - 0.7 * (1 - 1 / result.parameters.length));
            Ext.Array.each(result.parameters, function (obj, index) {
                var field = {
                    name: obj.id
                };
                var column = {
                    text: obj.name,
                    sortable: true,
                    dataIndex: obj.id,
fd1e1850   Benjamin Renard   Apply minWidth to...
448
                    menuDisabled: false,
3d95b0a6   furkan   Adding the Delete...
449
450
                    minWidth: 50,
                    paramColumn: true
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
451
452
453
454
455
456
457
458
459
460
                };
                switch (obj.type) {
                    case 0: //double
                        field = Ext.apply({}, field, {
                            type: 'string'
                        });
                        column = Ext.apply({}, column, {
                            xtype: 'gridcolumn',
                            width: pramColumnWidth * parseInt(obj.size),
                            editor: 'textfield',
1fd66336   Benjamin Renard   Fix numeric field...
461
                            filter: {type: 'numeric', menuItemCfgs: {decimalPrecision: 10}}
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
462
463
464
465
466
                        });
                        break;
                    case 1: //dateTime
                        field = Ext.apply({}, field, {
                            type: 'date',
217e6c35   Hacene SI HADJ MOHAND   affichage oki
467
                            dateFormat: 'Y-m-d\\TH:i:s.u',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
468
469
                            convert: function (value, rec) {
                                if (!Ext.isDate(value)) {
42c4ccd3   Erdogan Furkan   #9660 - Done
470
                                    return new Date(value);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
471
472
                                }
                                return value;
edd2e650   Hacene SI HADJ MOHAND   correcting 7100
473
                            }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
474
475
                        });
                        column = Ext.apply({}, column, {
edd2e650   Hacene SI HADJ MOHAND   correcting 7100
476
                            xtype: 'datecolumn',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
477
478
479
480
481
                            width: 120,
                            editor: {
                                xtype: 'datefield',
                                allowBlank: false,
                                hideTrigger: true,
217e6c35   Hacene SI HADJ MOHAND   affichage oki
482
                                format: 'Y-m-d\\TH:i:s.u'
edd2e650   Hacene SI HADJ MOHAND   correcting 7100
483
                            },
42c4ccd3   Erdogan Furkan   #9660 - Done
484
485
486
487
488
489
490
491
492
493
494
495
                            filter: {type: 'date', dateFormat: 'Y-m-d'},
                            renderer: function (value) {
                                if (value != null) {
                                    if (Ext.isDate(value)) {
                                        return Ext.Date.format(value, 'Y-m-d\\TH:i:s.u');
                                    } else {
                                        return Ext.Date.format(new Date(value), 'Y-m-d\\TH:i:s.u');
                                    }
                                } else {
                                    return value;
                                }
                            }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
496
497
498
499
500
501
502
503
504
505
                        });
                        break;
                    case 2: //string
                        field = Ext.apply({}, field, {
                            type: 'string'
                        });
                        column = Ext.apply({}, column, {
                            xtype: 'gridcolumn',
                            width: pramColumnWidth * parseInt(obj.size),
                            editor: 'textfield',
d93e3f55   Hacene SI HADJ MOHAND   us ok
506
                            renderer :function(value){
d34525e2   Benjamin Renard   Fix URL in catalo...
507
508
509
				var renderedVal = value;
                                if(value.toLowerCase().startsWith("http://") ||value.toLowerCase().startsWith("https://")) {
                                         renderedVal = '<a href="' + value + '" target="_blank">' + value +'</a>';
d93e3f55   Hacene SI HADJ MOHAND   us ok
510
                                }
d34525e2   Benjamin Renard   Fix URL in catalo...
511
                                return renderedVal;
d93e3f55   Hacene SI HADJ MOHAND   us ok
512
513
                          },   
                        filter: {type: 'string'}
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
                        });
                        break;
                    case 3: //int
                        field = Ext.apply({}, field, {
                            type: 'string'
                        });
                        column = Ext.apply({}, column, {
                            xtype: 'gridcolumn',
                            width: pramColumnWidth * parseInt(obj.size),
                            editor: 'textfield',
                            filter: {type: 'numeric'}
                        });
                        break;
                    default:
                        field = Ext.apply({}, field, {
                            type: 'string'
                        });
                        column = Ext.apply({}, column, {
                            xtype: 'gridcolumn',
                            width: pramColumnWidth * parseInt(obj.size),
                            editor: 'textfield',
                            filter: {type: 'string'}
                        });
                }
                fieldsConfig.push(field);
                columnsConfig.push(column);
e022e5b5   Benjamin Renard   Filter parameter ...
540
            });
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
            var store = Ext.create('Ext.data.Store', {
                fields: fieldsConfig,
                autoDestroy: false,
                pageSize: 200,
                buffered: true,
                purgePageCount: 0,
                remoteSort: true,
                proxy: {
                    type: 'direct',
                    api: {read: AmdaAction.readCacheIntervals},
                    // remplir automatiquement tt, sharedtt , catalog, shared catalog
                    extraParams: {'typeTT': 'catalog'},
                    reader:
                            {
                                type: 'json',
                                root: 'intervals',
                                totalProperty: 'totalCount'
                            }
                },
                listeners: {
                    scope: me,
                    load: function (store, records) {
                        // myDesktopApp.EventManager.fireEvent('refresh');
                        me.TTGrid.getView().refresh();
                        me.TTGrid.getSelectionModel().refresh();
                        me.updateCount();
                        //Statistical plugin
                        this.fireEvent("refresh");
827bddef   Benjamin Renard   Fix save of a fil...
569
570
571
572
573
574
575
                    },
                    prefetch: function (store, records, successful, operation, eOpts) {
                        if (operation && (operation.action == 'read'))
                        {
                            if (operation.response && operation.response.result && operation.response.result.success)
                                me.status = operation.response.result.status;
                        }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
576
577
                    }
                }
e022e5b5   Benjamin Renard   Filter parameter ...
578
            });
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
579
580
581
582
583
584
585
586
587

            me.TTGrid.reconfigure(store, columnsConfig);
            if (me.TTGrid.filters) {
                me.TTGrid.filters.bindStore(store);
            }
        }
        me.TTGrid.getSelectionModel().deselectAll();
        //
        //         	// clear filters
827bddef   Benjamin Renard   Fix save of a fil...
588
589
590
591
592
        if (me.TTGrid.filters) {
            me.TTGrid.getStore().clearFilter(true);
            me.TTGrid.filters.clearFilters();
        }

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
        //
        // clear sort
        me.TTGrid.getStore().sorters.clear();
        //me.TTGrid.getStore().sorters = new Ext.util.MixedCollection();

        //set cache token to the Catalog object
        me.object.set('cacheToken', result.token);
        me.setParamInfo(result.parameters);
        me.TTGrid.getStore().load();

        me.status = result.status;
        //Statistical plugin
        me.fireEvent("refresh");
    },

    /**
     * load object catalog into this view
     */
    loadObject: function () {
        // load object into form
1d7c3a74   Hacene SI HADJ MOHAND   correcting #7320
613
        this.object.set('created', this.convertUTCDateToLocalDate(this.object.get('created')));
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
        this.formPanel.getForm().loadRecord(this.object);

        this.status = null;

        if (this.object.get('fromPlugin') && (this.object.get('objName') != '')) {
            if (this.object.get('objFormat') && this.object.get('objFormat') != '') {
                //From uploaded file
                AmdaAction.initObjectCacheFromUploadedFile(this.object.get('objName'), this.object.get('objFormat'), this.isCatalog, this.onAfterInit, this);
            } else {
                //From tmp object (ie Statistics result)
                AmdaAction.initObjectCacheFromTmpObject(this.object.get('folderId'), this.object.get('objName'), this.isCatalog, this.onAfterInit, this);
            }
        } else {
            var typeTT = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id).linkedNode.data.nodeType;

            if (this.object.get('id') == '' && this.object.get('relatedTimeTableId') == '') {
                // creating new catalog
                AmdaAction.initObjectCache(this.isCatalog, this.object.get('nbParameters'), this.onAfterInit, this);
            } else if (this.object.get('relatedTimeTableId') != '') {
                // Generate Catalog from Time Table
ceac8bd0   Hacene SI HADJ MOHAND   us ok
634
635
636
                var pathern = this.object.get('relatedTimeTableId').split('_')[0];
                if (pathern == 'sharedtimeTable')
			typeTT='sharedtimeTable';
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
637
638
639
640
641
642
643
644
645
646
647
                AmdaAction.initObjectCacheFromTimeTable(this.object.get('relatedTimeTableId'), typeTT, this.object.get('nbParameters'), this.onAfterInit, this);
            } else {
                //From existing TT file
                AmdaAction.initObjectCacheFromObject(this.object.get('id'), typeTT, this.onAfterInit, this);
            }
        }
        //Statistical plugin
        this.fireEvent("refresh");
    },

    checkIntervalsStatusForSave: function (onStatusOk) {
5535e93a   Erdogan Furkan   Filter(#10688)/So...
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
        if (this.status == null)
            return;

        if (this.status.nbValid <= 0)
        {
            myDesktopApp.errorMsg('Your catalog is invalid, <br>you must have at least one valid interval');
            return;
        }

        var msg = '';
        if (this.status.nbInvalid > 0)
            msg += 'There are some invalid intervals. Only valid intervals will be saved!<br/>';
        if (this.status.nbFiltered > 0)
            msg += 'There are some filtered intervals. Filtered intervals will not be saved!<br/>';
        if (msg != '')
        {
            msg += 'Do you want to continue?';
            Ext.Msg.show({
                title: 'Warning!',
                msg: msg,
                buttons: Ext.Msg.OKCANCEL,
                fn: function (btnId) {
                    if (btnId === 'cancel') {
                        // cancel the save action
                    } else {
                        onStatusOk();
                    }
                },
                scope: this,
                icon: Ext.Msg.WARNING
            });
            return;
        }

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
682
683
684
685
686
687
688
689
690
691
692
        onStatusOk();
    },

    /*
     * save method called by Save button
     */
    saveProcess: function (toRename, onAfterSave, notDisplayMsg)
    {
        var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id);
        //  store / columns are the same - not needed to reconfigure grid
        this.toReconfigure = false;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
693
694
695
696
697
698
699
700
701

        // if save shared catalog
        if (module.contextNode && (module.contextNode.get('id') == 'sharedcatalog-treeRootNode'))
        {
            module.linkedNode = null;
            module.createLinkedNode();
            module.createObject(this.object.getJsonValues());
            var obj = module.linkedNode.get('object');
            // synchronisation of objects
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
702
            this.object = obj;
5535e93a   Erdogan Furkan   Filter(#10688)/So...
703
704
705
            module.linkedNode.create({notDisplayMsg: notDisplayMsg, callback: function (type,res) {
                this.updateSurveyDates(res);     
                if (onAfterSave)
827bddef   Benjamin Renard   Fix save of a fil...
706
                        onAfterSave();
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
707
708
709
                }, scope: this});
        }
        // if the name has been modified this is a creation
5535e93a   Erdogan Furkan   Filter(#10688)/So...
710
        else if (this.fclose() || this.status) {
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
            if (this.object.isModified('name') || this.object.get('fromPlugin')) {
                // if object already has an id : it's a 'rename' of an existing
                if (this.object.get('id')) {
                    // the context Node is the parent node of current edited one
                    var contextNode = module.linkedNode.parentNode;
                    // link a new node to the TimeTableModule
                    module.createLinkedNode();
                    // set the contextNode
                    module.linkedNode.set('contextNode', contextNode);
                    // create a new object linked
                    module.createObject(this.object.getJsonValues());

                    var obj = module.linkedNode.get('object');
                    // synchronisation of objects
                    this.object = obj;
                    if (toRename)
                        module.linkedNode.toRename = true;
                }
                module.linkedNode.create({callback: function () {
5535e93a   Erdogan Furkan   Filter(#10688)/So...
730
731
732
733
                        module.linkedNode.update({notDisplayMsg: notDisplayMsg, callback: function (type,res) {
                            this.updateSurveyDates(res);    
                            if (onAfterSave)
                                onAfterSave();
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
734
735
736
737
                            }, scope: this}, "", notDisplayMsg);
                    }, scope: this});
            } else {
                //update
5535e93a   Erdogan Furkan   Filter(#10688)/So...
738
739
740
741
                module.linkedNode.update({notDisplayMsg: notDisplayMsg, callback: function (type,res) {
                    this.updateSurveyDates(res);     
                    if (onAfterSave)
                        onAfterSave();
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
742
743
744
745
746
747
748
749
                    }, scope: this});
            }
        }
    },
    saveCatalog: function (onAfterSave, notDisplayMsg) {
        if (this.updateObject())
        {
            var basicForm = this.formPanel.getForm();
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
750
                // update TimeTable object which the content of form
2ff71aba   Hacene SI HADJ MOHAND   correcting survey...
751

5535e93a   Erdogan Furkan   Filter(#10688)/So...
752
753
754
755
756
757
758
759
760
761
762
763
764
765
            basicForm.updateRecord(this.object);
            var me = this;
            this.checkIntervalsStatusForSave(function () {
                //Name validation
                var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id);

                if (!module)
                    return;
                module.linkedNode.isValidName(me.fieldName.getValue(), function (res)
                {
                    if (!res) {
                        me.fieldName.validFlag = 'Error during object validation';
                        myDesktopApp.errorMsg(me.fieldName.validFlag);
                        me.fieldName.validate();
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
766
                        return;
5535e93a   Erdogan Furkan   Filter(#10688)/So...
767
                    }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
768

5535e93a   Erdogan Furkan   Filter(#10688)/So...
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
                    if (!res.valid) {
                        if (res.error) {
                            if (res.error.search('subtree') != -1) {
                                Ext.MessageBox.show({title: 'Warning',
                                    msg: res.error + '<br/>Do you want to overwrite it?',
                                    width: 300,
                                    buttons: Ext.MessageBox.OKCANCEL,
                                    fn: me.overwriteProcess,
                                    icon: Ext.MessageBox.WARNING,
                                    scope: me
                                });
                                me.fieldName.validFlag = true;
                            } else
                                me.fieldName.validFlag = res.error;
                        } else {
                            me.fieldName.validFlag = 'Invalid object name';
                            myDesktopApp.errorMsg(me.fieldName.validFlag);
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
786
                        }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
787
                        me.fieldName.validate();
5535e93a   Erdogan Furkan   Filter(#10688)/So...
788
789
790
791
792
793
                        return;
                    }

                    me.fieldName.validFlag = true;
                    me.fieldName.validate();
                    me.saveProcess(false, onAfterSave, notDisplayMsg);
edd2e650   Hacene SI HADJ MOHAND   correcting 7100
794
                });
5535e93a   Erdogan Furkan   Filter(#10688)/So...
795
            });
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
        }
    },

    /**
     * overwrite metod called by Save button
     */
    overwriteProcess: function (btn) {
        if (btn == 'cancel')
            return;

        this.fieldName.clearInvalid();
        this.saveProcess(true);
    },

    /**
     * Check if changes were made before closing window
     * @return true if changes
     */
    fclose: function () {
        if (this.status == null)
            return false;

        var isDirty = this.formPanel.getForm().isDirty() || (this.status.isModified) || (this.status.nbModified > 0) || (this.status.nbNew > 0);
        return isDirty;
    },
f4b125fb   Hacene SI HADJ MOHAND   il reste a bloque...
821
822
823
824
825
826
827
828
829
830
831
832
        onChangeStartField: function(field, newValue, oldValue){
        if (field.isValid()) {
            if (field.isValid() && this.activeField == 'surveyStart') {
                // launch the update of duration fields
                var form = this.findParentByType('form').getForm();
                var stop = form.findField('surveyStop').setMinValue(newValue);
                var start = form.findField('surveyStart').getValue();
                var stop = form.findField('surveyStop').getValue();
                if (stop <= start) {
                    form.findField('surveyStart').markInvalid('Start Time  must be before Stop Time');
                }
            }
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
833
        }
f4b125fb   Hacene SI HADJ MOHAND   il reste a bloque...
834
     },
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
835
836
837
838
839
840
841
842
843
844
845
846
        onChangeStopField: function(field, newValue, oldValue)
	{
		if (field.isValid() && this.activeField =='surveyStop' ) {
			// launch the update of duration fields
                                                    var form = this.findParentByType('form').getForm();
                                                    var start = form.findField('surveyStart').getValue();
                                                    var stop =form.findField('surveyStop').getValue();
             if ( stop <= start ) {
                field.markInvalid('Stop Time  must be after Start Time');
            } 
		}
	},
42c4ccd3   Erdogan Furkan   #9660 - Done
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865

    columnForm: function(isNew, self, me , columnInfo = null){
        
        
        // Different avaible types
        var types = Ext.create('Ext.data.Store', {
        fields: ['type', 'name'],
        data : [
            {"type":2, "name":"String"},
            {"type":3, "name":"Integer"},
            {"type":0, "name":"Float"},
            {"type":1,"name":"TIme"}
        ]
        });

        // Window for the creation of the new Column
        var window = Ext.create('Ext.window.Window', {
            title: (isNew) ? 'New Column' : 'Edit Column',
            width: 275,
1fc076b5   Erdogan Furkan   #9660 - Adding de...
866
            height: 210,
42c4ccd3   Erdogan Furkan   #9660 - Done
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
            closable:false,
            modal:true,
            resizable: false,
            items: [
                {
                    xtype: 'form',
                    layout: 'form',
                    id: 'simpleForm',
                    frame: true,
                    bodyPadding: '5 5 0',
                    fieldDefaults: {
                        msgTarget: 'side',
                        labelWidth: 85
                    },
                    items: [{
                        // Name 
                        xtype:'textfield', 
                        fieldLabel: 'Column Name',
                        name: 'nameColumn',
                        value: (isNew) ? null : columnInfo.name,
                        allowBlank: false,
                        tooltip: 'Enter the name of the column you want to create'
                    },{
                        // Type
                        xtype: 'combobox',
                        fieldLabel: 'Data Type',
                        name:'typeColumn',
                        store:types,
                        allowBlank: false,
                        value : (isNew) ? null : columnInfo.type,
                        queryMode: 'local',
                        displayField: 'name',
                        valueField: 'type',
                        editable: false,
                        tooltip: 'Enter the type of data you want to put in this column'
                    },
                    {
                        // Size
                        xtype:'numberfield',
                        fieldLabel: 'Size',
                        name: 'sizeColumn',
                        value: (isNew) ? 1 : columnInfo.size,
                        maxValue: 3,
                        minValue: 1,
                        allowBlank: false,
                        tooltip: 'For exemple: 1 for scalar type or 3 for a vector'
1fc076b5   Erdogan Furkan   #9660 - Adding de...
913
914
915
916
917
918
919
920
921
922
923
                    },
                    {
                        // Name 
                        xtype:'textarea', 
                        fieldLabel: 'Description',
                        name: 'descriptionColumn',
                        height:50,
                        value: (isNew) ? null : columnInfo.description,
                        allowBlank: true,
                    }
                ],
42c4ccd3   Erdogan Furkan   #9660 - Done
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942

                    buttons: [{
                        text: 'Save',
                        handler: function() {
                            // If the form is correctly filled, we continue
                            if(this.up('form').getForm().isValid()){
                                if(isNew){
                                    var newColumnPrefix='added_param_id_';
                                    var nbAddedColumn= 0;
                                    Ext.each(self.TTGrid.headerCt.getGridColumns(), function(column){
                                        if(column.dataIndex.substr(0, 15) == newColumnPrefix){
                                            nbAddedColumn++;
                                        }
                                    });

                                    AmdaAction.addColumn(newColumnPrefix+nbAddedColumn,
                                                        this.up('form').getForm().findField('nameColumn').getValue(),
                                                        this.up('form').getForm().findField('typeColumn').getValue(),
                                                        this.up('form').getForm().findField('sizeColumn').getValue(),
1fc076b5   Erdogan Furkan   #9660 - Adding de...
943
                                                        this.up('form').getForm().findField('descriptionColumn').getValue(),
42c4ccd3   Erdogan Furkan   #9660 - Done
944
945
946
947
948
949
950
951
952
953
954
955
                                                        function(result, e){
                                        if(result){
                                            me.toReconfigure = true;
                                            me.onAfterInit(result);
                                            window.close();
                                        }
                                    });
                                }
                                else{
                                    var newName = null;
                                    var newType = null;
                                    var newSize = null;
1fc076b5   Erdogan Furkan   #9660 - Adding de...
956
                                    var newDescription = null;
42c4ccd3   Erdogan Furkan   #9660 - Done
957
958
959
960
961
962
963
964
965
966
967

                                    // Check if there is modifications
                                    if(this.up('form').getForm().findField('nameColumn').getValue() != columnInfo.name){
                                        newName = this.up('form').getForm().findField('nameColumn').getValue();
                                    }
                                    if(this.up('form').getForm().findField('typeColumn').getValue() != columnInfo.type){
                                        newType = this.up('form').getForm().findField('typeColumn').getValue();
                                    }
                                    if(this.up('form').getForm().findField('sizeColumn').getValue() != columnInfo.size){
                                        newSize = this.up('form').getForm().findField('sizeColumn').getValue();
                                    }
1fc076b5   Erdogan Furkan   #9660 - Adding de...
968
969
970
                                    if(this.up('form').getForm().findField('descriptionColumn').getValue() != columnInfo.description){
                                        newDescription = this.up('form').getForm().findField('descriptionColumn').getValue();
                                    }
42c4ccd3   Erdogan Furkan   #9660 - Done
971

1fc076b5   Erdogan Furkan   #9660 - Adding de...
972
                                    if(newName != null || newType != null || newSize != null || newDescription != null)
42c4ccd3   Erdogan Furkan   #9660 - Done
973
                                    {
1fc076b5   Erdogan Furkan   #9660 - Adding de...
974
                                        AmdaAction.editColumn(columnInfo.id, newName, newType, newSize, newDescription, function(result, e){
42c4ccd3   Erdogan Furkan   #9660 - Done
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
                                            if(result){
                                                me.toReconfigure = true;
                                                me.onAfterInit(result);
                                                window.close();
                                            }
                                        });
                                        
                                    }
                                    else{
                                        window.close();
                                    }
                                }
                            }
                        },
                    },
                    {
                        // to reset the form
                        text: 'Reset',
                        handler: function() {
                            this.up('form').getForm().reset();
                        }
                    },
                    {
                        // To quit the window
                        text: 'Cancel',
                        handler: function() {
                            window.close();
                        }
                    }]
                }
            ]
        }).show();
        
    },

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1010
1011
    init: function (config)
    {
3d95b0a6   furkan   Adding the Delete...
1012
        var me = this;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1013
        this.object = config.object;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
        this.fieldName = new Ext.form.field.Text({
            fieldLabel: 'Name',
            allowBlank: false,
            stripCharsRe: /(^\s+|\s+$)/g,
            emptyText: 'Please no spaces!',
            name: 'name',
            validateOnChange: false,
            validateOnBlur: false,
            validFlag: false,
            validator: function () {
                return this.validFlag;
            }
        });
6ab359f0   Benjamin Renard   Cleanup model fie...
1027

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
        var cellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
//			clicksToEdit: 2,
            onEditComplete: function (ed, value, startValue) {
                var me = this,
                        activeColumn = me.getActiveColumn(),
                        context = me.context,
                        record;

                if (activeColumn) {
                    record = context.record;

                    me.setActiveEditor(null);
                    me.setActiveColumn(null);
                    me.setActiveRecord(null);

                    context.value = value;
                    if (!me.validateEdit()) {
                        me.editing = false;
                        return;
                    }

                    // Only update the record if the new value is different than the
                    // startValue. When the view refreshes its el will gain focus
                    if (!record.isEqual(value, startValue)) {
                        var obj = {
                            'cacheId': record.get('cacheId'),
                            'isCatalog': true,
                            'data': {}
                        };
3a8eaaff   Hacene SI HADJ MOHAND   resolue
1057
1058
1059
1060
                        if(activeColumn.dataIndex == "start" ||  activeColumn.dataIndex == "stop")
                                obj['data'][activeColumn.dataIndex] = Ext.Date.format(value, 'Y-m-d\\TH:i:s.u');
                        else
                                obj['data'][activeColumn.dataIndex] = value;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096

                        //Interval is modified on the server side
                        me.editing = true;

                        AmdaAction.modifyCacheInterval(obj, function (result, e) {
                            var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id);
                            if (module)
                                module.getUiContent().status = result.status;
                            if (!context.store.loading) {
                                context.grid.getSelectionModel().deselectAll();
                                context.store.reload({
                                    callback: function (records, options, success) {
                                        context.view.bufferedRenderer.scrollTo(context.rowIdx, true, function () {
                                            me.fireEvent('edit', me, context);
                                            me.editing = false;
                                        }, me);
                                    }
                                });
                            } else {
                                me.editing = false;
                            }
                        }, this);
                    } else
                        me.editing = false;
                }
            }
        });

        var filters = {
            ftype: 'filters',
            encode: true, // json encode the filter query
            local: false,
            filters: [

            ]
        };
42c4ccd3   Erdogan Furkan   #9660 - Done
1097
        const self = this;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1098
1099
1100
1101
1102
1103
1104
        this.TTGrid = Ext.create('Ext.grid.Panel', {
            height: 530,
            features: [filters],
            columns: [],
            frame: true,
            columnLines: true,
            selModel: {pruneRemoved: false},
8ee13af1   Hacene SI HADJ MOHAND   solving 9344
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
            
          countDecimals: function (value) {
                if (Math.floor(value) === value)
                    return 0;
                return value.toString().split(".")[1].length || 0;
            },
            
            dateToString: function (value) {
                ndegits = this.countDecimals(value);
                if (ndegits <= 3) {
                    return  Ext.util.Format.number(value, '0.000');
                } else if (value < 0.1) {
                    return value.toExponential(3);
                } else {
                    return Ext.util.Format.number(value, '0.000000');
                }
            },
            
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1123
1124
            //	selType: 'cellmodel',
            plugins: [cellEditing, {ptype: 'bufferedrenderer'}],
b39df83c   Benjamin Renard   Correction of a r...
1125
            listeners: {
3d95b0a6   furkan   Adding the Delete...
1126
                afterrender: function ( ) {
1d7c3a74   Hacene SI HADJ MOHAND   correcting #7320
1127
                    this.TTGrid.headerCt.resizer.tracker.gridBugFix = true;
3d95b0a6   furkan   Adding the Delete...
1128
1129
1130
                    // Adding "Delete Column" in the menu
                    var menu = this.TTGrid.headerCt.getMenu();
                    menu.on('beforeshow',function(){
42c4ccd3   Erdogan Furkan   #9660 - Done
1131
1132
                        var deleteName='delete_column';
                        var editName= 'edit_column';
3d95b0a6   furkan   Adding the Delete...
1133
                        var isDeleteinMenu = false;
42c4ccd3   Erdogan Furkan   #9660 - Done
1134
1135
                        var isEditInMenu = false;
                        // Is there already the delete or edit item in the menu
3d95b0a6   furkan   Adding the Delete...
1136
                        Ext.each(menu.items.items, function(items){
42c4ccd3   Erdogan Furkan   #9660 - Done
1137
                            if(items.name == deleteName){
3d95b0a6   furkan   Adding the Delete...
1138
1139
                                isDeleteinMenu = true;
                            }
42c4ccd3   Erdogan Furkan   #9660 - Done
1140
1141
1142
1143
                            if(items.name == editName){
                                isEditInMenu = true;
                            }

3d95b0a6   furkan   Adding the Delete...
1144
1145
1146
1147
1148
1149
1150
1151
                        });
                        // Computing the number of parameters in the catalog
                        var nbParamColumns=0;
                        Ext.each(this.TTGrid.headerCt.getGridColumns(), function(column){
                            if(column.paramColumn){
                                nbParamColumns++
                            }
                        });
42c4ccd3   Erdogan Furkan   #9660 - Done
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168

                        // Adding the "Edit Column" if conditions satisfied
                        if(!isEditInMenu){
                            menu.add({
                                text: 'Edit Column',
                                iconCls: 'icon-parameters',
                                name: editName,
                                handler: function(item,e) {
                                    AmdaAction.getCatColumnInfo(menu.activeHeader.dataIndex,function(result, e){
                                        if(result){
                                            me.columnForm(false, self,me, result);
                                        }
                                    });
                                }
                            });
                        }

3d95b0a6   furkan   Adding the Delete...
1169
                        // Adding the "Delete Column" if conditions satisfied
42c4ccd3   Erdogan Furkan   #9660 - Done
1170
1171
                        if(!isDeleteinMenu){
                            menu.add({
3d95b0a6   furkan   Adding the Delete...
1172
                                text: 'Delete Column',
42c4ccd3   Erdogan Furkan   #9660 - Done
1173
1174
1175
                                iconCls: 'icon-delete',
                                disabled:false,
                                name: deleteName,
3d95b0a6   furkan   Adding the Delete...
1176
1177
1178
1179
1180
1181
                                handler: function(item,e) {
                                    AmdaAction.deleteColumn(menu.activeHeader.dataIndex,function(result, e){
                                        me.toReconfigure = true;
                                        me.onAfterInit(result);
                                    });
                                }
3d95b0a6   furkan   Adding the Delete...
1182
1183
                            });
                        }
42c4ccd3   Erdogan Furkan   #9660 - Done
1184
1185
1186
1187
1188
1189
1190
1191
1192

                        Ext.each(menu.items.items, function(item){
                            if(item.name == deleteName){
                                item.setDisabled(!menu.activeHeader.paramColumn || nbParamColumns <= 1);
                            }
                            if(item.name == editName){
                                item.setDisabled(!menu.activeHeader.paramColumn);
                            }
                        });
3d95b0a6   furkan   Adding the Delete...
1193
                    }, this);
1d7c3a74   Hacene SI HADJ MOHAND   correcting #7320
1194
                },
f5ed8bb2   Erdogan Furkan   #9505 - Added dur...
1195
1196
1197
1198
1199
1200
1201
1202
1203
                scope: this,
                columnschanged:function(ct,eOpts){ // Takes into count the duration changes
                    Ext.Array.each(ct.getGridColumns(), function (item, index, all) {
                        if (Ext.util.Format.substr(item.id, 0, amdaUI.CatalogUI.COL_TO_HIDE_DURATION.length) == amdaUI.CatalogUI.COL_TO_HIDE_DURATION && !item.isHidden()) {
                            var durationNumber = parseInt(Ext.util.Format.substr(item.id, amdaUI.CatalogUI.COL_TO_HIDE_DURATION.length, amdaUI.CatalogUI.COL_TO_HIDE_DURATION.length+1));
                            Ext.state.Manager.getProvider().set('cat_duration', durationNumber);
                        }
                    });
                }
b39df83c   Benjamin Renard   Correction of a r...
1204
            },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1205
1206
1207
1208
            dockedItems: [{
                    xtype: 'toolbar',
                    items: [{
                            iconCls: 'icon-add',
3d95b0a6   furkan   Adding the Delete...
1209
                            text:'New line',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
                            scope: this,
                            handler: function () {
                                cellEditing.cancelEdit();
                                var store = this.TTGrid.getStore();

                                var selection = this.TTGrid.getView().getSelectionModel().getSelection()[0];
                                var row = 0;
                                if (selection)
                                    row = store.indexOf(selection) + 1;
                                this.TTGrid.getSelectionModel().deselectAll();
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1220
1221

                                var me = this;
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
                                AmdaAction.addCacheInterval({'index': row, 'isCatalog': true}, function (result, e) {
                                    this.status = result.status;
                                    if (!this.TTGrid.getStore().loading) {
                                        this.TTGrid.getStore().reload({
                                            callback: function (records, options, success) {
                                                me.TTGrid.getView().bufferedRenderer.scrollTo(row, false, function () {
                                                    me.TTGrid.getView().select(row);
                                                    cellEditing.startEditByPosition({row: row, column: 1});
                                                }, me);
                                            }
                                        });
                                    }
                                }, this);
                            }
3d95b0a6   furkan   Adding the Delete...
1236
1237
                        }, 
                        {
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1238
1239
                            iconCls: 'icon-delete',
                            disabled: true,
3d95b0a6   furkan   Adding the Delete...
1240
                            text:'Delete Line',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
                            itemId: 'delete',
                            scope: this,
                            handler: function () {
                                var selection = this.TTGrid.getView().getSelectionModel().getSelection()[0];
                                if (selection)
                                {
                                    var rowId = selection.get('cacheId');
                                    this.TTGrid.getSelectionModel().deselectAll();
                                    AmdaAction.removeTTCacheIntervalFromId(rowId, this.isCatalog, function (result, e) {
                                        this.status = result.status;
                                        if (!this.TTGrid.getStore().loading) {
                                            this.TTGrid.getStore().reload();
                                        }
                                    }, this);
                                }
                            }
3d95b0a6   furkan   Adding the Delete...
1257
1258
1259
1260
1261
1262
1263
                        },
                        '-',{
                            iconCls: 'icon-add',
                            text:'New Column(s)',
                            itemId: 'column_add',
                            scope: this,
                            handler: function () {
42c4ccd3   Erdogan Furkan   #9660 - Done
1264
1265
1266

                                me.columnForm(true, self,me);
                            }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
                        }, '->',
                        {
                            text: 'Clear Filters',
                            scope: this,
                            handler: function () {
                                this.TTGrid.getStore().clearFilter(true);
                                this.TTGrid.filters.clearFilters();
                            }
                        }]
                }]
        });

        this.formPanel = Ext.create('Ext.form.Panel', {
            region: 'center',
            layout: 'hbox',
f3e15e49   Erdogan Furkan   #10700 - Done
1282
            overflowY:'auto',
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
            model: 'amdaModel.Catalog',
            trackResetOnLoad: true, // reset to the last loaded record
            bodyStyle: {background: '#dfe8f6'},
            defaults: {border: false, align: 'stretch', bodyStyle: {background: '#dfe8f6'}, padding: '3'},
            fieldDefaults: {labelWidth: 80, labelAlign: 'top'},
            items: [{
                    xtype: 'form',
                    flex: 1,
                    buttonAlign: 'left',
                    // title : 'Information',
                    layout: {type: 'vbox', pack: 'start', align: 'stretch'},
                    items: [
                        this.fieldName,
                        {
                            xtype: 'fieldcontainer',
                            layout: 'hbox',
                            items: [{
                                    xtype: 'datefield', fieldLabel: 'Creation date',
                                    name: 'created', disabled: true,
                                    hideTrigger: true, format: 'Y/m/d H:i:s'
                                },
                                {xtype: 'splitter'},
                                {xtype: 'textfield', fieldLabel: 'Intervals', name: 'nbIntervals', disabled: true}
                            ]
                        },
                        {
a4acaf46   Hacene SI HADJ MOHAND   IHM progess
1309
1310
1311
1312
1313
1314
1315
1316
                            xtype:'fieldset',
                            columnWidth: 0.5,
                            title: 'Survey Period',
                            collapsible: true,
                            defaultType: 'datefield',
                            defaults: {anchor: '100%'},
                            layout: 'anchor',
                            items :[{
7c236e57   Erdogan Furkan   #10576 - Pb with ...
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
                                fieldLabel: 'Start Time',
                                name: 'surveyStart',
                                emptyText: 'YYYY/MM/DDThh:mm:ss.fff',
                                format: 'Y-m-d\\TH:i:s.u',
                                enforceMaxLength: true,
                                maxLength: 25,
                                labelWidth: 60,
                                labelAlign: 'left',
                                renderer: function (value) {
                                    if (value != null) {
                                        if (Ext.isDate(value)) {
                                            return Ext.Date.format(value, 'Y-m-d\\TH:i:s.u');
                                        } else {
                                            return Ext.Date.format(new Date(value), 'Y-m-d\\TH:i:s.u');
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
1331
                                        }
7c236e57   Erdogan Furkan   #10576 - Pb with ...
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
                                    } else {
                                        return value;
                                    }
                                },
                                listeners: {
                                    change: this.onChangeStartField,
                                    focus: function(field) {
                                        this.activeField = 'surveyStart';
                                    },
                                }
                            }, {
f3e15e49   Erdogan Furkan   #10700 - Done
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
                                fieldLabel: 'Stop Time',
                                name: 'surveyStop',
                                emptyText: 'YYYY/MM/DDThh:mm:ss.fff',
                                format: 'Y-m-d\\TH:i:s.u',
                                labelAlign: 'left',
                                enforceMaxLength: true,
                                maxLength: 25,
                                labelWidth: 60,
                                align: 'left',
                                listeners: {
                                change: this.onChangeStopField,
                                focus: function(field) {
                                this.activeField = 'surveyStop';
		                    },
709a2d2e   Hacene SI HADJ MOHAND   il reste auto sta...
1357
                                        }
a4acaf46   Hacene SI HADJ MOHAND   IHM progess
1358
1359
1360
1361
1362
1363
1364
1365
1366
                                    }]
                        },
                        {
                            xtype: 'textarea',
                            name: 'contact',
                            fieldLabel: 'Contact',
                            height:50
                        },
                        {
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1367
1368
1369
                            xtype: 'textarea',
                            name: 'description',
                            fieldLabel: 'Description',
a4acaf46   Hacene SI HADJ MOHAND   IHM progess
1370
                            height: 150
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1371
1372
                        },
                        {
f3e15e49   Erdogan Furkan   #10700 - Done
1373
1374
1375
1376
1377
1378
1379
1380
                            xtype: 'operationsTT',
                            margin:'5 0 0 0',
                            collapsible: true,
                            collapsed:true,
                            parent: this,
                            isCat:true,
                            id: 'operationCat'
                        },],
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1381
1382
1383
1384
1385
                    dockedItems: [
                        {
                            xtype: 'toolbar',
                            dock: 'bottom',
                            ui: 'footer',
f3e15e49   Erdogan Furkan   #10700 - Done
1386
                            height: 50,
b39df83c   Benjamin Renard   Correction of a r...
1387

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
                            items: [
                                {
                                    type: 'button',
                                    text: 'Save',
                                    width: 50,
                                    scope: this,
                                    handler: function ()
                                    {
                                        this.saveCatalog();
                                    }
                                }, {
                                    type: 'button',
                                    text: 'Reset',
                                    width: 50,
                                    scope: this,
                                    handler: function () {
                                        var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id);
                                        // 								module.createLinkedNode();
                                        // 								module.createObject();
                                        this.setObject(module.getLinkedNode().get('object'), true);
                                    }
                                },
                                {
                                    type: 'button',
                                    text: 'Create New Catalog',
                                    width: 120,
                                    scope: this,
                                    handler: function ()
                                    {
dd143fd0   Benjamin Renard   Fix conflit
1417
                                        var module = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.catalog.id);
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1418

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1419
1420
1421
1422
1423
1424
1425
1426
1427
                                        if (!module)
                                            return;

                                        module.createLinkedNode();
                                        module.createObject();

                                        var obj = module.linkedNode.get('object');

                                        var me = this;
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1428

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1429
1430
1431
1432
1433
1434
1435
1436
1437
                                        Ext.Msg.prompt('Create catalog', 'Enter the number of columns:', function (btn, text) {
                                            if (btn == 'ok') {
                                                module.createLinkedNode();
                                                module.createObject();
                                                var obj = module.linkedNode.get('object');

                                                var nbParam = parseInt(text);
                                                if ((nbParam <= 0) || (nbParam > 100)) {
                                                    nbParam = 1;
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1438
1439
                                                }

13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1440
1441
1442
1443
1444
1445
1446
1447
                                                obj.set('nbParameters', nbParam);
                                                me.setObject(obj, true);
                                            }
                                        }, this);

                                    }
                                }]
                        },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
                        //statistical info
                        {
                            xtype: 'toolbar',
                            dock: 'bottom',
                            ui: 'footer',
                            items: [{
                                    xtype: 'button',
                                    text: 'Statistical info',
                                    scope: this,
                                    //dock: 'bottom',
                                    //ui: 'footer',
                                    handler: function () {
                                        this.fireEvent('info', 'catalogUI');
                                    }
                                },
                                {
                                    type: 'button',
                                    text: 'Visualize',
                                    scope: this,
                                    handler: function () {
                                        var me = this;
                                        myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.visu.id, true, function (module) {
b0720b91   Benjamin Renard   Finalize catalog ...
1470
                                          module.visualize(me.object);
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1471
                                        });
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1472
                                    }
f3e15e49   Erdogan Furkan   #10700 - Done
1473
                                },
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
                            ]
                        },
                        {
                            xtype: 'toolbar',
                            dock: 'bottom',
                            ui: 'footer',
                            items: [{
                                    xtype: 'button',
                                    text: 'Generate Time Table',
                                    scope: this,
                                    //dock: 'bottom',
                                    //ui: 'footer',
                                    handler: function () {
                                        this.generateTT(this.object.get('id'));
                                    }
                                }]},
                    ],

                },
                {
                    xtype: 'form',
                    bodyStyle: {background: '#dfe8f6'},
                    //padding: '3',
                    flex: 2,
                    items: [this.TTGrid]
                }]
        });

        this.TTGrid.getSelectionModel().on('selectionchange', function (selModel, selections) {
            this.TTGrid.down('#delete').setDisabled(selections.length === 0);
        }, this);

        var myConf = {
            layout: 'border',
            items: [
                this.formPanel,
                {
                    xtype: 'panel',
                    region: 'south',
                    title: 'Information',
                    collapsible: true,
                    collapseMode: 'header',
                    height: 100,
                    autoHide: false,
                    bodyStyle: 'padding:5px',
                    iconCls: 'icon-information',
                    loader:
                            {
                                autoLoad: true,
                                url: helpDir + 'catalogHOWTO'
                            }
02e89fbe   Hacene SI HADJ MOHAND   rm_6903 ok
1525
                }
13f28b15   Hacene SI HADJ MOHAND   rm_7054 in progress
1526
1527
1528
1529
1530
            ],
            plugins: [{ptype: 'statisticalPlugin'}]
        };
        Ext.apply(this, Ext.apply(arguments, myConf));
    }
0fea5567   Benjamin Renard   First step for re...
1531
1532

});