Blame view

js/app/models/MyDataParamNode.js 10.4 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
/** 
 * Project  : AMDA-NG4
 * Name     : MyDataNode.js
 * @class   amdaModel.MyDataNode
 * @extends amdaModel.InteractiveNode
 * @brief    
 * @author  
1c007ca2   Elena.Budnik   vector icon for M...
8
 * @version $Id: MyDataParamNode.js 2683 2014-12-02 10:58:53Z elena
16035364   Benjamin Renard   First commit
9
10
 */

f981cd96   Hacene SI HADJ MOHAND   visu ok reste les...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Ext.define('amdaModel.MyDataParamComponentNode', {
        extend: 'amdaModel.InteractiveNode',

        text: '',

        constructor : function(config)
        {
            this.callParent(arguments);
            this.set('text', config && config.text ? config.text : this.text);
            this.set('iconCls', 'icon-scalar');
            this.set('leaf',true);
            this.set('isParameter',true);
        },
         localMenuItems : function(){
    var menuItems=
    [{
            fnId : 'leaf-plotParam',
            text : 'Plot Parameter',
            hidden : true
        }, {
            fnId : 'leaf-downParam',
            text : 'Download Parameter',
            hidden : true
        }]
    return menuItems;
 },
  getAllContextMenuItems: function(){
    return  this.localMenuItems ();
},
});


