Blame view

js/app/models/PlotObjects/PlotObjectConfig.js 13.2 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 : {
8816e270   Elena.Budnik   simplified vies c...
26
			fullView : false
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
		},
		serie : {
			yAxis : 'y-left',
8b1dd478   Benjamin Renard   Add the possibili...
86
			resolution : 3000,
17433635   Benjamin Renard   Add series and sp...
87
88
89
90
91
92
93
			lines : {
				style : 'plain',
				width : 1,
				color : 'auto'
			},
			symbols : {
				type : 'dot',
003ba315   Benjamin Renard   Add Epoch Plot an...
94
				size : 3,
17433635   Benjamin Renard   Add series and sp...
95
				color : 'auto'
003ba315   Benjamin Renard   Add Epoch Plot an...
96
			},
24b02d83   Benjamin Renard   Add definition of...
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
			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...
116
					size: '8'
24b02d83   Benjamin Renard   Add definition of...
117
				}
e84ed2cf   Benjamin Renard   Add Interval Tick...
118
119
120
121
122
123
124
125
126
127
128
			},
			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...
129
					size: '8'
e84ed2cf   Benjamin Renard   Add Interval Tick...
130
131
132
133
134
135
136
137
138
139
140
				}
			},
			errorbar : {
				type: 'min-max',
				lines : {
					style : 'plain',
					width : 1,
					color : 'auto'
				}
			},
			projection : 'XY'
17433635   Benjamin Renard   Add series and sp...
141
142
		},
		spectro : {
828dd660   Benjamin Renard   Give the possibil...
143
144
			yAxis : 'y-left',
			resolution : 3000
94abdb37   Benjamin Renard   Add params legend...
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
		},
		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...
161
					size: '8'
94abdb37   Benjamin Renard   Add params legend...
162
				}
339866c4   Benjamin Renard   Add text legend d...
163
164
165
166
167
168
			},
			text : {
				position : 'left',
				color : '#000000',
				font : {
					name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
169
					size: '8'
339866c4   Benjamin Renard   Add text legend d...
170
				}
94abdb37   Benjamin Renard   Add params legend...
171
			}
829160b3   Benjamin Renard   Add constants def...
172
173
174
175
176
177
178
179
		},
		constants : {
			axisId : 'y-left',
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
a8c54fb9   Benjamin Renard   Add text object p...
180
181
182
183
184
185
186
187
188
		},
		textObjs : {
			yAxisId   : 'y-left',
			xRelative : true,
			yRelative : true,
			align : 'left',
			color : '#000000',
			font : {
				name : 'sans-serif',
33ce72a7   Benjamin Renard   Do not show argum...
189
				size: '8'
a8c54fb9   Benjamin Renard   Add text object p...
190
			}
dbb7bcbe   Benjamin Renard   Add curves defint...
191
192
193
194
195
196
197
		},
		curves : {
			line : {
				style : 'plain',
				width : 1,
				color : '#000000'
			}
486cc3c7   Benjamin Renard   Add fill elements...
198
199
200
201
202
		},
		fills : {
			type : 'serie-constant',
			greaterColor : 'none',
			lessColor : 'none'
437c4dbc   Benjamin Renard   First implementat...
203
204
205
		}
	},
	
dbb7bcbe   Benjamin Renard   Add curves defint...
206
207
208
209
210
211
212
213
214
215
216
217
218
	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...
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
	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...
243
	         	   {'key' : 'landscape', 'value' : 'Landscape'},
437c4dbc   Benjamin Renard   First implementat...
244
245
246
247
248
249
250
251
	        	   {'key' : 'portrait', 'value' : 'Portrait'}
	],
	
	availablePageDimensions : [
	       	       {'key' : 'ISO A4', 'value' : 'ISO A4'},
	    	       {'key' : 'US letter', 'value' : 'US letter'}      
	],
	
abe09878   Benjamin Renard   Add panels and ax...
252
253
254
255
256
257
258
259
260
	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...
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
	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...
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
	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...
