Blame view

js/app/views/PlotComponents/PlotParamForm.js 4.84 KB
17433635   Benjamin Renard   Add series and sp...
1
2
3
4
/**
 * Project   : AMDA-NG
 * Name      : PlotParamForm.js
 * @class   amdaPlotComp.PlotParamForm
a0bf9157   Benjamin Renard   Add tick plot and...
5
 * @extends amdaPlotComp.amdaPlotComp.PlotStandardForm
17433635   Benjamin Renard   Add series and sp...
6
7
8
9
10
11
12
13
14
15
 * @brief   Form to define specifics param options
 * @author  Benjamin Renard
 * @version $Id: PlotParamForm.js benjamin $
 */

Ext.define('amdaPlotComp.PlotParamForm', {
	extend: 'amdaPlotComp.PlotStandardForm',
	
	requires: [
	    'amdaPlotComp.PlotSerieForm',
e84ed2cf   Benjamin Renard   Add Interval Tick...
16
	    'amdaPlotComp.PlotOrbitSerieForm',
a0bf9157   Benjamin Renard   Add tick plot and...
17
18
	    'amdaPlotComp.PlotSpectroForm',
	    'amdaPlotComp.PlotStatusBarForm',
6a801541   Benjamin Renard   Add possibility t...
19
20
	    'amdaPlotComp.PlotTickBarForm',
	    'amdaPlotComp.PlotInstantSerieForm',
7ac3ce50   Benjamin Renard   First implementat...
21
22
	    'amdaPlotComp.PlotInstantSpectroForm',
	    'amdaUI.ParamArgumentsUI'
17433635   Benjamin Renard   Add series and sp...
23
24
25
26
27
28
	],
	
	drawingOptionsContainer: null,
	
	drawingOptionsFormsManager : new Ext.AbstractManager(),
	
7ac3ce50   Benjamin Renard   First implementat...
29
	paramArgs : null,
eac92219   Benjamin Renard   Do not call onCha...
30
31

        isFirstMsg: true,
7ac3ce50   Benjamin Renard   First implementat...
32
	
a971060f   Benjamin Renard   Fix some bugs
33
34
	destroy: function() {
		this.drawingOptionsFormsManager.each(function (key, value, length) {
ecac355e   Benjamin Renard   Destroy plot elem...
35
36
37
    			this.drawingOptionsFormsManager.unregister(value);
			value.destroy();
    		}, this);
a971060f   Benjamin Renard   Fix some bugs
38
39
40
		this.callParent();
	},
	
17433635   Benjamin Renard   Add series and sp...
41
42
43
	setObject : function(object) {
		this.object = object;
		this.loadRecord(this.object);
bb6e93d9   Benjamin Renard   Implement templat...
44
		this.updateDrawingOptions(this.object.get('param-drawing-type'), this.object.get('paramid'));
17433635   Benjamin Renard   Add series and sp...
45
46
47
48
49
50
51
52
53
54
	},
	
	getDrawingOptionsForm: function(type) {
		var formId = '';
		if (!type || (type == ''))
			formId = 'none';
		else
			formId = type;
		
		formId += '-drawing-options-form';
17433635   Benjamin Renard   Add series and sp...
55
56
57
58
59
60
61
62
		if (!this.drawingOptionsFormsManager.get(formId))
		{
			switch(type)
			{
				//Create drawing options form
				case 'serie' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotSerieForm({id : formId}));
					break;
e84ed2cf   Benjamin Renard   Add Interval Tick...
63
64
65
				case 'orbit-serie' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotOrbitSerieForm({id : formId}));
					break;
17433635   Benjamin Renard   Add series and sp...
66
67
68
				case 'spectro' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotSpectroForm({id : formId}));
					break;
a0bf9157   Benjamin Renard   Add tick plot and...
69
70
71
72
73
74
				case 'status-bar' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotStatusBarForm({id : formId}));
					break;
				case 'tick-bar' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotTickBarForm({id : formId}));
					break;
6a801541   Benjamin Renard   Add possibility t...
75
76
77
78
79
80
				case 'iserie' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotInstantSerieForm({id : formId}));
					break;
				case 'ispectro' :
					this.drawingOptionsFormsManager.register(new amdaPlotComp.PlotInstantSpectroForm({id : formId}));
					break;
a0bf9157   Benjamin Renard   Add tick plot and...
81
 				default :
17433635   Benjamin Renard   Add series and sp...
82
83
84
85
86
87
88
89
					this.drawingOptionsFormsManager.register(new Ext.form.Label({id : formId, text: 'No available options for this drawing type'}));
			}
		}
		
		return this.drawingOptionsFormsManager.get(formId);
	
	},
	
