Blame view

js/app/models/PlotObjects/PlotObjectConfig.js 12.9 KB
437c4dbc   Benjamin Renard   First implementat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * Project      : AMDA-NG
 * Name         : PlotObjectConfig.js
 * @class   amdaPlotObj.PlotObjectConfig
 * @extends Ext.data.Model
 * @brief   Plot Request object configuration 
 * @author  Benjamin Renard
 * @version $Id: PlotObjectConfig.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :21/07/2015: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotObjectConfig', {
	singleton: true,
	
	defaultValues : {
		file : {
			format : 'PNG',
			output : 'INTERACTIVE',
			oneFilePerInterval: false
		},
27b2a53e   Benjamin Renard   Link tab plot to ...
25
		tree : {
ce38e649   Elena.Budnik   redmine #5766
26
			simplifiedView : true
27b2a53e   Benjamin Renard   Link tab plot to ...
27
		},
437c4dbc   Benjamin Renard   First implementat...
28
		page : {
28660257   Benjamin Renard   Reduce default ma...
29
30
			xMargin : 5.,
			yMargin : 5.,
437c4dbc   Benjamin Renard   First implementat...
31
32
33
34
35
36
37
38
39
40
			mode : 'color',
			orientation: 'landscape',
			dimension : 'ISO A4',
			title : {
				position: 'top',
				alignment: ' center',
				color: '#000000'
			},
			font : {
				name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
41
				size: '8'
003ba315   Benjamin Renard   Add Epoch Plot an...
42
43
44
45
			},
			layout : {
				type : 'vertical',
				panelHeight  : 0.5,
28660257   Benjamin Renard   Reduce default ma...
46
47
48
				panelSpacing : 0.,
				expand : false,
				timeAxesLegend : true
437c4dbc   Benjamin Renard   First implementat...
49
			}
abe09878   Benjamin Renard   Add panels and ax...
50
51
52
		},
		panel : {
			plotType : 'timePlot',
ced82260   Benjamin Renard   Get initial plot ...
53
			isotropic : false,
abe09878   Benjamin Renard   Add panels and ax...
54
			title : {
33ce72a7   Benjamin Renard   Do not show argum...
55
				position: 'top',
abe09878   Benjamin Renard   Add panels and ax...
56
57
58
59
60
				alignment: ' center',
				color: '#000000'
			},
			font : {
				name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
61
				size: '8'
abe09878   Benjamin Renard   Add panels and ax...
62
			},
a0bf9157   Benjamin Renard   Add tick plot and...
63
64
65
66
67
			backgroundColor : 'none',
			status : {
				position : 'top',
				colorMap : 0
			}
abe09878   Benjamin Renard   Add panels and ax...
68
69
70
71
72
73
74
75
76
77
		},
		axis : {
			scale : 'linear',
			tickPosition : 'outwards',
			color : '#000000',
			thickness : '1',
			legend : {
				color: '#000000',
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
78
					size: '8'
abe09878   Benjamin Renard   Add panels and ax...
79
80
81
82
				}
			},
			timeFormat : 'dd/mm/yy',
			colorMap : '1'
17433635   Benjamin Renard   Add series and sp...
83
84
85
86
87
88
89
90
91
92
		},
		serie : {
			yAxis : 'y-left',
			lines : {
				style : 'plain',
				width : 1,
				color : 'auto'
			},
			symbols : {
				type : 'dot',
003ba315   Benjamin Renard   Add Epoch Plot an...
93
				size : 3,
17433635   Benjamin Renard   Add series and sp...
94
				color : 'auto'
003ba315   Benjamin Renard   Add Epoch Plot an...
95
			},
24b02d83   Benjamin Renard   Add definition of...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
			resamplingMode : 'xparam',
			timetick : {
				type: 'auto',
				step: 3600,
				nbmajor : 5,
				nbminor : 5,
				color : '#FF0000',
				symbols : {
					type: 'full-circle',
					size: 10,
					color: '#FF0000'
				},
				firstsymbols : {
					type: 'triangle',
					size: 4,
					color: '#00FF00'
				},
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
115
					size: '8'
24b02d83   Benjamin Renard   Add definition of...
116
				}
e84ed2cf   Benjamin Renard   Add Interval Tick...
117
118
119
120
121
122
123
124
125
126
127
			},
			intervaltick : {
				mode: 'start-time',
				color : '#FF0000',
				symbols : {
					type: 'full-circle',
					size: 10,
					color: '#FF0000'
				},
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
128
					size: '8'
e84ed2cf   Benjamin Renard   Add Interval Tick...
129
130
131
132
133
134
135
136
137
138
139
				}
			},
			errorbar : {
				type: 'min-max',
				lines : {
					style : 'plain',
					width : 1,
					color : 'auto'
				}
			},
			projection : 'XY'
