Blame view

js/app/views/PlotUI.js 6.96 KB
16035364   Benjamin Renard   First commit
1
2
3
4
5
/**
 * Project   : AMDA-NG
 * Name      : PlotUI.js
 * @class   amdaUI.PlotUI
 * @extends Ext.container.Container
18d4a11e   Benjamin Renard   Save and load plo...
6
7
8
 * @brief   New Plot Module UI definition (View)
 * @author  Benjamin Renard
 * @version $Id: PlotUI.js benjamin $
16035364   Benjamin Renard   First commit
9
10
11
12
 */


Ext.define('amdaUI.PlotUI', {
18d4a11e   Benjamin Renard   Save and load plo...
13
14
	extend: 'Ext.container.Container',
	alias: 'widget.newPanelPlot',
16035364   Benjamin Renard   First commit
15
	
18d4a11e   Benjamin Renard   Save and load plo...
16
17
18
19
20
21
22
23
24
25
26
	requires: [
	           'amdaModel.DownloadNode',
	           'amdaModel.Download',
	           'amdaUI.TimeSelectorUI',
	           'amdaPlotComp.PlotTabPanel',
	           'amdaPlotComp.PlotOutputForm',
	           'amdaPlotComp.PlotElementPanel'
    ],
	
	formPanel: null,
	
27b2a53e   Benjamin Renard   Link tab plot to ...
27
28
	multiPlotIntervalPanel : null,
	
18d4a11e   Benjamin Renard   Save and load plo...
29
30
31
32
33
34
35
36
37
38
39
	plotOutput: null,
	
	plotTabs : null,
	
	plotElement : null,
	
	constructor: function(config) {
		this.init(config);	    
		this.callParent(arguments);
		if (this.object)
			this.setObject(this.object);
16035364   Benjamin Renard   First commit
40
41
	},
	
18d4a11e   Benjamin Renard   Save and load plo...
42
43
44
45
46
	setObject : function(object) {
		this.object = object;
		this.plotOutput.setObject(this.object);
		this.plotTabs.setRequestObject(this.object);
		this.timeSelector.intervalSel.setInterval(this.object.get('startDate'), this.object.get('stopDate'));
16035364   Benjamin Renard   First commit
47
	},
18d4a11e   Benjamin Renard   Save and load plo...
48
49
50
51
52
53
	
	/**
     * save method called by Save button to launch the save process
     */
    saveProcess : function(){
    	var plotModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.plot.id);
18d4a11e   Benjamin Renard   Save and load plo...
54
55
    	if (plotModule)
    		plotModule.linkedNode.create();
16035364   Benjamin Renard   First commit
56
57
    },
    
18d4a11e   Benjamin Renard   Save and load plo...
58
59
60
61
62
    resetProcess : function(){
    	var plotModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.plot.id);			
		plotModule.createLinkedNode();
		plotModule.createObject();					  
		this.setObject(plotModule.linkedNode.get('object'));
16035364   Benjamin Renard   First commit
63
    },
16035364   Benjamin Renard   First commit
64
	
18d4a11e   Benjamin Renard   Save and load plo...
65
66
67
68
    getDataProcess : function(){
    	var downObject = amdaModel.DownloadNode.decodeObject(this.object);
    	amdaModel.DownloadNode.set('object',Ext.create('amdaModel.Download',downObject));		 
    	amdaModel.DownloadNode.editInModule(); 
16035364   Benjamin Renard   First commit
69
    },
18d4a11e   Benjamin Renard   Save and load plo...
70
71
72
73
    
    addParameter : function(node){
    	var crtTree = this.plotTabs.getTreeFromPlotTab(this.plotTabs.getActiveTab());
    	crtTree.dropRecord(node,null,'append');
16035364   Benjamin Renard   First commit
74
75
    },
    
18d4a11e   Benjamin Renard   Save and load plo...
76
	/**
16035364   Benjamin Renard   First commit
77
78
79
     * plot method called by 'Do Plot' button to launch the plot process
     */
    doPlot : function(){
18d4a11e   Benjamin Renard   Save and load plo...
80
    	var timeSource = this.timeSelector.getActiveTimeSource();
27b2a53e   Benjamin Renard   Link tab plot to ...
81
82
    	var multiPlotForm = this.multiPlotIntervalPanel.getForm();
    	multiPlotForm.updateRecord(this.object);
18d4a11e   Benjamin Renard   Save and load plo...
83
84
85
    	this.object.set('timesrc', timeSource);
    	if (timeSource === amdaModel.AmdaTimeObject.inputTimeSrc[0])
        	this.object.set('timeTables',this.timeSelector.TTGrid.getStore().data.items);
27b2a53e   Benjamin Renard   Link tab plot to ...
86
    	this.plotTabs.updateTimeObject();
16035364   Benjamin Renard   First commit
87
    	
18d4a11e   Benjamin Renard   Save and load plo...
88
89
90
91
92
    	// fire execution        
    	var plotModule = myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.plot.id);
    	if (plotModule)
    		plotModule.linkedNode.execute();
    },  
16035364   Benjamin Renard   First commit
93
	
18d4a11e   Benjamin Renard   Save and load plo...
94
95
96
97
98
99
100
101
102
103
104
	/**
	 * Check if changes were made before closing window 
	 * @return false
	 */	
	fclose : function() {
		myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.plot.id, true, function (module) {
			module.closeInteractiveSession();
		});
		
		return false;
	},
16035364   Benjamin Renard   First commit
105
	
18d4a11e   Benjamin Renard   Save and load plo...
106
107
108
109
	addTT : function(newTTName,newTTid)
    {		 
		this.timeSelector.addTT(newTTName,newTTid);
	},