7ac3ce50   Benjamin Renard   First implementat...
90
	updateDrawingOptions: function(drawingType, paramId) {
17433635   Benjamin Renard   Add series and sp...
91
92
		var typeField = this.getForm().findField('param-drawing-type');
		
a0bf9157   Benjamin Renard   Add tick plot and...
93
94
		var availableDrawingObjects = this.object.getAvailableDrawingObjectByPlotType(this.crtTree.getSelectedPlotType());
		typeField.getStore().loadData(availableDrawingObjects);
a971060f   Benjamin Renard   Fix some bugs
95
96
97
		typeField.suspendEvents();
		typeField.setValue(drawingType);
		typeField.resumeEvents(false);
17433635   Benjamin Renard   Add series and sp...
98
99
100
		
		this.drawingOptionsContainer.removeAll(false);
		
a0bf9157   Benjamin Renard   Add tick plot and...
101
		var drawingOptionsForm = this.getDrawingOptionsForm(drawingType);
17433635   Benjamin Renard   Add series and sp...
102
103
104
105
		this.drawingOptionsContainer.add(drawingOptionsForm);
		drawingOptionsForm.crtTree = this.crtTree;
		if (drawingOptionsForm.setObject)
			drawingOptionsForm.setObject(this.object);
7ac3ce50   Benjamin Renard   First implementat...
106
		if (this.paramArgs && paramId)
bb6e93d9   Benjamin Renard   Implement templat...
107
			this.paramArgs.editParameter(this.object, this, function (uiScope) {
7ac3ce50   Benjamin Renard   First implementat...
108
109
110
111
				uiScope.crtTree.refresh();
			});
	},
	
51b7c77c   Benjamin Renard   Add templated par...
112
	onChangeParamArgs: function(uiScope, args_key, newValue, oldValue, isTemplateArg) {
eac92219   Benjamin Renard   Do not call onCha...
113
114
115
116
117
		if ((uiScope.isFirstMsg) && (uiScope.object.get('type') == 2) && (uiScope.object.get('dim1-sum-type') == 0) && (uiScope.object.get('dim2-sum-type') == 0) &&
			(uiScope.object.get('dim1-index') == '*') && (uiScope.object.get('dim2-index') == '*')) {
			uiScope.isFirstMsg = false;
			myDesktopApp.warningMsg('If argument <i>All</i> is set for both dimensions output will be the total sum <b>(not spectra!)</b>');
		}
7ac3ce50   Benjamin Renard   First implementat...
118
		uiScope.crtTree.refresh();
17433635   Benjamin Renard   Add series and sp...
119
120
121
122
123
124
125
126
127
	},
	
	getFormItems: function() {
		var me = this;
		
		this.drawingOptionsContainer = Ext.create('Ext.container.Container', {
			layout: 'fit'
		});
		
7ac3ce50   Benjamin Renard   First implementat...
128
129
130
131
132
133
		this.paramArgs = Ext.create('amdaUI.ParamArgumentsUI', {
			onChange : me.onChangeParamArgs,
			scope: me
		});
		
		//ToDoparamArgsPlug
7ac3ce50   Benjamin Renard   First implementat...
134
135
136
		var paramInfoFieldSet = this.addStandardFieldSet('Arguments', '', [this.paramArgs]);
		paramInfoFieldSet.collapsed = false;
		
17433635   Benjamin Renard   Add series and sp...
137
		return [
7ac3ce50   Benjamin Renard   First implementat...
138
		    paramInfoFieldSet,
a0bf9157   Benjamin Renard   Add tick plot and...
139
		    this.addStandardCombo('param-drawing-type', 'Drawing type', [{'key' : '', 'value' : 'None'}], function(name, value, oldValue) {
a971060f   Benjamin Renard   Fix some bugs
140
141
142
		    	if (me.object.get('param-drawing-type') != value)
		    	{
		    		me.object.changeDrawingType(value);
e84ed2cf   Benjamin Renard   Add Interval Tick...
143
144
		    		me.object.set('param-drawing-type', value);
	        		me.crtTree.refresh();
a971060f   Benjamin Renard   Fix some bugs
145
146
		    		me.updateDrawingOptions(value);
		    	}
17433635   Benjamin Renard   Add series and sp...
147
148
149
150
	        }),
	        this.drawingOptionsContainer
		];
	}
ecac355e   Benjamin Renard   Destroy plot elem...
151
});