Blame view

js/app/models/PlotObjects/PlotTabObject.js 11.6 KB
437c4dbc   Benjamin Renard   First implementat...
1
2
3
4
/**
 * Project      : AMDA-NG
 * Name         : PlotTabObject.js
 * @class   amdaPlotObj.PlotTabObject
27b2a53e   Benjamin Renard   Link tab plot to ...
5
 * @extends amdaModel.AmdaTimeObject
437c4dbc   Benjamin Renard   First implementat...
6
7
8
9
10
11
12
13
14
15
16
 * @brief   Plot Tab Business Object Definition 
 * @author  Benjamin Renard
 * @version $Id: PlotTabObject.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :22/07/2015: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotTabObject', {
27b2a53e   Benjamin Renard   Link tab plot to ...
17
	extend: 'amdaModel.AmdaTimeObject',
abe09878   Benjamin Renard   Add panels and ax...
18
19
	idProperty: 'id',
	
437c4dbc   Benjamin Renard   First implementat...
20
	requires: [
abe09878   Benjamin Renard   Add panels and ax...
21
	           'amdaPlotObj.PlotObjectConfig',
003ba315   Benjamin Renard   Add Epoch Plot an...
22
23
24
25
	           'amdaPlotObj.PlotPanelObject',
	           'amdaPlotObj.PlotLayoutVerticalObject',
	           'amdaPlotObj.PlotLayoutAutoObject',
	           'amdaPlotObj.PlotLayoutManualObject'
437c4dbc   Benjamin Renard   First implementat...
26
27
28
	],
	
	fields : [
fd5552a4   Benjamin Renard   Info for plot ele...
29
	          {name: 'id', type: 'int'},
27b2a53e   Benjamin Renard   Link tab plot to ...
30
31
	          {name: 'tree-simplified-view', type: 'boolean'},
	          {name: 'multi-plot-linked', type: 'boolean'},
2a0b8d2c   Benjamin Renard   Restore node stat...
32
33
34
	          {name: 'page-node-state', type: 'int', defaultValue: 2}, //0 : collapsed, 1 : expanded, 2 : not set 
	          {name: 'panels-node-state', type: 'int', defaultValue: 2},  //0 : collapsed, 1 : expanded, 2 : not set
	          {name: 'page-title-text', type: 'string'},
437c4dbc   Benjamin Renard   First implementat...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
              {name: 'page-title-color', type: 'string'},
              {name: 'page-title-position', type: 'string'},
              {name: 'page-title-alignment', type: 'string'},
              {name: 'page-title-font-activated', type: 'boolean'},
              {name: 'page-title-font-name', type: 'string'},
              {name: 'page-title-font-size', type: 'int'},
              {name: 'page-title-font-bold', type: 'boolean'},
              {name: 'page-title-font-italic', type: 'boolean'},
              {name: 'page-margins-activated', type: 'boolean'},
              {name: 'page-margin-x', type: 'float'},
              {name: 'page-margin-y', type: 'float'},
              {name: 'page-mode', type: 'string'},
              {name: 'page-orientation', type: 'string'},
              {name: 'page-dimension', type: 'string'},
              {name: 'page-superpose-mode', type: 'boolean'},
              {name: 'page-font-activated', type: 'boolean'},
              {name: 'page-font-name', type: 'string'},
              {name: 'page-font-size', type: 'int'},
              {name: 'page-font-bold', type: 'boolean'},
003ba315   Benjamin Renard   Add Epoch Plot an...
54
55
              {name: 'page-font-italic', type: 'boolean'},
              {name: 'page-layout-type', type: 'string'},
dbb7bcbe   Benjamin Renard   Add curves defint...
56
57
              {name: 'page-layout-object', type: 'auto', defaultValue: null},
              {name: 'last-panel-id', type: 'int', defaultValue: 0}
437c4dbc   Benjamin Renard   First implementat...
58
59
60
61
    ],
    
    associations : [
              {
abe09878   Benjamin Renard   Add panels and ax...
62
63
64
65
66
            	  type : 'hasMany', 
            	  model : 'amdaPlotObj.PlotPanelObject',
            	  name  : 'panels'
              },
              {
437c4dbc   Benjamin Renard   First implementat...
67
            	  type  : 'belongsTo',
17433635   Benjamin Renard   Add series and sp...
68
                  model : 'amdaPlotObj.PlotRequestObject'
437c4dbc   Benjamin Renard   First implementat...
69
70
71
              }
    ],
    
18d4a11e   Benjamin Renard   Save and load plo...
72
73
74
    constructor: function(){
        var me = this;
        me.callParent(arguments);
18d4a11e   Benjamin Renard   Save and load plo...
75
76
77
78
79
80
81
82
83
84
85
86
        if ((arguments.length > 0) && arguments[0])
        {
        	if (arguments[0].panels)
        		me.loadPanels(arguments[0].panels);
        	if (arguments[0]['page-layout-object'])
        		me.loadLayoutObject(arguments[0]['page-layout-object']);
        }
        else
        {
        	//new object, set default fields values
        	me.setDefaultValues();
        }
a971060f   Benjamin Renard   Fix some bugs
87
        this.dirty = false;
18d4a11e   Benjamin Renard   Save and load plo...
88
89
90
91
92
    },
    
    loadPanels: function(panels)
    {
       this.panels().loadData(panels);
509bf9fa   Benjamin Renard   Replace panel ID ...
93
       this.updatePanelIndex();
18d4a11e   Benjamin Renard   Save and load plo...
94
95
96
97
    },
    
    loadLayoutObject: function(layout)
    {
a971060f   Benjamin Renard   Fix some bugs
98
99
100
    	this.set('page-layout-object', this.createLayoutByType(this.get('page-layout-type'), layout));
    	if (this.get('page-layout-object') != null)
    		this.get('page-layout-object').dirty = false;
18d4a11e   Benjamin Renard   Save and load plo...
101
102
    },
    
abe09878   Benjamin Renard   Add panels and ax...
103
    createNewPanel: function() {
dbb7bcbe   Benjamin Renard   Add curves defint...
104
105
    	this.set('last-panel-id', this.get('last-panel-id') + 1);
    	var recs = this.panels().add({id : this.get('last-panel-id')});
abe09878   Benjamin Renard   Add panels and ax...
106
    	recs[0].setDefaultValues();
a971060f   Benjamin Renard   Fix some bugs
107
    	this.dirty = true;
509bf9fa   Benjamin Renard   Replace panel ID ...
108
    	this.updatePanelIndex();
abe09878   Benjamin Renard   Add panels and ax...
109
110
111
		return recs[0];
    },
    
17433635   Benjamin Renard   Add series and sp...
112
113
114
115
116
117
    removePanelById: function(panelId) {
    	//Retrieve panel record
    	var panelRecord = this.panels().getById(panelId);
    	if (panelRecord == null)
    		return false;
    	this.panels().remove(panelRecord);
a971060f   Benjamin Renard   Fix some bugs
118
    	this.dirty = true;
509bf9fa   Benjamin Renard   Replace panel ID ...
119
    	this.updatePanelIndex();
17433635   Benjamin Renard   Add series and sp...
120
121
122
    	return true;
    },
    
509bf9fa   Benjamin Renard   Replace panel ID ...
123
124
125
126
127
128
    updatePanelIndex: function() {
    	this.panels().each(function(panel, index) {
    		panel.set('panel-index', index);
    	});
    },
    
a971060f   Benjamin Renard   Fix some bugs
129
    createLayoutByType : function(layoutType, data)
003ba315   Benjamin Renard   Add Epoch Plot an...
130
    {
003ba315   Benjamin Renard   Add Epoch Plot an...
131
132
133
134
    	//Create layout object in relation with the type
    	switch (layoutType)
    	{
    	case 'vertical' :
a971060f   Benjamin Renard   Fix some bugs
135
    		return new amdaPlotObj.PlotLayoutVerticalObject(data);
003ba315   Benjamin Renard   Add Epoch Plot an...
136
    	case 'auto' :
a971060f   Benjamin Renard   Fix some bugs
137
    		return new amdaPlotObj.PlotLayoutAutoObject(data);
003ba315   Benjamin Renard   Add Epoch Plot an...
138
    	case 'manual' :
a971060f   Benjamin Renard   Fix some bugs
139
    		return new amdaPlotObj.PlotLayoutManualObject(data);
003ba315   Benjamin Renard   Add Epoch Plot an...
140
     	default :
a971060f   Benjamin Renard   Fix some bugs
141
     		return null;
003ba315   Benjamin Renard   Add Epoch Plot an...
142
    	}
a971060f   Benjamin Renard   Fix some bugs
143
144
145
146
147
148
    },
    
    setLayout: function(layoutType)
    {
    	if (layoutType == this.get('page-layout-type'))
    		return;
003ba315   Benjamin Renard   Add Epoch Plot an...
149
    	
a971060f   Benjamin Renard   Fix some bugs
150
151
    	this.set('page-layout-type', layoutType);
    	this.set('page-layout-object', this.createLayoutByType(layoutType));
003ba315   Benjamin Renard   Add Epoch Plot an...
152
153
    },
    
437c4dbc   Benjamin Renard   First implementat...
154
155
    setDefaultValues: function()
    {
27b2a53e   Benjamin Renard   Link tab plot to ...
156
157
158
159
    	this.set('tree-simplified-view', amdaPlotObj.PlotObjectConfig.defaultValues.tree.simplifiedView);
    	
    	this.set('multi-plot-linked', false);
    	
437c4dbc   Benjamin Renard   First implementat...
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
    	this.set('page-title-text', '');
    	this.set('page-title-color', amdaPlotObj.PlotObjectConfig.defaultValues.page.title.color);
    	this.set('page-title-position', amdaPlotObj.PlotObjectConfig.defaultValues.page.title.position);
    	this.set('page-title-alignment', amdaPlotObj.PlotObjectConfig.defaultValues.page.title.alignment);
    	
    	this.set('page-title-font-activated', false);
    	this.set('page-title-font-name', amdaPlotObj.PlotObjectConfig.defaultValues.page.font.name);
    	this.set('page-title-font-size', amdaPlotObj.PlotObjectConfig.defaultValues.page.font.size);
    	this.set('page-title-font-bold', false);
    	this.set('page-title-font-italic', false);
    	
    	this.set('page-margins-activated', false);
    	this.set('page-margin-x', amdaPlotObj.PlotObjectConfig.defaultValues.page.xMargin);
    	this.set('page-margin-y', amdaPlotObj.PlotObjectConfig.defaultValues.page.yMargin);
    	this.set('page-mode', amdaPlotObj.PlotObjectConfig.defaultValues.page.mode);
    	this.set('page-orientation', amdaPlotObj.PlotObjectConfig.defaultValues.page.orientation);
    	this.set('page-dimension', amdaPlotObj.PlotObjectConfig.defaultValues.page.dimension);
    	this.set('page-superpose-mode', false);
    	this.set('page-font-activated', false);
    	this.set('page-font-name', amdaPlotObj.PlotObjectConfig.defaultValues.page.font.name);
    	this.set('page-font-size', amdaPlotObj.PlotObjectConfig.defaultValues.page.font.size);
    	this.set('page-font-bold', false);
    	this.set('page-font-italic', false);
003ba315   Benjamin Renard   Add Epoch Plot an...
183
    	
a971060f   Benjamin Renard   Fix some bugs
184
    	this.setLayout(amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.type);
437c4dbc   Benjamin Renard   First implementat...
185
186
    },
    
fd5552a4   Benjamin Renard   Info for plot ele...
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
    getPageShortInfo : function()
    {
    	var dimension = amdaPlotObj.PlotObjectConfig.getValueByKey(amdaPlotObj.PlotObjectConfig.availablePageDimensions, this.get('page-dimension'));
		var orientation = amdaPlotObj.PlotObjectConfig.getValueByKey(amdaPlotObj.PlotObjectConfig.availablePageOrientations, this.get('page-orientation'));
		
		var info = dimension+', '+orientation;
		if (this.get('page-superpose-mode'))
			info += ', Epoch superposed mode';
		return info;
    },
    
    getLayoutShortInfo : function()
    {
    	var type = amdaPlotObj.PlotObjectConfig.getValueByKey(amdaPlotObj.PlotObjectConfig.availablePageLayouts, this.get('page-layout-type'));
		return type;
    },
    
a971060f   Benjamin Renard   Fix some bugs
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
    isDirty : function()
    {
    	if (this.dirty)
    		return true;
    	
    	if (this.get('page-layout-object') != null)
    		if (this.get('page-layout-object').dirty)
    			return true;
    	
    	var d = false;
    	this.panels().each(function (panel, index) {
    		if (panel.isDirty())
    			d = true;
    	});
    	return d;
    },
    
17433635   Benjamin Renard   Add series and sp...
221
    getJsonValues : function() 
437c4dbc   Benjamin Renard   First implementat...
222
223
224
    {
    	var tabValues  = new Object();
    	
dbb7bcbe   Benjamin Renard   Add curves defint...
225
    	tabValues['id'] = this.get('id');
27b2a53e   Benjamin Renard   Link tab plot to ...
226
227
    	tabValues['tree-simplified-view'] = this.get('tree-simplified-view');
    	tabValues['multi-plot-linked'] = this.get('multi-plot-linked');
2a0b8d2c   Benjamin Renard   Restore node stat...
228
229
    	tabValues['page-node-state'] = this.get('page-node-state');
    	tabValues['panels-node-state'] = this.get('panels-node-state');
437c4dbc   Benjamin Renard   First implementat...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
    	tabValues['page-title-text'] = this.get('page-title-text');
    	tabValues['page-title-color'] = this.get('page-title-color');
    	tabValues['page-title-position'] = this.get('page-title-position');
    	tabValues['page-title-alignment'] = this.get('page-title-alignment');
    	tabValues['page-title-font-activated'] = this.get('page-title-font-activated');
    	tabValues['page-title-font-name'] = this.get('page-title-font-name');
    	tabValues['page-title-font-size'] = this.get('page-title-font-size');
    	tabValues['page-title-font-bold'] = this.get('page-title-font-bold');
    	tabValues['page-title-font-italic'] = this.get('page-title-font-italic');
    	tabValues['page-margins-activated'] = this.get('page-margins-activated');
    	tabValues['page-margin-x'] = this.get('page-margin-x');
    	tabValues['page-margin-y'] = this.get('page-margin-y');
    	tabValues['page-mode'] = this.get('page-mode');
    	tabValues['page-orientation'] = this.get('page-orientation');
    	tabValues['page-dimension'] = this.get('page-dimension');
    	tabValues['page-superpose-mode'] = this.get('page-superpose-mode');
    	tabValues['page-font-activated'] = this.get('page-font-activated');
    	tabValues['page-font-name'] = this.get('page-font-name');
    	tabValues['page-font-size'] = this.get('page-font-size');
    	tabValues['page-font-bold'] = this.get('page-font-bold');
    	tabValues['page-font-italic'] = this.get('page-font-italic');
    	
27b2a53e   Benjamin Renard   Link tab plot to ...
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
    	tabValues['timesrc'] =  this.get('timesrc');       
        // if there's at least one timeTable name into 'timeTables' collection
        if (this.get('timesrc') == amdaModel.AmdaTimeObject.inputTimeSrc[0] && this.get('timeTables') && this.get('timeTables').length){
            // get complete timeTables collection
            var timeTables = this.get('timeTables');	    
            // init an empty array for timeTables
            tabValues['timeTables'] = [];
            // for each interval record
            Ext.Array.each(timeTables, function(item, index, all){
            	if (!item.$className) {
            		tabValues['timeTables'][index] = {timeTableName : item.timeTableName, id : item.id};
            	}
            	// get Json simplified value 
            	else {
            		tabValues['timeTables'][index] = item.getJsonValues();
            	}
            });            
        } else {
        	tabValues['startDate'] = this.get('startDate');	
            tabValues['stopDate'] = this.get('stopDate'); 
            tabValues['durationDay'] = this.get('durationDay');
            tabValues['durationHour'] = this.get('durationHour');
            tabValues['durationMin'] = this.get('durationMin');
            tabValues['durationSec'] = this.get('durationSec');
        }
    	
003ba315   Benjamin Renard   Add Epoch Plot an...
278
279
280
281
    	tabValues['page-layout-type'] = this.get('page-layout-type');
    	if (this.get('page-layout-object') != null)
    		tabValues['page-layout-object'] = this.get('page-layout-object').getJsonValues();
    	
abe09878   Benjamin Renard   Add panels and ax...
282
283
284
285
286
287
    	tabValues['panels'] = [];
    	
    	this.panels().each(function (panel, index) {
    		tabValues['panels'][index] = panel.getJsonValues();
    	});
    	
dbb7bcbe   Benjamin Renard   Add curves defint...
288
289
    	tabValues['last-panel-id'] = this.get('last-panel-id');
    	
437c4dbc   Benjamin Renard   First implementat...
290
291
292
    	return tabValues;
    }
});