PlotSpectroForm.js
10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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
159
160
161
162
163
164
165
166
167
168
169
170
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/**
* Project : AMDA-NG
* Name : PlotSpectroForm.js
* @class amdaPlotComp.PlotSpectroForm
* @extends amdaPlotComp.PlotStandardForm
* @brief Form to define specifics spectro options
* @author Benjamin Renard
* @version $Id: PlotSpectroForm.js benjamin $
*/
Ext.define('amdaPlotComp.PlotSpectroForm', {
extend: 'amdaPlotComp.PlotStandardForm',
requires: [
'amdaUI.ParamArgumentsUI'
],
setObject: function (object) {
this.data = object.data;
this.object = object.get('param-drawing-object');
this.loadRecord(this.object);
},
getValuesRangeItems: function () {
return [
this.addStandardFloat2('spectro-value-min', 'Min value', -Number.MAX_VALUE, Number.MAX_VALUE, true),
this.addStandardFloat2('spectro-value-max', 'Max value', -Number.MAX_VALUE, Number.MAX_VALUE, true)
];
},
getFilteringItems: function () {
return [
this.addStandardCombo('filtering-level', 'Level', amdaPlotObj.PlotObjectConfig.availableFilteringLevel)
];
},
/**
* Populate the comboBoxValue by the set of channel data related to the selected dimension
* @param {*} ref the reference of the current instance of this class
* @param {*} index dimension's index
* @param {*} comboBoxV the comboBoxValue
* @returns
*/
populateComboBoxValue: (ref, index, comboBoxV) => {
if (ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName][index].variable)
return;
const channelsData = ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName][index]
[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableChannels];
const keyTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.key;
const valueTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.value;
const newDataForStore = [];
//Loop through the channels
for (channelIndex in channelsData) {
const channelData = channelsData[channelIndex];
let item = {};
item[keyTemp] = channelIndex;
item[valueTemp] = channelIndex + " : [" + channelData.min + " , " + channelData.max + "]";
newDataForStore.push(item);
}
//Update the label of the field
comboBoxV.setFieldLabel(ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName][index]["name"]
+ " (" + ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName][index]["units"] + ") ");
comboBoxV.store.loadData(newDataForStore);
},
/**
* Populate the comboBoxDim by the set of dimensions related to the selected parameter
* @param {*} ref the reference of the current instance of this class
* @param {*} comboBoxDim the comboBoxDim reference
*/
populateComboBoxDim: (ref, comboBoxDim) => {
const keyTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.key;
const valueTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.value;
const newDataForStore = [];
for (indexTable in ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName]) {
const table = ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName][indexTable];
let item = {};
item[keyTemp] = indexTable;
item[valueTemp] = table[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableRelatedDim];
newDataForStore.push(item);
}
//Set the new store
comboBoxDim.store.loadData(newDataForStore);
},
/**
* Add a textInput which holds Background Substraction value when fixedvalue is selected
* @param {*} ref the reference of the current instance of this class
* @returns addStandardFloat2
*/
addComboBoxBackgroundSubFixedValue: (ref) => {
return ref.addStandardFloat2(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.textinputkey,
amdaPlotObj.PlotObjectConfig.bgSubstraction.value.textinputlabel, 0
, Number.MAX_VALUE, true, true, (name, newValue, oldValue) => {
if (oldValue !== newValue) {
if (!newValue) {
ref.object.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key,
amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
return;
}
ref.object.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key,
newValue);
}
});
},
/**
* Reset ComboBoxDim and textInput
*
* @param {*} ref the reference of the current instance of this class
*/
resetDependentComponents: (ref) => {
const comboBoxDim = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey);
ref.populateComboBoxDim(ref, comboBoxDim);
comboBoxDim.setVisible(false);
comboBoxDim.setValue(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
const textInputV = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.textinputkey);
textInputV.setVisible(false);
textInputV.setValue(null);
},
/**
* Add a comboBox which holds Background Substraction type : bychannel, fixedvalue
* @param {*} ref the reference of the current instance of this class
* @returns StandardCombo
*/
addComboBoxBackgroundSubType: (ref) => {
const data = [];
for (value in amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values) {
const keyTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.key;
const valueTemp = amdaPlotObj.PlotObjectConfig.fieldComboBox.value;
let item = {};
item[keyTemp] = value;
item[valueTemp] = amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values[value];
data.push(item);
}
const comboBoxType = ref.addStandardCombo(amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key,
amdaPlotObj.PlotObjectConfig.bgSubstraction.type.label, data,
(name, newKey, oldKey) => {
if (newKey !== oldKey) {
const newValue = amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values[newKey];
if (newKey === null || newValue === undefined) {
ref.resetDependentComponents(ref);
return;
}
//ComboBoxDim
const comboBoxDim = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey);
//Fixed value input
const textInputV = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.textinputkey);
//By channel
if (newValue === amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values.bychannel) {
const nbDims = ref.data[amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName].length;
//Show comboBoxDim
comboBoxDim.select(comboBoxDim.store.getAt(0));
if (nbDims > 1)
comboBoxDim.setVisible(true);
//Hide comboBoxDim
else
comboBoxDim.setVisible(false);
//Hide text input
textInputV.setValue(null);
textInputV.setVisible(false);
}
//By fixed value
else if (newValue === amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values.fixedvalue) {
//Hide comboBoxDim
comboBoxDim.setVisible(false);
comboBoxDim.setValue(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
//Show text input
textInputV.setValue(null);
textInputV.setVisible(true);
}
//Another value
else {
console.warn("Unkown key : ", newKey);
}
}
});
return comboBoxType;
},
/**
* Add a comboBox which holds Background Substraction value
* @param {*} ref the reference of the current instance of this class
* @returns StandardCombo
*/
addComboBoxBackgroundSubValue: (ref) => {
const comboBoxValue = ref.addStandardCombo(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key,
"", [],
(name, newKey, oldKey) => {
if (newKey !== oldKey) {
ref.object.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key,
newKey);
}
});
return comboBoxValue;
},
/**
* Add a comboBox which holds Background Substraction dimension
* @param {*} ref the reference of the current instance of this class
* @returns StandardCombo
*/
addComboBoxBackgroundSubDim: (ref) => {
const comboBoxDim = ref.addStandardCombo(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey,
amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimlabel, [],
(name, newKey, oldKey) => {
const comboBoxV = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key);
if (newKey === amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue) {
comboBoxV.setValue(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
comboBoxV.setVisible(false);
return;
}
if (newKey !== null && newKey !== undefined) {
comboBoxV.setVisible(true);
ref.populateComboBoxValue(ref, newKey, comboBoxV);
comboBoxV.select(comboBoxV.store.getAt(0));
}
ref.object.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey,
newKey);
});
return comboBoxDim;
},
/**
* Add Background Substraction items
* @returns StandardFieldSet
*/
getBackgroundSubItems: function () {
return [
this.addComboBoxBackgroundSubType(this),
this.addComboBoxBackgroundSubDim(this),
this.addComboBoxBackgroundSubValue(this),
this.addComboBoxBackgroundSubFixedValue(this)
];
},
getFormItems: function () {
const ref = this;
const field = this.addStandardFieldSet(amdaPlotObj.PlotObjectConfig.bgSubstraction.name,
amdaPlotObj.PlotObjectConfig.bgSubstraction.name, this.getBackgroundSubItems(),
function (name, newKey, oldKey) {
const comboBoxType = ref.getForm().findField(amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key);
comboBoxType.setValue(null);
if (newKey) {
comboBoxType.setValue(Object.keys(amdaPlotObj.PlotObjectConfig.bgSubstraction.type.values)[0]);
}
});
return [
this.addStandardCombo('spectro-resolution', 'Points per plot', amdaPlotObj.PlotObjectConfig.availableResolutions, function (name, value, oldValue) {
ref.object.set('spectro-resolution', value);
}),
this.addStandardCombo('spectro-yaxis', 'Y axis', amdaPlotObj.PlotObjectConfig.availableYAxes, function (name, value, oldValue) {
ref.object.set('spectro-yaxis', value);
ref.crtTree.refresh();
}),
myDesktopApp.addAmdaInfo('MinMaxThreshold', 'vertical-align:bottom'),
this.addStandardFieldSet('Min/Max thresholds', '', this.getValuesRangeItems()),
this.addStandardCheck('spectro-log0-as-min', 'Show 0 values as Min Values in log scale', function (name, value, oldValue) {
ref.object.set('spectro-log0-as-min', value);
}),
this.addStandardCombo('spectro-normalization', 'Normalization', amdaPlotObj.PlotObjectConfig.availableSpectroNormalization, function (name, value, oldValue) {
if (ref.object.get('spectro-normalization') != value) {
ref.object.set('spectro-normalization', value);
}
}),
this.addStandardFieldSet('Spike Filtering ( ! Experimental ! )', 'filtering-activated', this.getFilteringItems()),
field
];
}
});