16035364   Benjamin Renard   First commit
110

18d4a11e   Benjamin Renard   Save and load plo...
111
112
113
    addTTs : function(TTarray) {
    	// set TTTab	    
    	this.timeSelector.setTTTab(TTarray);
16035364   Benjamin Renard   First commit
114
115
116
    },
    
    /**
18d4a11e   Benjamin Renard   Save and load plo...
117
118
119
120
121
122
123
124
125
     * Set Start-Stop from parameter info (Local & MyData)
     */ 
     setTimeFromData : function(obj) 
     {                                                               
         var dateStart = new Date(obj.start.replace(/[T|Z]/g,' ').replace(/\-/g,'\/')); 
         var dateStop = new Date(obj.stop.replace(/[T|Z]/g,' ').replace(/\-/g,'\/')); 
         
         this.timeSelector.intervalSel.setInterval(dateStart, dateStop);
         this.timeSelector.intervalSel.updateDuration();        
16035364   Benjamin Renard   First commit
126
    },
18d4a11e   Benjamin Renard   Save and load plo...
127
	
27b2a53e   Benjamin Renard   Link tab plot to ...
128
129
130
131
    updateLinkedToMultiPlotMode : function(isLinkedToMultiPlotMode) {
		this.multiPlotIntervalPanel.setVisible(isLinkedToMultiPlotMode);
	},
    
18d4a11e   Benjamin Renard   Save and load plo...
132
	init : function(config) {
27b2a53e   Benjamin Renard   Link tab plot to ...
133
		this.timeSelector = new amdaUI.TimeSelectorUI( { id: 'plotTimeSelector' + config.id, flex: 1, title : 'MultiPlot Time Selection'} );
18d4a11e   Benjamin Renard   Save and load plo...
134
135
136
137
		
		this.plotOutput = new amdaPlotComp.PlotOutputForm({flex: 2});
		
		this.plotElement = new amdaPlotComp.PlotElementPanel({flex: 3});
16035364   Benjamin Renard   First commit
138

27b2a53e   Benjamin Renard   Link tab plot to ...
139
		this.plotTabs = new amdaPlotComp.PlotTabPanel({flex: 2, plotElementPanel : this.plotElement, plotUI : this});
18d4a11e   Benjamin Renard   Save and load plo...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
		
		this.optionsPanel = new Ext.form.Panel({
			layout: {
			    type: 'vbox',
			    pack: 'start',
			    align: 'stretch'
			},
			bodyStyle: { background : '#dfe8f6' },  
			defaults: {
				border: false
			},
			items: [
			        this.plotElement,
			        this.plotOutput
			]
		});
		
27b2a53e   Benjamin Renard   Link tab plot to ...
157
158
159
160
161
162
163
164
165
166
167
168
		this.multiPlotIntervalPanel = new Ext.form.Panel({
			layout: 'fit',
			bodyStyle: { background : '#dfe8f6' },
			visible : false,
			defaults: {
				border: false
			},
			items : [
			         this.timeSelector
			]
		});
		
18d4a11e   Benjamin Renard   Save and load plo...
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
		this.formPanel = new Ext.form.Panel({
			region: 'center',
			layout: {
			    type: 'hbox',
			    pack: 'start',
			    align: 'stretch'
			},
			bodyStyle: { background : '#dfe8f6' },  
			defaults: {
				border: false
			},
			items: [
			        {
						xtype : 'panel',
						layout: {
						    type: 'vbox',
						    pack: 'start',
						    align: 'stretch'
						},
						bodyStyle: { background : '#dfe8f6' },
						defaults: {
							border: false
						},
						flex: 1,
						items: [
	        				this.plotTabs,
27b2a53e   Benjamin Renard   Link tab plot to ...
195
	        				this.multiPlotIntervalPanel
18d4a11e   Benjamin Renard   Save and load plo...
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
	        			]
					},
			        {
			        	xtype : 'panel',
			        	layout: 'fit',
			        	bodyStyle: { background : '#dfe8f6' },  
			        	defaults: {
							border: false
						},
			        	flex: 1,
			        	items: [
			        	        this.optionsPanel
			            ]
			        }
			],
			fbar: [
			       {
			    	   xtype: 'button',
			    	   text: 'Plot',
			    	   scope: this,
			    	   handler: function(button) {
			    		   this.doPlot();
			    	   }
			       },
			       ' ',
			       {
			    	   xtype: 'button',
			    	   text: 'Get Data',
			    	   scope: this,
			    	   handler: function(button) {
			    		   this.getDataProcess();
			    	   }
			       },
			       ' ',
			       {
			    	   xtype: 'button',
			    	   text: 'Reset',
			    	   scope: this,
			    	   handler: function(button) {
			    		   this.resetProcess();
			    	   }
			       },
			       '->',
			       {
			    	   xtype: 'button',
			    	   text: 'Save Request',
			    	   scope: this,
			    	   handler: function(button) {
			    		   this.saveProcess();
			    	   }
			       }
			]
		});
		
		var myConf = {
				layout: 'border',
				items: [
				        this.formPanel,
				        {
				        	xtype: 'panel', 
				        	region: 'south',
				        	title: 'Information',
				        	collapsible: true,
				        	height: 100,
				        	autoHide: false,
				        	bodyStyle: 'padding:5px',
				        	iconCls: 'icon-information',
				        	loader: {
				        		autoLoad: true,
				        		url: helpDir+'plotHOWTO'
				        	}
				        }
	            ]
		};
		Ext.apply (this , Ext.apply (arguments, myConf));
	}
});