Blame view

js/app/views/CatalogVisuScatter.js 6.47 KB
33705dc4   Benjamin Renard   Catalog visu rework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Project       AMDA-NG
 * Name          CatalogVisuScatter.js
 * @class 	   amdaUI.CatalogVisuScatter
 * @extends      Ext.container.Container
 * @brief	   Scatter Visualization Module UI definition (View)
 * @author 	  elena
 */

Ext.define('amdaUI.CatalogVisuScatter', {
	extend: 'Ext.form.Panel',
	alias: 'widget.panelCatalogVisuScatter',

	constructor: function(config) {
		this.init(config);
		this.callParent(arguments);
	},

b0720b91   Benjamin Renard   Finalize catalog ...
19
  getChartConfig: function(catalogStore) {
1a0151a5   Benjamin Renard   wip
20
21
22
23
24
    var plotTypeField = Ext.getCmp('visu-scatter-type');
    var plotType = plotTypeField.getValue();

    var plotColorField = Ext.getCmp('visu-scatter-color');
    plotColor = plotColorField.getValue();
33705dc4   Benjamin Renard   Catalog visu rework
25

903e5e09   Benjamin Renard   WIP
26
27
    var xAxisOpt = this.getAxisOptions('X');
    var yAxisOpt = this.getAxisOptions('Y');
33705dc4   Benjamin Renard   Catalog visu rework
28

b0720b91   Benjamin Renard   Finalize catalog ...
29
30
31
32
33
34
35
36
37
38
    if ((!xAxisOpt.paramId) || (xAxisOpt.paramId == '')) {
      myDesktopApp.errorMsg('Missing parameter selection for X axis');
      return null;
    }

    if ((!yAxisOpt.paramId) || (yAxisOpt.paramId == '')) {
      myDesktopApp.errorMsg('Missing parameter selection for Y axis');
      return null;
    }

33705dc4   Benjamin Renard   Catalog visu rework
39
40
41
42
    var chartConfig = {
			animate: false,
			mask: false,
			shadow: false,
1a0151a5   Benjamin Renard   wip
43
			theme: plotColor,
33705dc4   Benjamin Renard   Catalog visu rework
44
			background: { fill : "#fff" },
1a0151a5   Benjamin Renard   wip
45
			store: catalogStore,
903e5e09   Benjamin Renard   WIP
46
      id: 'visu-chart',
33705dc4   Benjamin Renard   Catalog visu rework
47
48
49
50
			axes:   [{
				type: 'Numeric',
				position: 'bottom',
				fields: [],
903e5e09   Benjamin Renard   WIP
51
				title: xAxisOpt.title,
33705dc4   Benjamin Renard   Catalog visu rework
52
53
54
55
56
				grid : true
			}, {
				type: 'Numeric',
				position: 'left',
				fields: [],
903e5e09   Benjamin Renard   WIP
57
				title: yAxisOpt.title,
33705dc4   Benjamin Renard   Catalog visu rework
58
59
60
61
62
63
				grid: true
			}],
			series: [{
				type: 'scatter',
				showMarkers: true,
				highlight: true,
1a0151a5   Benjamin Renard   wip
64
65
66
				xField: xAxisOpt.paramId,
				yField: yAxisOpt.paramId,
        type: plotType,
33705dc4   Benjamin Renard   Catalog visu rework
67
				tips: {
33705dc4   Benjamin Renard   Catalog visu rework
68
					height: 20,
b0720b91   Benjamin Renard   Finalize catalog ...
69
70
					hideDelay: 200,
					mouseOffset: [0,0],
33705dc4   Benjamin Renard   Catalog visu rework
71
					renderer: function(storeItem, item) {
b0720b91   Benjamin Renard   Finalize catalog ...
72
						this.setTitle('['+storeItem.get('start').toISOString() + ', ' + storeItem.get('stop').toISOString() + ']');
33705dc4   Benjamin Renard   Catalog visu rework
73
74
75
76
77
					}
				}
			}]
		};

1a0151a5   Benjamin Renard   wip
78
79
80
81
82
83
84
85
86
87
    if (xAxisOpt.range) {
      chartConfig.axes[0].minimum = xAxisOpt.range.min;
      chartConfig.axes[0].maximum = xAxisOpt.range.max;
    }

    if (yAxisOpt.range) {
      chartConfig.axes[1].minimum = yAxisOpt.range.min;
      chartConfig.axes[1].maximum = yAxisOpt.range.max;
    }

b0720b91   Benjamin Renard   Finalize catalog ...
88
    return chartConfig;
33705dc4   Benjamin Renard   Catalog visu rework
89
90
  },

33705dc4   Benjamin Renard   Catalog visu rework
91
  getAxisOptions: function(axisName) {
903e5e09   Benjamin Renard   WIP
92
    var opt = {
1a0151a5   Benjamin Renard   wip
93
      paramId: '',
903e5e09   Benjamin Renard   WIP
94
95
      title: axisName+' axis'
    };
33705dc4   Benjamin Renard   Catalog visu rework
96

903e5e09   Benjamin Renard   WIP
97
98
99
100
101
    var axisParamField = Ext.getCmp('visu-scatter-' + axisName + '-param');
    var paramFieldId = axisParamField.getValue();
    if (paramFieldId && (paramFieldId != "")) {
      var paramField = axisParamField.getStore().getById(axisParamField.getValue());
      if (paramField) {
b0720b91   Benjamin Renard   Finalize catalog ...
102
        opt.paramId = paramField.get('id');
738e0997   Benjamin Renard   Draw histogram
103
				opt.title = paramField.get('name');
903e5e09   Benjamin Renard   WIP
104
105
      }
    }
33705dc4   Benjamin Renard   Catalog visu rework
106
107

    var axisTitleField = Ext.getCmp('visu-scatter-'+axisName+'-title');
903e5e09   Benjamin Renard   WIP
108
109
110
111
112
    var axisTitle = axisTitleField.getValue();
    if (axisTitle && (axisTitle != "")) {
      opt.title = axisTitle;
    }

1a0151a5   Benjamin Renard   wip
113
114
115
116
117
118
119
120
121
122
123
124
    var axisScalingField = Ext.getCmp('visu-scatter-'+axisName+'-scaling');
    var axisScaling = axisScalingField.getValue();
    if (axisScaling == 'manual') {
      var axisRangeMinField = Ext.getCmp('visu-scatter-' + axisName + '-range-min');
      var axisRangeMin = axisRangeMinField.getValue();
      var axisRangeMaxField = Ext.getCmp('visu-scatter-' + axisName + '-range-max');
      var axisRangeMax = axisRangeMaxField.getValue();
      opt.range = {
        'min' : axisRangeMin,
        'max' : axisRangeMax
      };
    }
903e5e09   Benjamin Renard   WIP
125
    return opt;
33705dc4   Benjamin Renard   Catalog visu rework
126
127
128
129
130
131
132
133
134
  },

	getAxisConfig: function(axisIndex, axisName, parametersStore) {
		var paramComboConfig = {
			xtype: 'combo',
			emptyText: 'select parameter',
			editable: false,
			store: parametersStore,
			queryMode: 'local',
b0720b91   Benjamin Renard   Finalize catalog ...
135
			displayField: 'name',
33705dc4   Benjamin Renard   Catalog visu rework
136
137
			valueField: 'id',
			axisIndex: axisIndex,
b0720b91   Benjamin Renard   Finalize catalog ...
138
      id: 'visu-scatter-' + axisName + '-param'
33705dc4   Benjamin Renard   Catalog visu rework
139
140
141
142
143
144
145
146
147
148
149
		};

		var comboRangeConfig = {
			xtype : 'combo',
			name:'scaling',
			valueField: 'scaling',
			queryMode:'local',
			store:['auto','manual'],
			forceSelection:true,
			value: 'auto',
			width: 80,
1a0151a5   Benjamin Renard   wip
150
      id: 'visu-scatter-' + axisName + '-scaling',
33705dc4   Benjamin Renard   Catalog visu rework
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
			listeners : {
				scope : this,
				change : function(combo, newValue, oldValue) {
					var minValue = combo.next().next();
					var maxValue  = minValue.next().next();
					var disabled = newValue == "auto";
					minValue.reset();
					maxValue.reset();
					minValue.setDisabled(disabled);
					maxValue.setDisabled(disabled);
				}
			}
		};

		var axisRangeConfig = {
			xtype : 'fieldcontainer',
			layout: 'hbox',
			items: [
				{
					xtype:'fieldset',
					title: axisName + ' Range',
					border: false,
					layout: 'hbox',
					items: [
						comboRangeConfig,
						{
							xtype: 'splitter'
						},
						{
							xtype: 'numberfield',
							hideTrigger: true,
							width: 50,
1a0151a5   Benjamin Renard   wip
183
184
							disabled: true,
              id: 'visu-scatter-' + axisName + '-range-min'
33705dc4   Benjamin Renard   Catalog visu rework
185
186
187
188
189
190
191
192
						},
						{
							xtype: 'splitter'
						},
						{
							xtype: 'numberfield',
							hideTrigger: true,
							width: 50,
1a0151a5   Benjamin Renard   wip
193
194
							disabled: true,
              id: 'visu-scatter-' + axisName + '-range-max'
33705dc4   Benjamin Renard   Catalog visu rework
195
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
						}
					]
				}
			]
		};

		return {
			xtype : 'fieldset',
			title : axisName + ' axis',
			items : [
				paramComboConfig,
				axisRangeConfig,
				{
					xtype: 'textfield',
					fieldLabel: axisName + ' title',
          id: 'visu-scatter-' + axisName + '-title'
				}
			]
		};
	},

	getPlottingOptionConfig: function() {
		var plotTypeComboConfig = {
			xtype: 'combo',
			emptyText: 'select plot type',
			editable: false,
			store: ['scatter', 'line'],
			queryMode: 'local',
			valueField: 'type',
			value: 'scatter',
1a0151a5   Benjamin Renard   wip
225
      id: 'visu-scatter-type',
33705dc4   Benjamin Renard   Catalog visu rework
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
			listeners : {
				scope : this,
				change : function(combo, newValue, oldValue) {
					//this.chartConfig.series[0].type = newValue;
				}
			}
		};

		var plotThemeComboConfig = {
			xtype: 'combo',
			emptyText: 'select theme',
			editable: false,
			store: ['Base','Green','Sky','Red','Purple','Blue','Yellow'],
			queryMode: 'local',
			valueField: 'type',
			value: 'Blue',
1a0151a5   Benjamin Renard   wip
242
      id: 'visu-scatter-color',
33705dc4   Benjamin Renard   Catalog visu rework
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
273
			listeners : {
				scope : this,
				change : function(combo, newValue, oldValue) {
					//this.chartConfig.theme = newValue;
				}
			}
		};

		return {
			xtype : 'fieldset',
			title : 'Plotting Options',
			items : [
				plotTypeComboConfig,
				plotThemeComboConfig
			]
		};
	},

	init : function (config)
	{
		var myConf = {
			items: [
				this.getAxisConfig(0,'X', config.parametersStore),
				this.getAxisConfig(0,'Y', config.parametersStore),
				this.getPlottingOptionConfig()
			]
		};

		Ext.apply (this, Ext.apply(arguments, myConf));
    }
});