17433635   Benjamin Renard   Add series and sp...
140
141
142
		},
		spectro : {
			yAxis : 'y-left'
94abdb37   Benjamin Renard   Add params legend...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
		},
		legends : {
			series : {
				type : 'text-only',
				position : 'outside',
				text: {
					color : '#000000'
				},
				border: {
					color : '#000000'
				},
				intervalinfo : {
					type : 'start-stop'
				},
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
159
					size: '8'
94abdb37   Benjamin Renard   Add params legend...
160
				}
339866c4   Benjamin Renard   Add text legend d...
161
162
163
164
165
166
			},
			text : {
				position : 'left',
				color : '#000000',
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
167
					size: '8'
339866c4   Benjamin Renard   Add text legend d...
168
				}
94abdb37   Benjamin Renard   Add params legend...
169
			}
829160b3   Benjamin Renard   Add constants def...
170
171
172
173
174
175
176
177
		},
		constants : {
			axisId : 'y-left',
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
a8c54fb9   Benjamin Renard   Add text object p...
178
179
180
181
182
183
184
185
186
		},
		textObjs : {
			yAxisId   : 'y-left',
			xRelative : true,
			yRelative : true,
			align : 'left',
			color : '#000000',
			font : {
				name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
187
				size: '8'
a8c54fb9   Benjamin Renard   Add text object p...
188
			}
dbb7bcbe   Benjamin Renard   Add curves defint...
189
190
191
192
193
194
195
		},
		curves : {
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
486cc3c7   Benjamin Renard   Add fill elements...
196
197
198
199
200
		},
		fills : {
			type : 'serie-constant',
			greaterColor : 'none',
			lessColor : 'none'
437c4dbc   Benjamin Renard   First implementat...
201
202
203
		}
	},
	
dbb7bcbe   Benjamin Renard   Add curves defint...
204
205
206
207
208
209
210
211
212
213
214
215
216
	getValueByKey : function(dataList, key)
	{
		var value = '';
		Ext.each(dataList, function (data) {
			if (data.key == key)
			{
				value = data.value;
				return;
			}
		});
		return value;
	},
	
437c4dbc   Benjamin Renard   First implementat...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
	availableFileFormats : [
	               {'key' : 'PNG', 'value' : 'PNG'},
	               {'key' : 'PDF', 'value' : 'PDF'},
	               {'key' : 'PS', 'value' : 'PS'},
	               {'key' : 'SVG', 'value' : 'SVG'}
	],
	
	availableFileOutputsForPng : [
	               {'key' : 'INTERACTIVE', 'value' : 'Interactive mode'},
	               {'key' : 'TGZ', 'value' : 'tar+gzip archive'},
	               {'key' : 'ZIP', 'value' : 'zip archive'}
	],
	
	availableFileOutputsForOtherFormats : [
	           	   {'key' : 'TGZ', 'value' : 'tar+gzip archive'},
	           	   {'key' : 'ZIP', 'value' : 'zip archive'}
	],
	
	availablePageModes : [
	               {'key' : 'color', 'value' : 'Color'},
	               {'key' : 'grayscale', 'value' : 'Grayscale'}
	],
	
	availablePageOrientations : [
28660257   Benjamin Renard   Reduce default ma...
241
	         	   {'key' : 'landscape', 'value' : 'Landscape'},
437c4dbc   Benjamin Renard   First implementat...
242
243
244
245
246
247
248
249
	        	   {'key' : 'portrait', 'value' : 'Portrait'}
	],
	
	availablePageDimensions : [
	       	       {'key' : 'ISO A4', 'value' : 'ISO A4'},
	    	       {'key' : 'US letter', 'value' : 'US letter'}      
	],
	
