Catalog.js
1.35 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
/**
* Project : AMDA-NG
* Name : Catalog.js
* Description : Catalog Object Definition
* @class amdaModel.Catalog
* @extends amdaModel.TimeTable
* @author elena
*/
Ext.define('amdaModel.Catalog', {
extend: 'amdaModel.TimeTable',
fields : [
{ name: 'parameters' },
{ name: 'nbParameters', type: 'int', defaultValue: 1},
{name: 'relatedTimeTableId', type: 'string', defaultValue: ""}
],
getJsonValues : function (hasId) {
var values = new Object();
if (hasId) {
values.id = this.get('id');
}
values.timesrc = this.get('timesrc');
values.name = this.get('name');
values.created = this.get('created');
if (this.get('description').match(/[a-z,0-9]/gi) != null) {
values.description = this.get('description');
}
// if (this.get('history').match(/[a-z,0-9]/gi) != null) {
// values.history = this.get('history');
// }
values.objName = this.get('objName');
values.objFormat = this.get('objFormat');
values.folderId = this.get('folderId');
values.nbIntervals = this.get('nbIntervals');
values.cacheToken = this.get('cacheToken');
values.parameters = this.get('parameters');
values.leaf = true;
values.nodeType = amdaModel.CatalogNode.nodeType;
return values;
}
});