Blame view

js/app/models/MyDataParamNode.js 7.24 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
11
12
 */

Ext.define('amdaModel.MyDataParamNode', {
  
3a5f60a1   elena   proper use os sta...
13
14
15
16
17
18
19
20
	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 }
		],
16035364   Benjamin Renard   First commit
21
	   
3a5f60a1   elena   proper use os sta...
22
23
24
25
	statics:{
		nodeType: 'myDataParam',
		objectName : 'Parameter'
	},
16035364   Benjamin Renard   First commit
26
    
75a3182b   Elena.Budnik   special MyDataPar...
27
28
29
30
31
32
33
	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) 
48a8a598   Elena.Budnik   merge with master
34
				this.set('iconCls', 'icon-scalar');     
75a3182b   Elena.Budnik   special MyDataPar...
35
36
37
38
39
			else if(this.get('size') == 3) 
				this.set('iconCls', 'icon-vector');
			else
				this.set('iconCls', 'icon-unknowntype');            
		}
16035364   Benjamin Renard   First commit
40

75a3182b   Elena.Budnik   special MyDataPar...
41
42
43
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
		if (this.get('isSpectra')) this.set('iconCls', 'icon-spectra');          
	},
    
	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;
	},
16035364   Benjamin Renard   First commit
78

75a3182b   Elena.Budnik   special MyDataPar...
79
80
81
82
	getAllContextMenuItems: function() 
	{	    
		var menuItems = this.allMenuItems('Parameter');
		var locMenuItems = this.localMenuItems();
16035364   Benjamin Renard   First commit
83

75a3182b   Elena.Budnik   special MyDataPar...
84
85
		return  Ext.Array.merge(menuItems,locMenuItems);           
	},
16035364   Benjamin Renard   First commit
86

75a3182b   Elena.Budnik   special MyDataPar...
87
88
89
	onMenuItemClick : function(menu,item,event) 
	{
		var fnId = Ext.util.Format.substr(item.fnId, 5, item.fnId.length);
16035364   Benjamin Renard   First commit
90

75a3182b   Elena.Budnik   special MyDataPar...
91
92
93
94
95
		switch (fnId) 
		{
			case 'deleteNode':
				this.deleteNode(); 
				break;
16035364   Benjamin Renard   First commit
96

75a3182b   Elena.Budnik   special MyDataPar...
97
98
99
			case 'createDir':
				this.createDir(); 
				break;
16035364   Benjamin Renard   First commit
100

75a3182b   Elena.Budnik   special MyDataPar...
101
102
103
			case 'createLeaf':
				this.createLeaf(this);
				break;                    
16035364   Benjamin Renard   First commit
104

75a3182b   Elena.Budnik   special MyDataPar...
105
106
107
			case 'renameNode':
				this.renameNode();
				break;
16035364   Benjamin Renard   First commit
108

75a3182b   Elena.Budnik   special MyDataPar...
109
110
111
			case 'editLeaf':   
				this.editLeaf(); 
				break;
16035364   Benjamin Renard   First commit
112

75a3182b   Elena.Budnik   special MyDataPar...
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
			case 'upload':   
				this.uploadFile(); 
				break;
				
			case 'plotParam':                 
				this.createPlot(this);                
				break;
				
			case 'downParam':                   
				this.createDownload(this);                
				break; 
				
			default:
				break;
		} // switch end 
	},
16035364   Benjamin Renard   First commit
129
    
75a3182b   Elena.Budnik   special MyDataPar...
130
131
132
133
134
	uploadFile: function() {
		myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.upload.id, true, function (module) {
			module.createWindow();
		});
	}, 
48a8a598   Elena.Budnik   merge with master
135

75a3182b   Elena.Budnik   special MyDataPar...
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
	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);
				}
			});
	},
16035364   Benjamin Renard   First commit
160
    
75a3182b   Elena.Budnik   special MyDataPar...
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
	// 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
		}
	},
16035364   Benjamin Renard   First commit
189
    
75a3182b   Elena.Budnik   special MyDataPar...
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
	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!");          
		}
	},
16035364   Benjamin Renard   First commit
209
    
75a3182b   Elena.Budnik   special MyDataPar...
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
	/*
	* 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);
						}
					}
					
			});                  
		}
	},
16035364   Benjamin Renard   First commit
229
    
75a3182b   Elena.Budnik   special MyDataPar...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
	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);						 
													}
					});	      	 
			}     
	},
16035364   Benjamin Renard   First commit
247
    
75a3182b   Elena.Budnik   special MyDataPar...
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
	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');
		}
		
		// update my data on possible mask change		    
		if (res.updateMyData) {
			this.updateMyData();
			this.updateMask(res.mask);
		}
	}
48a8a598   Elena.Budnik   merge with master
285

16035364   Benjamin Renard   First commit
286
});