16035364   Benjamin Renard   First commit
43
Ext.define('amdaModel.MyDataParamNode', {
f981cd96   Hacene SI HADJ MOHAND   visu ok reste les...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87

    extend: 'amdaModel.InteractiveNode',

    fields: [// { name : 'linkedFile', persist: false}, 
        {name: 'linkedMask', persist: false},
        {name: 'fileObject', persist: false},
        {name: 'size', persist: false},
        {name: 'isSpectra', type: 'boolean', defaultValue: false, persist: false}
    ],

    statics: {
        nodeType: 'myDataParam',
        objectName: 'Parameter'
    },

    constructor: function (config)
    {
        this.callParent(arguments);
        this.set('moduleId', myDesktopApp.dynamicModules.my_data.id);
        this.set('objectDataModel', 'amdaModel.FileParamObject');
        if (this.get('isParameter')) {
            if (this.get('size') == 1)
                this.set('iconCls', 'icon-scalar');
            else if (this.get('size') == 3)
                this.set('iconCls', 'icon-vector');
            else
                this.set('iconCls', 'icon-unknowntype');
        }
       if (this.get('size') > 1){
            this.updateComponents();
        }

        if (this.get('isSpectra'))
            this.set('iconCls', 'icon-spectra');
    },
    updateComponents: function () {
        this.removeAll();
        if (!this.get('isParameter')) {
            return;
        }
        for (var i = 0; i < this.get('size'); ++i) {
            var ch = new amdaModel.MyDataParamComponentNode({text: this.get('text') + '(' + i + ')'
            });
            ch.set('nodeType', 'myDataParam');
0f823fdb   Hacene SI HADJ MOHAND   global start and ...
88
89
            ch.set('globalStart', this.get('globalStart'));
             ch.set('globalStop', this.get('globalStop'));
f981cd96   Hacene SI HADJ MOHAND   visu ok reste les...
90
91
92
93
            this.appendChild(ch);
        }

    },
16035364   Benjamin Renard   First commit
94
    
f981cd96   Hacene SI HADJ MOHAND   visu ok reste les...
95
96
97
98
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332

    localMenuItems: function ()
    {
        var menuItems =
                [{
                        fnId: 'root-upload',
                        text: 'Upload File',
                        hidden: true
                    }, {
                        fnId: 'dire-upload',
                        text: 'Upload File',
                        hidden: true
                    }, {
                        fnId: 'leaf-upload',
                        text: 'Upload File',
                        hidden: true
                    }, {
                        fnId: 'leaf-plotParam',
                        text: 'Plot Parameter',
                        hidden: true
                    }, {
                        fnId: 'leaf-downParam',
                        text: 'Download Parameter',
                        hidden: true
                    }, {
                        fnId: 'para-plotParam',
                        text: 'Plot Parameter',
                        hidden: true
                    }, {
                        fnId: 'para-downParam',
                        text: 'Download Parameter',
                        hidden: true
                    }];
        return menuItems;
    },

    getAllContextMenuItems: function ()
    {
        var menuItems = this.allMenuItems('Parameter');
        var locMenuItems = this.localMenuItems();

        return  Ext.Array.merge(menuItems, locMenuItems);
    },

    onMenuItemClick: function (menu, item, event)
    {
        var fnId = Ext.util.Format.substr(item.fnId, 5, item.fnId.length);

        switch (fnId)
        {
            case 'deleteNode':
                this.deleteNode();
                break;

            case 'createDir':
                this.createDir();
                break;

            case 'createLeaf':
                this.createLeaf(this);
                break;

            case 'renameNode':
                this.renameNode();
                break;

            case 'editLeaf':
                this.editLeaf();
                break;

            case 'upload':
                this.uploadFile();
                break;

            case 'plotParam':
                this.createPlot(this);
                break;

            case 'downParam':
                this.createDownload(this);
                break;

            default:
                break;
        } // switch end 
    },

    uploadFile: function () {
        myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.upload.id, true, function (module) {
            module.createWindow();
        });
    },

    editLeaf: function ()
    {
        // load the rootNode and recursively all its child nodes
        // to know all names of DerivedParameters
        var me = this;
        amdaModel.InteractiveNode.preloadNodes(this.getRootNode(),
                function ()
                {
                    if (me.get('object'))
                    {
                        if (me.get('fileObject'))
                            // launch edition of parameter into parameter module
                            me.editInModule();
                        else
                            AmdaAction.getObject(me.get('object').get('file'), amdaModel.MyDataNode.nodeType, me.getFileObjectCallback, me);
                    } else
                    {
                        // call the ext method to get the details of parameter
                        // the edition of real parameter is done into callback method getObjectCallback            
                        AmdaAction.getObject(me.get('id'), me.get('nodeType'), me.getObjectCallback, me);
                    }
                });
    },

    // special case file object should be also loaded
    getObjectCallback: function (result, remoteEvent) {//result, e) {
        var t = remoteEvent.getTransaction();
        if (result) {
            if (result.id) {
                var paramObj = Ext.create(this.get('objectDataModel'), result);
                // set parameter into node
                this.set('object', paramObj);

                paramObj.set('tableDef', result['tableDef']);

                if (paramObj.get('mask'))
                    var file = paramObj.get('mask');
                else
                    var file = paramObj.get('file');

                AmdaAction.getObject(file, amdaModel.MyDataNode.nodeType,
                        this.getFileObjectCallback, this);
            } else {
                myDesktopApp.errorMsg(result.error);
            }
        } else {
            // EXCEPTION : parameter not found !?
            myDesktopApp.errorMsg(t.action + "." + t.method + " : No parameter '"
                    + this.get('name') + "' found!");
            //TODO: adding an error log
        }
    },

    getFileObjectCallback: function (result, remoteEvent) {//result, e) {
        var t = remoteEvent.getTransaction();
        if (result) {
            if (result.success) {
                var paramObj = Ext.create('amdaModel.FileObject', result);
                this.set('fileObject', paramObj);
                // Edition of parameter into parameter Module	    
                this.editInModule();
            } else {
                myDesktopApp.errorMsg(result.error);
            }
        } else {
            // EXCEPTION : parameter not found !?
            myDesktopApp.errorMsg(t.action + "." + t.method + " : No parameter '"
                    + this.get('name') + "' found!");
        }
    },

    /*
     * Mask was possibly changed update this info
     */
    updateMask: function (mask)
    {
        var myParamRootNode = this.getRootNode();
        if (myParamRootNode.isExpanded) {
            Ext.Array.each(myParamRootNode.childNodes, function (node) {
                if (node.get('linkedMask') && node.get('linkedMask').indexOf(mask) != -1) {
                    node.set('linkedMask', mask);
                    if (node.get('info')) {
                        var info = node.get('info').split("<br/>");
                        node.set('info', info[0] + "<br/>" + info[1] + "<br/> Mask: " + mask);
                    }
                }

            });
        }
    },

    updateMyData: function () {
        // reload myFiles Tree in explorer
        var explorerTree = Ext.getCmp(amdaUI.ExplorerUI.RESRC_TAB.TREE_ID);
        if (explorerTree) {
            var explorerTreeStore = explorerTree.getStore();
            var explorerRoot = explorerTreeStore.getRootNode().findChild('text', 'My Files');

            var explorerPath = '/root/myData-treeRootNode/';

            explorerTreeStore.reload({node: explorerRoot,
                params: {nodeType: 'myData'},
                callback: function () {
                    explorerTree.selectPath(explorerPath);
                }
            });
        }
    },

    isParameter: function () {
        return this.get('isParameter');
    },

    specialUpdate: function (res, timeUpdate)
    {
        if (timeUpdate && res.info)
        {
            var startStop = res.info.split("<br/>");
            var globalStart = startStop[1].substr(0, 19);
            var globalStop = startStop[1].substr(20);

            this.set('globalStart', globalStart);
            this.set('globalStop', globalStop);

            if (res.mask)
                this.set('linkedMask', res.mask);
            if (res.size)
                this.set('size', res.size);
        }

        if (res.isSpectra) {
            this.set('iconCls', 'icon-spectra');
        } else if (res.size == 3) {
            this.set('iconCls', 'icon-vector');
        } else if (res.size > 1) {
            this.set('iconCls', 'icon-unknowntype');
        }
    //      if (res.size > 1)
     //         this.updateComponents();
        // update my data on possible mask change		    
        if (res.updateMyData) {
            this.updateMyData();
            this.updateMask(res.mask);
        }
    }
48a8a598   Elena.Budnik   merge with master
333

16035364   Benjamin Renard   First commit
334
});