Blame view

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

Ext.define('amdaUI.CatalogVisuHistogram', {
	extend: 'Ext.form.Panel',
	alias: 'widget.panelCatalogVisuHistogram',
738e0997   Benjamin Renard   Draw histogram
13
	histogramStore: null,
560766be   furkan   #6899- Last modif...
14
  visuUI:null,
33705dc4   Benjamin Renard   Catalog visu rework
15
16
17
18
19
	constructor: function(config) {
		this.init(config);
		this.callParent(arguments);
	},

536a676d   Erdogan Furkan   #10701 & #10702 Done
20
  getChartConfig: function(catalogStore,isColorBar=false) {
738e0997   Benjamin Renard   Draw histogram
21
22
		var paramOpt = {
			paramId: '',
738e0997   Benjamin Renard   Draw histogram
23
			title: 'Parameter'
3ccb373f   furkan   #6899 - Done
24
		}; 
738e0997   Benjamin Renard   Draw histogram
25
26
27
28
29
30

		var paramField = Ext.getCmp('visu-histo-param');
		var paramFieldId = paramField.getValue();
		if (paramFieldId && (paramFieldId != "")) {
			var paramField = paramField.getStore().getById(paramFieldId);
			if (paramField) {
b0720b91   Benjamin Renard   Finalize catalog ...
31
				paramOpt.paramId = paramField.get('id');
738e0997   Benjamin Renard   Draw histogram
32
				paramOpt.title = paramField.get('name');
738e0997   Benjamin Renard   Draw histogram
33
34
			}
		}
b0720b91   Benjamin Renard   Finalize catalog ...
35
    else {
57eb5d17   Erdogan Furkan   #6899 - Asked mod...
36
      //myDesktopApp.errorMsg('Missing parameter selection');
b0720b91   Benjamin Renard   Finalize catalog ...
37
38
      return null;
    }
738e0997   Benjamin Renard   Draw histogram
39
40
41
42
43
44
45
46
47
48
49
50
51

		var paramTitleField = Ext.getCmp('visu-histo-title');
		var paramTitle = paramTitleField.getValue();
		if (paramTitle && (paramTitle != "")) {
			paramOpt.title = paramTitle;
		}

    var nbBinsField = Ext.getCmp('visu-histo-bin-slider');
    var nbBinsValue = nbBinsField.getValue();
		if (nbBinsValue <= 0) {
			nbBinsValue = 1
		}

738e0997   Benjamin Renard   Draw histogram
52
53
54
55
56
57
58
		var minValue = null;
		var maxValue = null;
		catalogStore.each(function (item) {
			minValue = (minValue == null) ? item.get(paramOpt.paramId) : Math.min(minValue, item.get(paramOpt.paramId));
			maxValue = (maxValue == null) ? item.get(paramOpt.paramId) : Math.max(maxValue, item.get(paramOpt.paramId));
		});

b0c34835   Benjamin Renard   Fix #8304
59
60
    if ((minValue == null) || (maxValue == null) || (minValue == maxValue)) {
      myDesktopApp.errorMsg('Not enough data or constant data');
b0720b91   Benjamin Renard   Finalize catalog ...
61
62
      return null;
    }
13374f3f   Erdogan Furkan   #10584 - Done
63
    var isLogScale = Ext.getCmp('visu-scatter-logbox').getValue();
3ccb373f   furkan   #6899 - Done
64
65
66
67
		var binSize = (maxValue-minValue) / (nbBinsValue);
    var x=[];
    catalogStore.each(function (item) {
			x.push(item.get(paramOpt.paramId));
738e0997   Benjamin Renard   Draw histogram
68
		});
738e0997   Benjamin Renard   Draw histogram
69

3ccb373f   furkan   #6899 - Done
70
71
72
    var trace = {
      x: x,
      type: 'histogram',
560766be   furkan   #6899- Last modif...
73
      histnorm: Ext.getCmp('normalizedCheckbox').getValue() ? 'probability': null,
3ccb373f   furkan   #6899 - Done
74
75
76
77
78
      xbins: { end: maxValue, size: binSize, start: minValue }
    };
   
    var data = [trace];
    var layout = {
560766be   furkan   #6899- Last modif...
79
      margin: {l: 60,r: 40, b: 40,t: 40,pad: 5},
13374f3f   Erdogan Furkan   #10584 - Done
80
81
82
83
84
85
      yaxis: {
        title: Ext.getCmp('normalizedCheckbox').getValue() ? 'Frequency': 'Events',
        type: isLogScale ? 'log' : null
      },
      xaxis: {title: paramOpt.title},
    };
3ccb373f   furkan   #6899 - Done
86
87
88
		
      var result =  {data:data,layout:layout}
    return result;
738e0997   Benjamin Renard   Draw histogram
89
90
91
92
93
94
95
96
97
  },

  getHistoConfig: function(parametersStore) {
    var paramComboConfig = {
      xtype: 'combo',
      emptyText: 'select parameter',
      editable: false,
      store: parametersStore,
      queryMode: 'local',
b0720b91   Benjamin Renard   Finalize catalog ...
98
      displayField: 'name',
738e0997   Benjamin Renard   Draw histogram
99
      valueField: 'id',
57eb5d17   Erdogan Furkan   #6899 - Asked mod...
100
101
102
103
104
105
106
      id: 'visu-histo-param',
      listeners:{
        change:function(){
          this.visuUI.plotChart();
        },
        scope: this
      }
738e0997   Benjamin Renard   Draw histogram
107
    };
13374f3f   Erdogan Furkan   #10584 - Done
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
    var logbox={
      xtype: 'fieldcontainer',
      fieldLabel: 'Log Scale',
      defaultType: 'checkboxfield',
      items: [
        {
          name      : 'logscale',
          inputValue: false,
          id        : 'visu-scatter-logbox',
          listeners:{
          change:function(){
            this.visuUI.plotChart();
          },
          scope: this
          }
        }
      ],
    };
    var normalizedbox={
560766be   furkan   #6899- Last modif...
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
      xtype: 'fieldcontainer',
            fieldLabel: 'Normalized',
            defaultType: 'checkboxfield',
            items: [
                {
                    name      : 'normalized',
                    inputValue: false,
                    id        : 'normalizedCheckbox',
                    listeners:{
                      change:function(){
                        this.visuUI.plotChart();
                      },
                      scope: this
                    }
                }
            ],
    };
738e0997   Benjamin Renard   Draw histogram
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
    var sliderConfig = {
      xtype : 'fieldcontainer',
      layout: 'hbox',
      items: [
        {
          xtype:'fieldset',
          title: 'Nb. bins',
          border: false,
          layout: 'hbox',
          items: [
            {
              xtype: 'slider',
              width: 150,
              value: 10,
              increment: 1,
              minValue: 2,
              maxValue: 100,
b0720b91   Benjamin Renard   Finalize catalog ...
161
162
163
164
165
166
              id: 'visu-histo-bin-slider',
              listeners: {
                change: function ( slider, newValue, thumb, eOpts ) {
                  var binValueField = Ext.getCmp('visu-histo-bin-value');
                  binValueField.setValue(newValue);
                },
560766be   furkan   #6899- Last modif...
167
168
169
                changecomplete: function(){
                  this.visuUI.plotChart();
                },
b0720b91   Benjamin Renard   Finalize catalog ...
170
171
                scope: this
              }
738e0997   Benjamin Renard   Draw histogram
172
173
174
175
176
177
178
179
180
            },
            {
              xtype: 'splitter'
            },
            {
              xtype: 'numberfield',
              hideTrigger: true,
              width: 50,
              disabled: true,
b0720b91   Benjamin Renard   Finalize catalog ...
181
              value: 10,
738e0997   Benjamin Renard   Draw histogram
182
183
184
185
186
187
188
189
190
191
192
193
194
              id: 'visu-histo-bin-value'
            }
        ]
      }
      ]
     };

    return {
      xtype : 'fieldset',
      title : 'Histogram axis',
      items : [
        paramComboConfig,
        sliderConfig,
13374f3f   Erdogan Furkan   #10584 - Done
195
196
        normalizedbox,
        logbox,
738e0997   Benjamin Renard   Draw histogram
197
198
199
        {
          xtype: 'textfield',
          fieldLabel: 'Title',
57eb5d17   Erdogan Furkan   #6899 - Asked mod...
200
201
202
203
204
205
206
          id: 'visu-histo-title',
          listeners: {
            change: function(){
              this.visuUI.plotChart();
            },
            scope: this
          }
738e0997   Benjamin Renard   Draw histogram
207
208
209
210
        }
      ]
    };
  },
33705dc4   Benjamin Renard   Catalog visu rework
211
212
213
214

	init : function (config)
	{
		var myConf = {
33705dc4   Benjamin Renard   Catalog visu rework
215
			items: [
738e0997   Benjamin Renard   Draw histogram
216
217
          this.getHistoConfig(config.parametersStore)
      ]
33705dc4   Benjamin Renard   Catalog visu rework
218
		};
560766be   furkan   #6899- Last modif...
219
    this.visuUI= config.visuUI;
33705dc4   Benjamin Renard   Catalog visu rework
220
221
222
		Ext.apply (this, Ext.apply(arguments, myConf));
    }
});