abe09878   Benjamin Renard   Add panels and ax...
250
251
252
253
254
255
256
257
258
	availablePlotTypes : [
   	               {'key' : 'timePlot', value : 'Time Plot'},
   	               {'key' : 'xyPlot', value : 'Scatter Plot'},
	               {'key' : 'epochPlot', value : 'Epoch Plot'},
	               {'key' : 'instantPlot', value : 'Instant Plot'},
	               {'key' : 'statusPlot', value : 'Status Plot'},
	               {'key' : 'tickPlot', value : 'Tick Plot'}
	],
	
437c4dbc   Benjamin Renard   First implementat...
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
	availableFontNames : [
	        	   {'key' : 'sans-serif', 'value' : 'sans-serif'},
	        	   {'key' : 'serif', 'value' : 'serif'},
	        	   {'key' : 'monospace', 'value' : 'monospace'},
	        	   {'key' : 'script', 'value' : 'script'}
	],
	
	availableTitlePositions : [
	     	       {'key' : 'top', 'value' : 'Top'},
	     	       {'key' : 'bottom', 'value' : 'Bottom'}
	],
	
	availableTitleAlignments : [
	               {'key' : 'center', 'value' : 'Center'},
	               {'key' : 'left', 'value' : 'Left'},
	               {'key' : 'right', 'value' : 'Right'}
	],
	
abe09878   Benjamin Renard   Add panels and ax...
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
	availableAxisScales : [
	               {'key' : 'linear', 'value' : 'Linear'},
	               {'key' : 'logarithmic', 'value' : 'Logarithmic'}
    ],
    
    availableTicksPositions : [
                   {'key' : 'inwards', 'value' : 'Inwards'},
                   {'key' : 'outwards', 'value' : 'Outwards'}
    ],
    
    availableTimeAxisFormats : [
                   {'key' : 'dd/mm/yy', 'value' : 'dd/mm/yy'},
                   {'key' : 'ddd/yy', 'value' : 'ddd/yy'},
                   {'key' : 'DD/MM/YYYY', 'value' : 'DD/MM/YYYY'}
    ],
    
17433635   Benjamin Renard   Add series and sp...
293
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
    availableYAxes : [
                   {'key' : 'y-left', 'value' : 'Left'},
                   {'key' : 'y-right', 'value' : 'Right'}
	], 
    
    availableLinesStyles : [
                   {'key' : 'plain', 'value' : 'Plain'},
                   {'key' : 'dot', 'value' : 'Dot'},
                   {'key' : 'long-spaced-dot', 'value' : 'Long spaced dot'},
                   {'key' : 'long-short-dot', 'value' : 'Long short dot'}
	],
	
	availableSymbolsTypes : [
	               {'key' : 'dot', 'value' : 'Dot'},
	               {'key' : 'plus', 'value' : 'Plus'},
	               {'key' : 'wildcard', 'value' : 'Wildcard'},
	               {'key' : 'circle', 'value' : 'Circle'},
	               {'key' : 'crux', 'value' : 'Crux'},
	               {'key' : 'square', 'value' : 'Square'},
	               {'key' : 'triangle', 'value' : 'Triangle'},
	               {'key' : 'crux-in-circle', 'value' : 'Crux in circle'},
	               {'key' : 'dot-in-circle', 'value' : 'Dot in circle'},
	               {'key' : 'diamond', 'value' : 'Diamond'},
	               {'key' : 'star', 'value' : 'Star'},
	               {'key' : 'david-star', 'value' : 'David star'},
	               {'key' : 'full-square', 'value' : 'Full square'},
	               {'key' : 'full-circle', 'value' : 'Full circle'},
	               {'key' : 'full-star', 'value' : 'Full star'}
    ],
    