295
296
297
    availableYAxes : [
                   {'key' : 'y-left', 'value' : 'Left'},
                   {'key' : 'y-right', 'value' : 'Right'}
8b1dd478   Benjamin Renard   Add the possibili...
298
299
300
301
302
303
304
305
	],

    availableResolutions : [
                   {'key' : 3000, 'value' : '3000'},
                   {'key' : 10000, 'value' : '10000'},
                   {'key' : 50000, 'value' : '50000'},
                   {'key' : 100000, 'value' : '100000'}
    ],
17433635   Benjamin Renard   Add series and sp...
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
    
    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...
332
333
334
335
336
337
338
    availableColorMaps : [
                   {'key' : '0', 'value' : 'Default'},
                   {'key' : '1', 'value' : 'Blue Red'},
                   {'key' : '2', 'value' : 'Blue Yellow'},
                   {'key' : '3', 'value' : 'Grayscale'}
	],
	
437c4dbc   Benjamin Renard   First implementat...
339
	availableColors : [
1910a90a   Elena.Budnik   added auto value ...
340
						{'key' : 'auto', 'color' : 'auto', 'value' : 'auto'},
ced82260   Benjamin Renard   Get initial plot ...
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
	               {'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...
357
358
359
	],
	
	availableBackgroundColors : [
a0bf9157   Benjamin Renard   Add tick plot and...
360
361
		           {'color' : 'none', 'value' : 'None'},
		           {'color' : '#0000FF', 'value' : 'Blue'},
24b02d83   Benjamin Renard   Add definition of...
362
363
		           {'color' : '#FF0000', 'value' : 'Red'},
		           {'color' : '#00FF00', 'value' : 'Green'}
a0bf9157   Benjamin Renard   Add tick plot and...
364
365
366
367
368
	],
	
	availableStatusBarPositions : [
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
17433635   Benjamin Renard   Add series and sp...
369
370
	],
	
a0bf9157   Benjamin Renard   Add tick plot and...
371
372
373
374
	availableStatusBarColorMaps : [
                   {'key' : '0', 'value' : '0'},
                   {'key' : '1', 'value' : '1'},
                   {'key' : '2', 'value' : '2'}
003ba315   Benjamin Renard   Add Epoch Plot an...
375
376
377
378
379
380
381
382
383
384
385
	],
	
	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...
386
387
    ],
    
e84ed2cf   Benjamin Renard   Add Interval Tick...
388
389
390
391
392
393
394
395
396
	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...
397
398
399
    availableDimsOnXAxis : [
                   {'key' : '0', 'value' : 'First dimension'},
                   {'key' : '1', 'value' : 'Second dimension'}  
24b02d83   Benjamin Renard   Add definition of...
400
401
402
403
404
405
    ],
    
    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...
406
    ],
e84ed2cf   Benjamin Renard   Add Interval Tick...
407
408
409
410
411
412
413
414
415
416
417
418
	
	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...
419
420
421
422
423
424
425
426
427
428
429
430
431
432
    
    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...
433
434
435
436
437
438
439
	],
	
	availableLegendTextPositions : [
                   {'key' : 'right', 'value' : 'Right'},
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'top', 'value' : 'Top'},
                   {'key' : 'bottom', 'value' : 'Bottom'}
829160b3   Benjamin Renard   Add constants def...
440
441
442
443
444
445
	],
	
	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...
446
447
448
449
450
451
    ],
    
    availableTextAlignments : [
                   {'key' : 'left', 'value' : 'Left'},
                   {'key' : 'center', 'value' : 'Center'},
                   {'key' : 'right', 'value' : 'Right'}
486cc3c7   Benjamin Renard   Add fill elements...
452
453
454
455
456
    ],
    
    availableFillTypes : [
	               {'key' : 'serie-constant', 'value' : 'Serie / Constant'},
	               {'key' : 'serie-serie', 'value' : 'Serie / Serie'}    
ced82260   Benjamin Renard   Get initial plot ...
457
458
459
460
461
462
463
	],
	
	getParamConfig : function(paramId, onParamConfigLoaded) {
		AmdaAction.getParamPlotInit({"paramId" : paramId}, function (result, e) {
			onParamConfigLoaded(result.success, result.data);
		});
	}
28660257   Benjamin Renard   Reduce default ma...
464
});