Blame view

js/app/models/PlotObjects/PlotSpectroObject.js 4.19 KB
17433635   Benjamin Renard   Add series and sp...
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Project      : AMDA-NG
 * Name         : PlotSpectroObject.js
 * @class   amdaPlotObj.PlotSpectroObject
 * @extends Ext.data.Model
 * @brief   Plot Spectro Business Object Definition 
 * @author  Benjamin Renard
 * @version $Id: PlotSpectroObject.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :21/08/2015: BRE  - file creation
 */
0fc6f7a1   Menouard AZIB   Add type combobox...
14
15


17433635   Benjamin Renard   Add series and sp...
16
Ext.define('amdaPlotObj.PlotSpectroObject', {
0fc6f7a1   Menouard AZIB   Add type combobox...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
    extend: 'Ext.data.Model',

    requires: [
        'amdaPlotObj.PlotObjectConfig'
    ],

    fields: [
        { name: 'spectro-yaxis', type: 'string' },
        { name: 'spectro-resolution', type: 'int' },
        { name: 'spectro-value-min', type: 'float', useNull: true },
        { name: 'spectro-value-max', type: 'float', useNull: true },
        { name: 'spectro-log0-as-min', type: 'boolean' },
        { name: 'spectro-normalization', type: 'string' },
        //Filtering
        { name: 'filtering-activated', type: 'boolean' },
        { name: 'filtering-level', type: 'int' },

        { name: amdaPlotObj.PlotObjectConfig.bgSubstraction.name, type: 'boolean' },
4dbd97ec   Menouard AZIB   Goal is reached b...
35
        { name: amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key, type: 'string' },
86615884   Menouard AZIB   Quand on passe d'...
36
37
        { name: amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key, type: 'string' },
        { name: amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey, type: 'string' }
0fc6f7a1   Menouard AZIB   Add type combobox...
38
39
40
    ],

    constructor: function () {
a971060f   Benjamin Renard   Fix some bugs
41
42
        var me = this;
        me.callParent(arguments);
0fc6f7a1   Menouard AZIB   Add type combobox...
43
        if ((arguments.length > 0) && arguments[0]) {
a971060f   Benjamin Renard   Fix some bugs
44
        }
0fc6f7a1   Menouard AZIB   Add type combobox...
45
46
47
        else {
            //new object, set default fields values
            me.setDefaultValues();
a971060f   Benjamin Renard   Fix some bugs
48
49
50
        }
        this.dirty = false;
    },
0fc6f7a1   Menouard AZIB   Add type combobox...
51
52
53
54
55
56
57

    loadFromData: function (drawData) {
        Ext.Object.each(drawData, function (key, value) {
            if (key == 'type')
                return;
            this.set(key, value);
        }, this);
ced82260   Benjamin Renard   Get initial plot ...
58
    },
0fc6f7a1   Menouard AZIB   Add type combobox...
59
60
61
62
63
64
65
66
67
68
69

    setDefaultValues: function () {
        this.set('spectro-yaxis', amdaPlotObj.PlotObjectConfig.defaultValues.spectro.yAxis);
        this.set('spectro-resolution', amdaPlotObj.PlotObjectConfig.defaultValues.spectro.resolution);
        this.set('spectro-log0-as-min', false);
        this.set('spectro-normalization', "none");
        // filtering 
        this.set('filtering-activated', false);
        this.set('filtering-level', amdaPlotObj.PlotObjectConfig.defaultValues.filtering.level);

        this.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.name, false);
4dbd97ec   Menouard AZIB   Goal is reached b...
70
        this.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key, null);
86615884   Menouard AZIB   Quand on passe d'...
71
        this.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key, amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
c3e75a07   Menouard AZIB   IHM is finished a...
72
        this.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey, amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimNullValue);
17433635   Benjamin Renard   Add series and sp...
73
    },
0fc6f7a1   Menouard AZIB   Add type combobox...
74
75
76
77
78
79
80
81
82
83
84
85
86
87

    getJsonValues: function () {
        var spectroValues = new Object();

        spectroValues['spectro-yaxis'] = this.get('spectro-yaxis');
        spectroValues['spectro-resolution'] = this.get('spectro-resolution');
        spectroValues['spectro-value-min'] = this.get('spectro-value-min');
        spectroValues['spectro-value-max'] = this.get('spectro-value-max');
        spectroValues['spectro-log0-as-min'] = this.get('spectro-log0-as-min');
        spectroValues['spectro-normalization'] = this.get('spectro-normalization');
        spectroValues['filtering-activated'] = this.get('filtering-activated');
        spectroValues['filtering-level'] = this.get('filtering-level');

        spectroValues[amdaPlotObj.PlotObjectConfig.bgSubstraction.name] = this.get(amdaPlotObj.PlotObjectConfig.bgSubstraction.name);
4dbd97ec   Menouard AZIB   Goal is reached b...
88
89
90
        spectroValues[amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key] = this.get(amdaPlotObj.PlotObjectConfig.bgSubstraction.type.key);
        spectroValues[amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key] = this.get(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.key);
        spectroValues[amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey] = this.get(amdaPlotObj.PlotObjectConfig.bgSubstraction.value.dimkey);
0fc6f7a1   Menouard AZIB   Add type combobox...
91
        return spectroValues;
17433635   Benjamin Renard   Add series and sp...
92
    }
9b94f8bc   Benjamin Renard   Add option to sho...
93
});