Blame view

js/app/views/PlotComponents/PlotTree.js 28 KB
437c4dbc   Benjamin Renard   First implementat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * Project   : AMDA-NG
 * Name      : PlotTree.js
 * @class   amdaPlotComp.PlotTree
 * @extends Ext.tree.Panel
 * @brief   Tree to define all elements of a plot
 * @author  Benjamin Renard
 * @version $Id: PlotTree.js benjamin $
 */

Ext.define('amdaPlotComp.PlotTree', {
	extend: 'Ext.tree.Panel',
	
	requires: [
	           'amdaPlotObj.PlotTreeNode'
	],
	
27b2a53e   Benjamin Renard   Link tab plot to ...
18
19
20
21
	//Link to the combo box to define the use of the simplified view
	simplifiedViewCombo : null,
	
	//Link to the combo to attach the tab to the multi plot mode
17433635   Benjamin Renard   Add series and sp...
22
	
437c4dbc   Benjamin Renard   First implementat...
23
24
	//Link to the Plot Element Panel
    plotElementPanel: null,
27b2a53e   Benjamin Renard   Link tab plot to ...
25
26
27
    
    //Link to the Plot Tab Content Panel
    plotTabContent : null,
437c4dbc   Benjamin Renard   First implementat...
28
29
	
	//Tab object
abe09878   Benjamin Renard   Add panels and ax...
30
31
32
33
    tabObject: null,
	
	//Panels list node
	panelsNode: null,
437c4dbc   Benjamin Renard   First implementat...
34
35
36
37
38
39
	
	constructor: function(config) {
		this.init(config);	    
		this.callParent(arguments);
	},
	
e84ed2cf   Benjamin Renard   Add Interval Tick...
40
41
42
43
	refresh: function() {
		this.getView().refresh();
	},
	
437c4dbc   Benjamin Renard   First implementat...
44
	buildTree: function(tabObject) {
abe09878   Benjamin Renard   Add panels and ax...
45
46
47
48
		if (this.store.getRootNode().hasChildNodes())
			this.store.getRootNode().removeAll();
		
		this.tabObject = tabObject;
437c4dbc   Benjamin Renard   First implementat...
49
		
27b2a53e   Benjamin Renard   Link tab plot to ...
50
51
52
53
		this.simplifiedViewCombo.setValue(this.tabObject.get('tree-simplified-view'));
		this.linkToMultiPlotCombo.setValue(this.tabObject.get('multi-plot-linked'));
		
		if (!this.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
54
55
56
		{
			//Page Node
			var pageNode = this.store.getRootNode().appendChild(new amdaPlotObj.PlotPageTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
57
		
17433635   Benjamin Renard   Add series and sp...
58
			//Layout node
003ba315   Benjamin Renard   Add Epoch Plot an...
59
			pageNode.appendChild(new amdaPlotObj.PlotLayoutTreeNode({object : tabObject}));
437c4dbc   Benjamin Renard   First implementat...
60
		
17433635   Benjamin Renard   Add series and sp...
61
62
63
64
65
66
67
68
69
			//Panels node
			this.panelsNode = pageNode.appendChild(new amdaPlotObj.PlotPanelsTreeNode());
		}
		else
			this.panelsNode = this.store.getRootNode();
		
		this.buildPanelsNode();
	},
	
bb6e93d9   Benjamin Renard   Implement templat...
70
	buildPanelsNode: function(paramNodeToSelect) {
17433635   Benjamin Renard   Add series and sp...
71
72
		if (this.panelsNode.hasChildNodes())
			this.panelsNode.removeAll();
abe09878   Benjamin Renard   Add panels and ax...
73
74
75
		
		var me = this;
		this.tabObject.panels().each(function (panelObject) {
bb6e93d9   Benjamin Renard   Implement templat...
76
			me.addPanelNode(panelObject, paramNodeToSelect);
abe09878   Benjamin Renard   Add panels and ax...
77
78
79
		});
	},
	
abe09878   Benjamin Renard   Add panels and ax...
80
81
82
83
84
85
86
87
88
89
90
	buildPanelAxesNode: function(panelObject) {
		var axesNode = null;
		
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
				//Retrieve axes node
				axesNode = panelNode.findChild('type', 'axes');
				if (!axesNode)
					//create axes node
17433635   Benjamin Renard   Add series and sp...
91
					axesNode = panelNode.appendChild(new amdaPlotObj.PlotAxesTreeNode({object : panelObject}));
abe09878   Benjamin Renard   Add panels and ax...
92
93
94
				return;
			}
		});
437c4dbc   Benjamin Renard   First implementat...
95
		
abe09878   Benjamin Renard   Add panels and ax...
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
		if (axesNode == null)
			return;
		
		//Remove old axis nodes
		axesNode.removeAll();
		
		//Add axis nodes
		panelObject.axes().each(function (axisObject) {
			switch (axisObject.get('axis-type'))
			{
			case 'time' :
				axesNode.appendChild(new amdaPlotObj.PlotTimeAxisTreeNode({object : axisObject}));
				break;
			case 'epoch' :
				axesNode.appendChild(new amdaPlotObj.PlotEpochAxisTreeNode({object : axisObject}));
				break;
			case 'x' :
				axesNode.appendChild(new amdaPlotObj.PlotXAxisTreeNode({object : axisObject}));
				break;
			case 'y-left' :
				axesNode.appendChild(new amdaPlotObj.PlotYLeftAxisTreeNode({object : axisObject}));
				break;
			case 'y-right' :
				axesNode.appendChild(new amdaPlotObj.PlotYRightAxisTreeNode({object : axisObject}));
				break;
			case 'color' :
				axesNode.appendChild(new amdaPlotObj.PlotColorAxisTreeNode({object : axisObject}));
				break;
			}
		});
		this.getView().refresh();
437c4dbc   Benjamin Renard   First implementat...
127
128
	},
	
003ba315   Benjamin Renard   Add Epoch Plot an...
129
130
131
	buildPanelParamsNode: function(panelObject, selectedParamId) {
		selectedParamId = (typeof selectedParamId !== 'undefined') ? selectedParamId : '';
		
17433635   Benjamin Renard   Add series and sp...
132
133
134
135
136
137
138
		var paramsNode = null;
		
		var me = this;
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
27b2a53e   Benjamin Renard   Link tab plot to ...
139
				if (!me.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
				{
					//Retrieve params node
					paramsNode = panelNode.findChild('type', 'params');
					if (!paramsNode)
						//create axes node
						paramsNode = panelNode.appendChild(new amdaPlotObj.PlotParamsTreeNode({object : panelObject}));
				}
				else
					paramsNode = panelNode;
				return;
			}
		});
		
		if (paramsNode == null)
			return;
		
		//Remove old param nodes
		paramsNode.removeAll();
		
		//Add param nodes