abe09878   Benjamin Renard   Add panels and ax...
323
324
325
326
327
328
329
    availableColorMaps : [
                   {'key' : '0', 'value' : 'Default'},
                   {'key' : '1', 'value' : 'Blue Red'},
                   {'key' : '2', 'value' : 'Blue Yellow'},
                   {'key' : '3', 'value' : 'Grayscale'}
	],
	
437c4dbc   Benjamin Renard   First implementat...
330
	availableColors : [
1910a90a   Elena.Budnik   added auto value ...
331
						{'key' : 'auto', 'color' : 'auto', 'value' : 'auto'},
ced82260   Benjamin Renard   Get initial plot ...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
	               {'key' : '[0,0,0]', 'color' : '#000000', 'value' : 'Black'},
	               {'key' : '[0,0,255]', 'color' : '#0000ff', 'value' : 'Blue'},
	               {'key' : '[255,0,0]', 'color' : '#ff0000', 'value' : 'Red'},
	               {'key' : '[0,255,255]', 'color' : '#00ffff', 'value' : 'Cyan'},
	               {'key' : '[255,0,255]', 'color' : '#ff00ff', 'value' : 'Magenta'},
	               {'key' : '[0,128,0]', 'color' : '#008000', 'value' : 'Green'},
	               {'key' : '[128,128,128]', 'color' : '#808080', 'value' : 'Gray'},
	               {'key' : '[0,255,0]', 'color' : '#00ff00', 'value' : 'Lime'},
	               {'key' : '[128,0,0]', 'color' : '#800000', 'value' : 'Maroon'},
	               {'key' : '[0,0,128]', 'color' : '#000080', 'value' : 'Navy'},
	               {'key' : '[128,128,0]', 'color' : '#808000', 'value' : 'Olive'},
	               {'key' : '[128,0,128]', 'color' : '#800080', 'value' : 'Purple'},
	               {'key' : '[192,192,192]', 'color' : '#c0c0c0', 'value' : 'Silver'},
	               {'key' : '[0,128,128]', 'color' : '#008080', 'value' : 'Teal'},
	               {'key' : '[255,255,0]', 'color' : '#ffff00', 'value' : 'Yellow'},
	               {'key' : '[0,64,64]', 'color' : '#004040', 'value' : 'Cyprus'}
abe09878   Benjamin Renard   Add panels and ax...
348
349
350
	],
	
	availableBackgroundColors : [
a0bf9157   Benjamin Renard   Add tick plot and...
351
352
		           {'color' : 'none', 'value' : 'None'},
		           {'color' : '#0000FF', 'value' : 'Blue'},
24b02d83   Benjamin Renard   Add definition of...
353
354
		           {'color' : '#FF0000', 'value' : 'Red'},
		           {'color' : '#00FF00', 'value' : 'Green'}
a0bf9157   Benjamin Renard   Add tick plot and...
355
356
357
358
359
	],
	
	availableStatusBarPositions : [
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
17433635   Benjamin Renard   Add series and sp...
360
361
	],
	
a0bf9157   Benjamin Renard   Add tick plot and...
362
363
364
365
	availableStatusBarColorMaps : [
                   {'key' : '0', 'value' : '0'},
                   {'key' : '1', 'value' : '1'},
                   {'key' : '2', 'value' : '2'}
003ba315   Benjamin Renard   Add Epoch Plot an...
366
367
368
369
370
371
372
373
374
375
376
	],
	
	availablePageLayouts : [
                   {'key' : 'vertical', 'value' : 'Vertical'},
                   {'key' : 'auto', 'value' : 'Auto'},
                   {'key' : 'manual', 'value' : 'Manual'}
    ],
    
    availableResamplingModes : [
                   {'key' : 'xparam', 'value' : 'X Parameter'},
                   {'key' : 'yparam', 'value' : 'Y Parameter'}
6a801541   Benjamin Renard   Add possibility t...
377
378
    ],
    
