Blame view

js/app/views/CatalogVisuScatter.js 6.11 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();
903e5e09   Benjamin Renard   WIP
25
26
    var xAxisOpt = this.getAxisOptions('X');
    var yAxisOpt = this.getAxisOptions('Y');
33705dc4   Benjamin Renard   Catalog visu rework
27

b0720b91   Benjamin Renard   Finalize catalog ...
28
29
30
31
32
33
34
35
36
    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;
    }
3ccb373f   furkan   #6899 - Done
37
38
	var x=[];
	var y=[];
560766be   furkan   #6899- Last modif...
39
	var text=[];
3ccb373f   furkan   #6899 - Done
40
41
42
	catalogStore.each(function(item){
		x.push(item.get(xAxisOpt.paramId));
		y.push(item.get(yAxisOpt.paramId));
560766be   furkan   #6899- Last modif...
43
		text.push(''+item.get('start').toISOString()+'<br>'+item.get('stop').toISOString());
3ccb373f   furkan   #6899 - Done
44
	});
560766be   furkan   #6899- Last modif...
45
	
b0720b91   Benjamin Renard   Finalize catalog ...
46

3ccb373f   furkan   #6899 - Done
47
48
49
50
	var data =[{
	x: x,
	y: y,
	mode: (plotType=='line') ? 'lines+markers' : 'markers',
560766be   furkan   #6899- Last modif...
51
	text: text,
3ccb373f   furkan   #6899 - Done
52
53
54
	marker:{
		color:plotColor},
	type: 'scatter'}];
1a0151a5   Benjamin Renard   wip
55

3ccb373f   furkan   #6899 - Done
56
57
58
	var layout = {
		margin: {l: 50,r: 40, b: 40,t: 40,pad: 5},
		xaxis: {title: xAxisOpt.title, range: !xAxisOpt.range ? null : [xAxisOpt.range.min,xAxisOpt.range.max]},
560766be   furkan   #6899- Last modif...
59
60
61
62
		yaxis: {title: yAxisOpt.title, range: !yAxisOpt.range ? null : [yAxisOpt.range.min,yAxisOpt.range.max]},
		hovermode: "closest",
		hoverlabel :{ font:{size:10}}	
	};
3ccb373f   furkan   #6899 - Done
63
64
	var result =  {data:data,layout:layout}
    return result;
33705dc4   Benjamin Renard   Catalog visu rework
65
66
  },

33705dc4   Benjamin Renard   Catalog visu rework
67
  getAxisOptions: function(axisName) {
903e5e09   Benjamin Renard   WIP
68
    var opt = {
1a0151a5   Benjamin Renard   wip
69
      paramId: '',
903e5e09   Benjamin Renard   WIP
70
71
      title: axisName+' axis'
    };
33705dc4   Benjamin Renard   Catalog visu rework
72

903e5e09   Benjamin Renard   WIP
73
74
75
76
77
    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 ...
78
        opt.paramId = paramField.get('id');
738e0997   Benjamin Renard   Draw histogram
79
				opt.title = paramField.get('name');
903e5e09   Benjamin Renard   WIP
80
81
      }
    }
33705dc4   Benjamin Renard   Catalog visu rework
82
83

    var axisTitleField = Ext.getCmp('visu-scatter-'+axisName+'-title');
903e5e09   Benjamin Renard   WIP
84
85
86
87
88
    var axisTitle = axisTitleField.getValue();
    if (axisTitle && (axisTitle != "")) {
      opt.title = axisTitle;
    }

1a0151a5   Benjamin Renard   wip
89
90
91
92
93
94
95
96
97
98
99
100
    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
101
    return opt;
33705dc4   Benjamin Renard   Catalog visu rework
102
103
104
105
106
107
108
109
110
  },

	getAxisConfig: function(axisIndex, axisName, parametersStore) {
		var paramComboConfig = {
			xtype: 'combo',
			emptyText: 'select parameter',
			editable: false,
			store: parametersStore,
			queryMode: 'local',
b0720b91   Benjamin Renard   Finalize catalog ...
111
			displayField: 'name',
33705dc4   Benjamin Renard   Catalog visu rework
112
113
			valueField: 'id',
			axisIndex: axisIndex,
b0720b91   Benjamin Renard   Finalize catalog ...
114
      id: 'visu-scatter-' + axisName + '-param'
33705dc4   Benjamin Renard   Catalog visu rework
115
116
117
118
119
120
121
122
123
124
125
		};

		var comboRangeConfig = {
			xtype : 'combo',
			name:'scaling',
			valueField: 'scaling',
			queryMode:'local',
			store:['auto','manual'],
			forceSelection:true,
			value: 'auto',
			width: 80,
1a0151a5   Benjamin Renard   wip
126
      id: 'visu-scatter-' + axisName + '-scaling',
33705dc4   Benjamin Renard   Catalog visu rework
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
			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
159
160
							disabled: true,
              id: 'visu-scatter-' + axisName + '-range-min'
33705dc4   Benjamin Renard   Catalog visu rework
161
162
163
164
165
166
167
168
						},
						{
							xtype: 'splitter'
						},
						{
							xtype: 'numberfield',
							hideTrigger: true,
							width: 50,
1a0151a5   Benjamin Renard   wip
169
170
							disabled: true,
              id: 'visu-scatter-' + axisName + '-range-max'
33705dc4   Benjamin Renard   Catalog visu rework
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
						}
					]
				}
			]
		};

		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
201
      id: 'visu-scatter-type',
33705dc4   Benjamin Renard   Catalog visu rework
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
			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
218
      id: 'visu-scatter-color',
33705dc4   Benjamin Renard   Catalog visu rework
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
			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));
    }
});