a0bf9157   Benjamin Renard   Add tick plot and...
160
		var selectedParamNode = null;
17433635   Benjamin Renard   Add series and sp...
161
		panelObject.params().each(function (paramObject) {
a0bf9157   Benjamin Renard   Add tick plot and...
162
163
164
			var paramNode = paramsNode.appendChild(new amdaPlotObj.PlotParamTreeNode({object : paramObject}));
			if (paramObject.get('id') == selectedParamId)
				selectedParamNode = paramNode;
17433635   Benjamin Renard   Add series and sp...
165
166
		});
		this.getView().refresh();
a0bf9157   Benjamin Renard   Add tick plot and...
167
168
169
		
		if (selectedParamNode)
			this.getSelectionModel().select(selectedParamNode);
17433635   Benjamin Renard   Add series and sp...
170
171
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
172
173
	buildPanelAdditionalObjectsNode: function(panelObject, selectedObject) {
		selectedObject = (typeof selectedObject !== 'undefined') ? selectedObject : null;
339866c4   Benjamin Renard   Add text legend d...
174
		
94abdb37   Benjamin Renard   Add params legend...
175
176
177
178
179
180
181
182
183
184
185
186
187
		var objectsNode = null;
		
		var me = this;
		this.panelsNode.eachChild(function (panelNode) {
			//Retrieve corresponding panel node
			if (panelNode.object == panelObject)
			{
				//Retrieve additional objects node
				objectsNode = panelNode.findChild('type', 'objects');
				if (!objectsNode)
				{
					//create additional objects node
					objectsNode = panelNode.appendChild(new amdaPlotObj.PlotAdditionalObjectsTreeNode({object : panelObject}));
94abdb37   Benjamin Renard   Add params legend...
188
189
190
191
192
193
194
195
				}
				return;
			}
		});
		
		if (objectsNode == null)
			return;
		
339866c4   Benjamin Renard   Add text legend d...
196
197
198
199
		//Remove old objects nodes
		objectsNode.removeAll();
		
		//create legends node
fd5552a4   Benjamin Renard   Info for plot ele...
200
		this.buildPanelLegendsNode(panelObject, objectsNode, selectedObject);
829160b3   Benjamin Renard   Add constants def...
201
202
		
		//create drawing objects node
fd5552a4   Benjamin Renard   Info for plot ele...
203
		this.buildDrawingObjectsNode(panelObject, objectsNode, selectedObject);
486cc3c7   Benjamin Renard   Add fill elements...
204
205
206
		
		//create fills node
		this.buildFillsNode(panelObject, objectsNode, selectedObject);
94abdb37   Benjamin Renard   Add params legend...
207
208
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
209
	buildPanelLegendsNode: function(panelObject, objectsNode, selectedObject) {
94abdb37   Benjamin Renard   Add params legend...
210
211
212
213
		var legendsNode = objectsNode.appendChild(new amdaPlotObj.PlotLegendsTreeNode({object : panelObject}));
		
		legendsNode.appendChild(new amdaPlotObj.PlotSeriesLegendTreeNode({object : panelObject}));
		
339866c4   Benjamin Renard   Add text legend d...
214
215
216
217
218
		var textLegendsNode = legendsNode.appendChild(new amdaPlotObj.PlotTextLegendsTreeNode({object : panelObject}));
		
		var selectedTextLegendNode = null;
		panelObject.textLegends().each(function (legendObject) {
			var textLegendNode = textLegendsNode.appendChild(new amdaPlotObj.PlotTextLegendTreeNode({object : legendObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
219
			if (legendObject == selectedObject)
339866c4   Benjamin Renard   Add text legend d...
220
221
222
223
224
225
				selectedTextLegendNode = textLegendNode;
		});
		
		this.getView().refresh();
		if (selectedTextLegendNode)
			this.getSelectionModel().select(selectedTextLegendNode);
94abdb37   Benjamin Renard   Add params legend...
226
227
	},
	
fd5552a4   Benjamin Renard   Info for plot ele...
228
	buildDrawingObjectsNode: function(panelObject, objectsNode, selectedObject) {
829160b3   Benjamin Renard   Add constants def...
229
230
		var drawingObjectsNode = objectsNode.appendChild(new amdaPlotObj.PlotDrawingObjectsTreeNode({object : panelObject}));
		
a8c54fb9   Benjamin Renard   Add text object p...
231
		//Constants
829160b3   Benjamin Renard   Add constants def...
232
233
234
		var selectedConstantNode = null;
		panelObject.constants().each(function (constantObject) {
			var constantNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotConstantTreeNode({object : constantObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
235
			if (constantObject == selectedObject)
829160b3   Benjamin Renard   Add constants def...
236
237
238
				selectedConstantNode = constantNode;
		});
		
a8c54fb9   Benjamin Renard   Add text object p...
239
240
241
242
		//Texts
		var selectedTextNode = null;
		panelObject.textObjs().each(function (textObject) {
			var textNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotTextTreeNode({object : textObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
243
			if (textObject == selectedObject)
a8c54fb9   Benjamin Renard   Add text object p...
244
245
246
				selectedTextNode = textNode;
		});
		
dbb7bcbe   Benjamin Renard   Add curves defint...
247
248
249
250
		//Curves
		var selectedCurveNode = null;
		panelObject.curves().each(function (curveObject) {
			var curveNode = drawingObjectsNode.appendChild(new amdaPlotObj.PlotCurveTreeNode({object : curveObject}));
fd5552a4   Benjamin Renard   Info for plot ele...
251
			if (curveObject == selectedObject)
dbb7bcbe   Benjamin Renard   Add curves defint...
252
253
254
255
				selectedCurveNode = curveNode;
		});
		
		
a8c54fb9   Benjamin Renard   Add text object p...
256
		//Refresh & selection
829160b3   Benjamin Renard   Add constants def...
257
258
259
		this.getView().refresh();
		if (selectedConstantNode)
			this.getSelectionModel().select(selectedConstantNode);
a8c54fb9   Benjamin Renard   Add text object p...
260
261
262
		
		if (selectedTextNode)
			this.getSelectionModel().select(selectedTextNode);
dbb7bcbe   Benjamin Renard   Add curves defint...
263
264
265
		
		if (selectedCurveNode)
			this.getSelectionModel().select(selectedCurveNode);
829160b3   Benjamin Renard   Add constants def...
266
267
	},
	
486cc3c7   Benjamin Renard   Add fill elements...
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
	buildFillsNode: function(panelObject, objectsNode, selectedObject) {
		var fillsNode = objectsNode.appendChild(new amdaPlotObj.PlotFillsTreeNode({object : panelObject}));
		
		var selectedFillNode = null;
		panelObject.fills().each(function (fillObject) {
			var fillNode = fillsNode.appendChild(new amdaPlotObj.PlotFillTreeNode({object : fillObject}));
			if (fillObject == selectedObject)
				selectedFillNode = fillNode;
		});
		
		this.getView().refresh();
		if (selectedFillNode)
			this.getSelectionModel().select(selectedFillNode);
	},
	
bb6e93d9   Benjamin Renard   Implement templat...
283
	addPanelNode: function(panelObject, paramNodeToSelect) {
17433635   Benjamin Renard   Add series and sp...
284
		var panelNode = this.panelsNode.appendChild(new amdaPlotObj.PlotPanelTreeNode({object : panelObject}));
27b2a53e   Benjamin Renard   Link tab plot to ...
285
		if (!this.tabObject.get('tree-simplified-view'))
94abdb37   Benjamin Renard   Add params legend...
286
		{
17433635   Benjamin Renard   Add series and sp...
287
288
			//Axes node
			this.buildPanelAxesNode(panelObject);
94abdb37   Benjamin Renard   Add params legend...
289
290
291
			//Additional objects
			this.buildPanelAdditionalObjectsNode(panelObject);
		}
17433635   Benjamin Renard   Add series and sp...
292
		//Params node
bb6e93d9   Benjamin Renard   Implement templat...
293
		this.buildPanelParamsNode(panelObject, paramNodeToSelect);
17433635   Benjamin Renard   Add series and sp...
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
		return panelNode;
	},
	
	movePanel : function(record,targetNode,position)
	{
		var fromIndex = targetNode.parentNode.indexOf(record);
		var toIndex   = targetNode.parentNode.indexOf(targetNode);
		
		var fromRecord = this.tabObject.panels().getAt(fromIndex);
		if (!fromRecord)
			return false;
		
		switch (position)
		{
			case 'before' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex : toIndex - 1;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
			case 'after' :
				this.tabObject.panels().data.removeAt(fromIndex);
				var insertIndex = (fromIndex > toIndex) ? toIndex + 1 : toIndex;
				this.tabObject.panels().data.insert(insertIndex, fromRecord);
				this.buildPanelsNode();
				this.getSelectionModel().select(this.panelsNode.getChildAt(insertIndex));
				return true;
				break;
			default :
				return false;
		}
		
		return true;
	},
	
17433635   Benjamin Renard   Add series and sp...
330
331
	moveParam : function(record,targetNode,position)
	{
7cf5fd16   Benjamin Renard   Move param in plo...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
		if (record.$className != 'amdaPlotObj.PlotParamTreeNode')
			return false;
		
		var fromIndex = record.parentNode.indexOf(record);
		var toIndex   = targetNode.parentNode.indexOf(targetNode);
		
		var fromPanelObject = null;
 		if (!this.tabObject.get('tree-simplified-view'))
		{
			fromPanelObject = record.parentNode.parentNode.object;
		}
		else
			fromPanelObject = record.parentNode.object;
 		if (fromPanelObject == null)
 			return false;
 		
 		switch (targetNode.$className)
 		{
 		case 'amdaPlotObj.PlotPanelTreeNode' :
 		case 'amdaPlotObj.PlotParamsTreeNode' :
 			var toPanelObject = targetNode.object;
 			if (toPanelObject.get('panel-plot-type') != fromPanelObject.get('panel-plot-type'))
 				return false;
 			if (toPanelObject == fromPanelObject)
 			{
 				//Move param on the same panel
 				fromPanelObject.params().data.removeAt(fromIndex);
				toPanelObject.params().data.add(record.object);
				this.buildPanelParamsNode(toPanelObject, record.object.get('id'));
 			}
 			else
 			{
 				//Move param on another panel
 				var clonedObject = record.object.copy();
 	 			fromPanelObject.params().remove(record.object);
 	 			toPanelObject.set('last-param-id', toPanelObject.get('last-param-id')+1);
 	 			clonedObject.set('id', toPanelObject.get('last-param-id'));
 	 			toPanelObject.params().add(clonedObject);
 	 			this.buildPanelParamsNode(fromPanelObject);
 	 			this.buildPanelParamsNode(toPanelObject, clonedObject.get('id'));
 			}
 			return true;
 		case 'amdaPlotObj.PlotParamTreeNode' :
 			var toPanelObject = null;
 			if (!this.tabObject.get('tree-simplified-view'))
			{
 				toPanelObject = targetNode.parentNode.parentNode.object;
			}
			else
				toPanelObject = targetNode.parentNode.object;
 			targetNode.object;
 			if (toPanelObject.get('panel-plot-type') != fromPanelObject.get('panel-plot-type'))
 				return false;
 			
 			if (toPanelObject == fromPanelObject)
 			{
 				//Move param on the same panel
 				var insertIndex = -1;
 	 			switch (position)
 	 			{
 	 			case 'before' :
 	 				insertIndex = (fromIndex > toIndex) ? toIndex : toIndex - 1;
 	 				break;
 	 			case 'after' :
 	 			default :
 	 				insertIndex = (fromIndex > toIndex) ? toIndex + 1 : toIndex;
 	 				break;
 	 			}
 	 			fromPanelObject.params().data.removeAt(fromIndex);
				toPanelObject.params().data.insert(insertIndex, record.object);
				this.buildPanelParamsNode(toPanelObject, record.object.get('id'));
 			}
 			else
 			{
 				//move param on another panel
 				var insertIndex = -1;
 	 			switch (position)
 	 			{
 	 			case 'before' :
 	 				insertIndex = (toIndex == 0) ? 0: toIndex - 1;
 	 				break;
 	 			case 'after' :
 	 			default :
 	 				insertIndex = toIndex + 1;
 	 				break;
 	 			}
 	 			var clonedObject = record.object.copy();
 	 			fromPanelObject.params().remove(record.object);
 	 			toPanelObject.set('last-param-id', toPanelObject.get('last-param-id')+1);
 	 			clonedObject.set('id', toPanelObject.get('last-param-id'));
 	 			toPanelObject.params().insert(insertIndex, clonedObject);
 	 			this.buildPanelParamsNode(fromPanelObject);
 	 			this.buildPanelParamsNode(toPanelObject, clonedObject.get('id'));
 			}
 			return true;
 		}
 		return false;
17433635   Benjamin Renard   Add series and sp...
429
430
	},
	
a0bf9157   Benjamin Renard   Add tick plot and...
431
432
433
	onNodeSelect: function(tree, record, index, eOpts) {
		if (index == -1)
			return;
437c4dbc   Benjamin Renard   First implementat...
434
		if (this.plotElementPanel != null)
abe09878   Benjamin Renard   Add panels and ax...
435
			this.plotElementPanel.setElement(record.type, record.object, this);
437c4dbc   Benjamin Renard   First implementat...
436
437
	},
	
a0bf9157   Benjamin Renard   Add tick plot and...
438
439
440
441
442
	onNodeDeselect: function(tree, record, index, eOpts) {
		if (this.plotElementPanel != null)
			this.plotElementPanel.resetElement();
	},
	
17433635   Benjamin Renard   Add series and sp...
443
444
445
	onCellClick: function(tree, td, cellIndex, record, tr, rowIndex, e, eOpts) {
		if ((cellIndex === 1) && record.get('removable'))
		{
a0bf9157   Benjamin Renard   Add tick plot and...
446
			this.getSelectionModel().deselectAll();
17433635   Benjamin Renard   Add series and sp...
447
448
449
450
451
452
453
454
			switch (record.get('type'))
			{
			case 'panel' :
				if (this.tabObject.removePanelById(record.object.get('id')))
					this.buildPanelsNode();
				break;
			case 'param' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
455
				if (!this.tabObject.get('tree-simplified-view'))
17433635   Benjamin Renard   Add series and sp...
456
457
458
459
460
461
462
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				//removeParamById
				if (panelObject.removeParamById(record.object.get('id')))
					this.buildPanelsNode();
				break;
339866c4   Benjamin Renard   Add text legend d...
463
464
			case 'text-legend' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
465
				if (!this.tabObject.get('tree-simplified-view'))
339866c4   Benjamin Renard   Add text legend d...
466
467
468
469
470
471
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeTextLegendById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
486cc3c7   Benjamin Renard   Add fill elements...
472
473
			case 'constant' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
474
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
475
476
477
478
479
480
481
482
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeConstantById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'text-obj' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
483
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
484
485
486
487
488
489
490
491
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeTextObjectById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'curve' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
492
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
493
494
495
496
497
498
499
500
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeCurveById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
			case 'fill' :
				var panelObject = null;
27b2a53e   Benjamin Renard   Link tab plot to ...
501
				if (!this.tabObject.get('tree-simplified-view'))
486cc3c7   Benjamin Renard   Add fill elements...
502
503
504
505
506
507
508
					panelObject = record.parentNode.parentNode.object;
				else
					panelObject = record.parentNode.object;
				if (panelObject.removeFillById(record.object.get('id')))
					this.buildPanelAdditionalObjectsNode(panelObject);
				break;
 			}
17433635   Benjamin Renard   Add series and sp...
509
510
511
		}
	},
	
437c4dbc   Benjamin Renard   First implementat...
512
513
514
515
516
517
518
	getSelectedNode: function() {
		var selection = this.getSelectionModel().getSelection();
		if ((selection == null) || (selection.length == 0))
			return null;
		return selection[0];
	},
	
dbb7bcbe   Benjamin Renard   Add curves defint...
519
	getSelectedPanelObject: function() {
17433635   Benjamin Renard   Add series and sp...
520
521
		var selectedNode = this.getSelectedNode();
		if (selectedNode == null)
dbb7bcbe   Benjamin Renard   Add curves defint...
522
			return null;
17433635   Benjamin Renard   Add series and sp...
523
524
525
		var crtNode = selectedNode;
		do {
			if (crtNode.get('type') == 'panel')
dbb7bcbe   Benjamin Renard   Add curves defint...
526
				return crtNode.object;
17433635   Benjamin Renard   Add series and sp...
527
528
			crtNode = crtNode.parentNode;
		} while(crtNode != null);
dbb7bcbe   Benjamin Renard   Add curves defint...
529
530
531
532
533
534
535
536
537
		return null;
	},
	
	getSelectedPlotType: function() {
		var crtPanelObject = this.getSelectedPanelObject();
		if (crtPanelObject == null)
			return 'none';
		
		return crtPanelObject.get('panel-plot-type');
17433635   Benjamin Renard   Add series and sp...
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
	},
	
	isValidToDrop : function(record,targetNode,position)
	{
		switch (record.$className)
        {
        	case 'amdaModel.LocalParamNode'   :
    	 	case 'amdaModel.RemoteParamNode'  :
    	 	case 'amdaModel.RemoteSimuParamNode'  :    
    	 		return record.get('isParameter') && ! record.get('disable');
    	 	case 'amdaModel.AliasNode'        :
    	 	case 'amdaModel.DerivedParamNode' :
    	 	case 'amdaModel.MyDataParamNode'  :
    	 		return record.isLeaf(); 
    	 	case 'amdaPlotObj.PlotParamTreeNode' :
7cf5fd16   Benjamin Renard   Move param in plo...
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
    	 		var fromPanelObject = null;
    	 		if (!this.tabObject.get('tree-simplified-view'))
				{
					fromPanelObject = record.parentNode.parentNode.object;
				}
				else
					fromPanelObject = record.parentNode.object;
    	 		if (fromPanelObject == null)
    	 			return false;
    	 		
    	 		var toPanelObject = null;
    	 		switch (targetNode.$className)
    	 		{
    	 		case 'amdaPlotObj.PlotPanelTreeNode' :
    	 		case 'amdaPlotObj.PlotParamsTreeNode' :
    	 			toPanelObject = targetNode.object;
    	 			break;
    	 		case 'amdaPlotObj.PlotParamTreeNode' :
    	 			if (!this.tabObject.get('tree-simplified-view'))
    				{
    	 				toPanelObject = targetNode.parentNode.parentNode.object;
    				}
    				else
    					toPanelObject = targetNode.parentNode.object;
    	 			break;
    	 		}
    	 		if (toPanelObject == null)
    	 			return false;
    	 		return (fromPanelObject.get('panel-plot-type') == toPanelObject.get('panel-plot-type'));
17433635   Benjamin Renard   Add series and sp...
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
    	 	case 'amdaPlotObj.PlotPanelTreeNode' :	
    	 		switch (position)
    	 		{
    	 			case 'append' :
    	 				return false;
    	 			case 'before' :
    	 				return (targetNode.$className == 'amdaPlotObj.PlotPanelTreeNode');
    	 			case 'after'  :
    	 				return ((targetNode.$className == 'amdaPlotObj.PlotPanelTreeNode') && targetNode.isLast());
    	 		}
        }
		return false;
	},
	
	dropParamToCreate : function(targetNode, position, paramId, needsArgs, plotOnly)
	{
		var panelObject = null;
		if (targetNode == null)
		{
			//create new panel
			panelObject = this.tabObject.createNewPanel();
17433635   Benjamin Renard   Add series and sp...
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
		}
		else
		{
			switch (targetNode.$className)
	        {
			case 'amdaPlotObj.PlotParamsTreeNode' :
			case 'amdaPlotObj.PlotPanelTreeNode' :
			case 'amdaPlotObj.PlotAxesTreeNode' :
				panelObject = targetNode.object;
				break;
			case 'amdaPlotObj.PlotTimeAxisTreeNode' :
			case 'amdaPlotObj.PlotEpochAxisTreeNode' :
			case 'amdaPlotObj.PlotXAxisTreeNode' :
			case 'amdaPlotObj.PlotYLeftAxisTreeNode' :
			case 'amdaPlotObj.PlotYRightAxisTreeNode' :
			case 'amdaPlotObj.PlotColorAxisTreeNode' :
			case 'amdaPlotObj.PlotParamTreeNode' :
				panelObject = targetNode.parentNode.object;
				break;
			default:
				//create new panel
				panelObject = this.tabObject.createNewPanel();
17433635   Benjamin Renard   Add series and sp...
625
626
627
628
	        }
		}

		//Create param object
ced82260   Benjamin Renard   Get initial plot ...
629
630
631
		var me = this;
		panelObject.createNewParam(paramId, function (newParamObject) {
			//Rebuild params node
bb6e93d9   Benjamin Renard   Implement templat...
632
633
			me.buildPanelsNode(newParamObject.getId());
			//BRE newParamObject
ced82260   Benjamin Renard   Get initial plot ...
634
		});
17433635   Benjamin Renard   Add series and sp...
635
636
637
638
639
640
641
642
643
644
645
646
647
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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
	},
	
	dropRecord : function(record,targetNode,position)
    {
    	var selModel = this.getSelectionModel();
		
    	//select the target node if defined
    	if (targetNode)
    		selModel.select(targetNode);
    	else
    		selModel.deselectAll();
    	
    	switch (record.$className)
    	{
    	 	case 'amdaModel.LocalParamNode'   :	  
    	 	case 'amdaModel.RemoteParamNode'  :
    	 	case 'amdaModel.RemoteSimuParamNode'  :    
    	 		if (!record.get('isParameter') || record.get('disable'))
    	 			return false;
                        
    	 		var needsArgs = false;

                if (record.$className == 'amdaModel.RemoteSimuParamNode') {
                	needsArgs = record.get('needsArgs');
                }
                else if (record.$className == 'amdaModel.LocalParamNode') {
                	needsArgs = record.get('needsArgs') && !record.get('isSpectra');
                }

                if (record.get('alias') != "" )
                	this.dropParamToCreate(targetNode, position, "#"+record.get('alias'), needsArgs);
                else
                	this.dropParamToCreate(targetNode, position, record.get('id'), needsArgs, record.get('notyet'));                 
                return true;
    	 	case 'amdaModel.AliasNode'        :
    	 		if (!record.isLeaf())
    	 			return false;
    	 		this.dropParamToCreate(targetNode, position, "#"+record.get('text'));
    	 		return true;
    	 	case 'amdaModel.DerivedParamNode' :
    	 		if (!record.isLeaf())
				    return false;
    	 		this.dropParamToCreate(targetNode, position, "ws_"+record.get('text'));
			    return true;
			case 'amdaModel.MyDataParamNode' :
				if (!record.isLeaf())
				    return false;
				this.dropParamToCreate(targetNode, position, "wsd_"+record.get('text'));
			    return true;
		 	case 'amdaPlotObj.PlotParamTreeNode' :
			    return this.moveParam(record,targetNode,position);
		 	case 'amdaPlotObj.PlotPanelTreeNode' :
		 		return this.movePanel(record,targetNode,position);
		    default :
			    return false;
    	}
    	return false;
	},
	
	getDragAndDropPluginConfig : function() {
		var me = this;
		
		return {
			ptype:'treeviewdragdrop',
			ddGroup:'explorerTree',
            enableDrag:true,
            enableDrop:true,
            appendOnly : false,
            allowContainerDrops : true,
            containerScroll : true,
            isValidDropPoint : function (node, position, dragZone, e, data) 
            {       
            	if (!node || !data.item) {
            		return false;
            	}           	    
                
                var view = this.view,
                targetNode = view.getRecord(node),
                draggedRecords = data.records,
                dataLength = draggedRecords.length,
                ln = draggedRecords.length,
                i, record;        		
                // No drop position, or dragged records: invalid drop point
                if (!(targetNode && position && dataLength)) {
                    return false;
                }
                             
                // If the targetNode is within the folder we are dragging
                for (i = 0; i < ln; i++) {
                    record = draggedRecords[i];
                    if (record.isNode && record.contains(targetNode)) {
                        return false;
                    }
                }
                
                // Respect the allowDrop field on Tree nodes
                if (position === 'append' && targetNode.get('allowDrop') === false) {
                    return false;
                }
                
                // If the target record is in the dragged dataset, then invalid drop
                if (Ext.Array.contains(draggedRecords, targetNode)) {
                     return false;
                }
                         
                if (dataLength > 1)
                	return false;
                var draggedRecord = draggedRecords[0];
                
                return me.isValidToDrop(draggedRecord,targetNode,position);
            },
            onPlotContainerDrop : function(dd, e, data){
            	if (data.records.length != 1)
            		return false;
            	return me.dropRecord(data.records[0],null,null);
            },
            onPlotNodeDrop : function(n, dd, e, data){
            	if (data.records.length != 1)
            		return false;
            	return me.dropRecord(data.records[0],this.view.getRecord(n),this.getPosition(e,n));
            }, 
            onPlotContainerOver : function(dd, e, data) {
            	if (data.records.length != 1)
            		return false;
            	var draggedRecord = data.records[0];
                return me.isValidToDrop(draggedRecord,null,'append') ? this.dropAllowed : this.dropNotAllowed;
            },
            onViewRender : function(view) {
				var me = this;

      			if (me.enableDrag) {
          			me.dragZone = Ext.create('Ext.tree.ViewDragZone', {
              			view: view,
              			ddGroup: me.dragGroup || me.ddGroup,
              			dragText: me.dragText,
              			repairHighlightColor: me.nodeHighlightColor,
              			repairHighlight: me.nodeHighlightOnRepair
          			});
      			}

      			if (me.enableDrop) {
          			me.dropZone = Ext.create('Ext.tree.ViewDropZone', {
              			view: view,
              			ddGroup: me.dropGroup || me.ddGroup,
              			allowContainerDrops: me.allowContainerDrops,
              			appendOnly: me.appendOnly,
              			allowParentInserts: me.allowParentInserts,
              			expandDelay: me.expandDelay,
              			dropHighlightColor: me.nodeHighlightColor,
              			dropHighlight: me.nodeHighlightOnDrop,
              			isValidDropPoint : me.isValidDropPoint,
              			onContainerDrop : me.onPlotContainerDrop,
              			onNodeDrop      : me.onPlotNodeDrop,
              			onContainerOver : me.onPlotContainerOver
          			});
      			}
			}
        }
	},
	
27b2a53e   Benjamin Renard   Link tab plot to ...
795
796
797
798
	updateLinkedToMultiPlotMode : function() {
		this.plotTabContent.updateLinkedToMultiPlotMode(this.tabObject.get('multi-plot-linked'));
	},
	
437c4dbc   Benjamin Renard   First implementat...
799
800
801
802
803
804
805
806
807
808
809
810
811
	init : function(config) {
		var me = this;
		
		this.plotElementPanel = config.plotElementPanel;
		
		var store = Ext.create('Ext.data.TreeStore', {
			root: {
				expanded: true
		    }
		});
		
		this.plotElementPanel = config.plotElementPanel;
		
27b2a53e   Benjamin Renard   Link tab plot to ...
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
		this.simplifiedViewCombo = Ext.create('Ext.form.field.Checkbox', {
			xtype: 'checkbox',
			boxLabel: 'Simplified View',
			listeners: {
				change: function(combo, newValue, oldValue, eOpts) {
					if (this.tabObject)
			        	this.tabObject.set('tree-simplified-view', newValue);
					if (newValue != oldValue)
						this.buildTree(this.tabObject);
				},
			    scope: this
			}
		});
		
		this.linkToMultiPlotCombo = Ext.create('Ext.form.field.Checkbox', {
			xtype: 'checkbox',
			boxLabel: 'Link to MultiPlot',
			listeners: {
				change: function(combo, newValue, oldValue, eOpts) {
					if (this.tabObject)
					{
			        	this.tabObject.set('multi-plot-linked', newValue);
			        	this.updateLinkedToMultiPlotMode();
					}
				},
			    scope: this
			}
		});
		
437c4dbc   Benjamin Renard   First implementat...
841
842
843
		var myConf = {
				store: store,
				rootVisible: false,
17433635   Benjamin Renard   Add series and sp...
844
845
				hideHeaders: true,
				viewConfig:{
e84ed2cf   Benjamin Renard   Add Interval Tick...
846
847
	                plugins: this.getDragAndDropPluginConfig(),
	                preserveScrollOnRefresh: true
17433635   Benjamin Renard   Add series and sp...
848
	            },
437c4dbc   Benjamin Renard   First implementat...
849
850
				listeners: {
			        select: me.onNodeSelect,
a0bf9157   Benjamin Renard   Add tick plot and...
851
			        deselect: me.onNodeDeselect,
17433635   Benjamin Renard   Add series and sp...
852
			        cellclick: me.onCellClick,
437c4dbc   Benjamin Renard   First implementat...
853
			        scope: me
abe09878   Benjamin Renard   Add panels and ax...
854
855
856
857
858
859
860
861
862
863
864
865
866
			    },
			    columns: [
			              {
			            	  xtype: 'treecolumn',
			                  text: 'Plot Element',
			                  flex: 1,
			                  dataIndex: 'text',
			                  renderer: function (val, meta, rec) {
			                	  var fullVal = val;
			                	  if (rec.getAdditionalText)
			                	    fullVal += rec.getAdditionalText();
			                	  return fullVal;
			                  }
17433635   Benjamin Renard   Add series and sp...
867
868
869
870
871
872
873
874
875
876
877
			              },
			              {
			            	  menuDisabled: true, 
			            	  align: 'center',
			            	  width: 24, 
			            	  renderer: function(v,m,record){
			            		  if (record.get('removable'))
			            			  return'<div class="icon-small-remover" style="width: 16px; height: 16px; vertical-align: middle;"></div>';
			            		  else
			            			  return '';
			            	  }
abe09878   Benjamin Renard   Add panels and ax...
878
879
880
881
882
883
			              }
			    ],
			    tbar: [
			           {
			        	   xtype: 'button',
			        	   text: 'Add panel',
17433635   Benjamin Renard   Add series and sp...
884
			        	   iconCls: 'icon-add',
abe09878   Benjamin Renard   Add panels and ax...
885
			        	   handler: function() {
17433635   Benjamin Renard   Add series and sp...
886
887
			        		   var newPabelNode = this.addPanelNode(this.tabObject.createNewPanel());
			        		   this.getSelectionModel().select(newPabelNode);
abe09878   Benjamin Renard   Add panels and ax...
888
889
			        	   },
			        	   scope: this
17433635   Benjamin Renard   Add series and sp...
890
891
			           },
			           '->',
27b2a53e   Benjamin Renard   Link tab plot to ...
892
893
894
			           this.linkToMultiPlotCombo,
			           ' ',
			           this.simplifiedViewCombo
abe09878   Benjamin Renard   Add panels and ax...
895
			    ]
437c4dbc   Benjamin Renard   First implementat...
896
897
898
899
900
		};
		
		Ext.apply (this , Ext.apply (arguments, myConf));
	}
});