Blame view

js/app/views/CatalogVisuHistogram.js 4.92 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);
	},

b0720b91   Benjamin Renard   Finalize catalog ...
20
  getChartConfig: function(catalogStore) {
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
36
37
38
    else {
      myDesktopApp.errorMsg('Missing parameter selection');
      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
63
      return null;
    }

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
80
      margin: {l: 60,r: 40, b: 40,t: 40,pad: 5},
      yaxis: {title: Ext.getCmp('normalizedCheckbox').getValue() ? 'Frequency': 'Events',},
3ccb373f   furkan   #6899 - Done
81
82
83
84
      xaxis: {title: paramOpt.title }, };
		
      var result =  {data:data,layout:layout}
    return result;
738e0997   Benjamin Renard   Draw histogram
85
86
87
88
89
90
91
92
93
  },

  getHistoConfig: function(parametersStore) {
    var paramComboConfig = {
      xtype: 'combo',
      emptyText: 'select parameter',
      editable: false,
      store: parametersStore,
      queryMode: 'local',
b0720b91   Benjamin Renard   Finalize catalog ...
94
      displayField: 'name',
738e0997   Benjamin Renard   Draw histogram
95
      valueField: 'id',
b0720b91   Benjamin Renard   Finalize catalog ...
96
      id: 'visu-histo-param'
738e0997   Benjamin Renard   Draw histogram
97
    };
560766be   furkan   #6899- Last modif...
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
    var checkbox={
      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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
    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 ...
133
134
135
136
137
138
              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...
139
140
141
                changecomplete: function(){
                  this.visuUI.plotChart();
                },
b0720b91   Benjamin Renard   Finalize catalog ...
142
143
                scope: this
              }
738e0997   Benjamin Renard   Draw histogram
144
145
146
147
148
149
150
151
152
            },
            {
              xtype: 'splitter'
            },
            {
              xtype: 'numberfield',
              hideTrigger: true,
              width: 50,
              disabled: true,
b0720b91   Benjamin Renard   Finalize catalog ...
153
              value: 10,
738e0997   Benjamin Renard   Draw histogram
154
155
156
157
158
159
160
161
162
163
164
165
166
              id: 'visu-histo-bin-value'
            }
        ]
      }
      ]
     };

    return {
      xtype : 'fieldset',
      title : 'Histogram axis',
      items : [
        paramComboConfig,
        sliderConfig,
560766be   furkan   #6899- Last modif...
167
        checkbox,
738e0997   Benjamin Renard   Draw histogram
168
169
170
171
172
173
174
175
        {
          xtype: 'textfield',
          fieldLabel: 'Title',
          id: 'visu-histo-title'
        }
      ]
    };
  },
33705dc4   Benjamin Renard   Catalog visu rework
176
177
178
179

	init : function (config)
	{
		var myConf = {
33705dc4   Benjamin Renard   Catalog visu rework
180
			items: [
738e0997   Benjamin Renard   Draw histogram
181
182
          this.getHistoConfig(config.parametersStore)
      ]
33705dc4   Benjamin Renard   Catalog visu rework
183
		};
560766be   furkan   #6899- Last modif...
184
    this.visuUI= config.visuUI;
33705dc4   Benjamin Renard   Catalog visu rework
185
186
187
		Ext.apply (this, Ext.apply(arguments, myConf));
    }
});