e84ed2cf   Benjamin Renard   Add Interval Tick...
379
380
381
382
383
384
385
386
387
	availableOrbitSerieProjections : [
                   {'key' : 'XY', 'value' : 'XY'},
                   {'key' : 'XZ', 'value' : 'XZ'},
                   {'key' : 'YZ', 'value' : 'YZ'},
                   {'key' : 'XR', 'value' : 'XR'},
                   {'key' : 'YR', 'value' : 'YR'},
                   {'key' : 'ZR', 'value' : 'ZR'}			   
    ],
	
6a801541   Benjamin Renard   Add possibility t...
388
389
390
    availableDimsOnXAxis : [
                   {'key' : '0', 'value' : 'First dimension'},
                   {'key' : '1', 'value' : 'Second dimension'}  
24b02d83   Benjamin Renard   Add definition of...
391
392
393
394
395
396
    ],
    
    availableTimeTickTypes : [
                   {'key' : 'auto', 'value' : 'Auto'},
                   {'key' : 'time-step', 'value' : 'Time step'},
                   {'key' : 'nb-major', 'value' : 'Num. of major symb.'}
94abdb37   Benjamin Renard   Add params legend...
397
    ],
e84ed2cf   Benjamin Renard   Add Interval Tick...
398
399
400
401
402
403
404
405
406
407
408
409
	
	availableIntervalTickModes : [
                   {'key' : 'symbol-only', 'value' : 'Symbol only'},
                   {'key' : 'interval-index', 'value' : 'Interval index'},
                   {'key' : 'start-time', 'value' : 'Start time'},
				   {'key' : 'start-stop-time', 'value' : 'Start/Stop times'}
    ],
	
	availableErrorBarTypes : [
                   {'key' : 'min-max', 'value' : 'Min./Max. Parameters'},
				   {'key' : 'delta', 'value' : 'Delta parameter'}
    ],
94abdb37   Benjamin Renard   Add params legend...
410
411
412
413
414
415
416
417
418
419
420
421
422
423
    
    availableLegendSeriesTypes : [
	               {'key' : 'text-line-symbol', 'value' : 'Text, Line & Symbols'},
                   {'key' : 'text-only', 'value' : 'Text only'}
    ],
    
    availableLegendSeriesPositions : [
                   {'key' : 'inside', 'value' : 'Inside'},
                   {'key' : 'outside', 'value' : 'Outside'}
    ],
    
    availableLegendSeriesIntervalInfoTypes : [
                   {'key' : 'index', 'value' : 'Interval Index'},
                   {'key' : 'start-stop', 'value' : 'Interval Start/Stop'}
339866c4   Benjamin Renard   Add text legend d...
424
425
426
427
428
429
430
	],
	
	availableLegendTextPositions : [
                   {'key' : 'right', 'value' : 'Right'},
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
829160b3   Benjamin Renard   Add constants def...
431
432
433
434
435
436
	],
	
	availableConstantAxes : [
	               {'key' : 'x', 'value' : 'X / Time / Epoch'},
	               {'key' : 'y-left', 'value' : 'Y Left'},
	               {'key' : 'y-right', 'value' : 'Y Right'}
a8c54fb9   Benjamin Renard   Add text object p...
437
438
439
440
441
442
    ],
    
    availableTextAlignments : [
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'center', 'value' : 'Center'},
                   {'key' : 'right', 'value' : 'Right'}
486cc3c7   Benjamin Renard   Add fill elements...
443
444
445
446
447
    ],
    
    availableFillTypes : [
	               {'key' : 'serie-constant', 'value' : 'Serie / Constant'},
	               {'key' : 'serie-serie', 'value' : 'Serie / Serie'}    
ced82260   Benjamin Renard   Get initial plot ...
448
449
450
451
452
453
454
	],
	
	getParamConfig : function(paramId, onParamConfigLoaded) {
		AmdaAction.getParamPlotInit({"paramId" : paramId}, function (result, e) {
			onParamConfigLoaded(result.success, result.data);
		});
	}
28660257   Benjamin Renard   Reduce default ma...
455
});