Roberto Sánchez
2014-01-10 59cdd2b7ebceae94fbecdb1eeb46a969666dc88f
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
(function() {
   'use strict';
   /*
    * Catalogs module
    */
   angular.module('catalogs', ['ngResource'])
   .service('Catalogs', ['$rootScope', '$http', '$resource', '$q', function ($rootScope, $http, $resource, $q) {
       var resources = {
               application : $resource('/application/:appId', {
                   appId : '@id'
               }, {
                   update : {
                       method : "PUT"
                   }
               }),
               user : $resource('/user/:userId', {
                   userId : '@id'
               }, {
                   update : {
                       method : "PUT"
                   }
               }),
               licensetype : $resource('/licensetype/:licenseTypeId', {
                   licenseTypeId : '@id'
               }, {
                   update : {
                       method : "PUT"
                   }
               })
       }
   var _metadata = null;
   var _current = null;
   var _list = function() {
       return $http.get('/js/catalogs.json').success(function(data) {
           _metadata = data;
       })
   }
   this.init = function() {
       return _list();
   }
   this.getList = function() {
       return _metadata;
   }
   this.getName = function(index) {
       if (index === undefined)
           return _current ? _current.name : '';
       return _metadata ? _metadata[index].name : '';
   }
   this.getResource = function(res) {
       if (res === undefined)
           return _current ? resources[_current.resource] : null;
       return _current ? resources[res] : null;        
   }
   this.getPk = function(catalogMetadata) {
       if (!catalogMetadata) catalogMetadata = _current;
       
       for(var i = 0; i < catalogMetadata.fields.length; i++)
           if (catalogMetadata.fields[i].pk) return catalogMetadata.fields[i].name; 
           
       return null;        
   }
   /**
    * Returns catalog metadata
    * @param index: Return current catalog if undefined, if string It find the catalog by resoource name if number it find it by position
    */
   this.getMetadata = function(index) {
       if (!_metadata) throw new Error('There is no catalog metadata info');
       if (index === undefined)
           return _current;
       if (typeof index === 'string') {
           for (var i = _metadata.length - 1; i >= 0 && _metadata[i].resource !== index; i--);
           index = i;
       } 
       return _metadata[index];
   }
   this.setCurrent = function(index) {
       if (!_metadata) throw new Error('There is no catalog metadata info');
       if (index === undefined)
           _current = null;
       else
           _current = _metadata[index];
   }
   /********************************************
    * Catalog fields methods                   *
    ********************************************/
   /**
    * Returns the first field in form that should get the focus. We find the first field that is not read only 
    */
   this.getFFF = this.getFirstFocusableField = function() {
       if (!_current) throw new Error('There is no current catalog selected');
       
       for(var i = i; i < _current.fields.length; i++)
           if (f.readOnly) return f.name;
       
       return null;
   }
   /**
    * Find the field by name or position 
    */
   this.getField = function(key) {
       if (!_current) throw new Error('There is no current catalog selected');
       var index = -1;
       if (typeof key === 'string') {
           for (var i = _current.fields.length - 1; i >= 0 && _current.fields[i].name !== key; i--);
           index = i;
       } else {
           index = key; // In this case key === field position
       }
       return index === -1 ? {} : _current.fields[index];
   }
   
   /********************************************
    * Catalog resource operations on server    *
    ********************************************/
   function _success(response) {
       console.log('$resource')
       console.log(response)
   }
   function _fail(response) {
       console.error('Error trying to get data, HTTP error code: ' + response.status)
   }
   
   
   this.save = function(data) {
       if (!_current) throw new Error('There is no current catalog selected');
       var resource = this.getResource();
       if (data.id && data.id !== '')
               return resource.update(data, _success, _fail);
           else
               return resource.save(data, _success, _fail);
   }
   this.remove = function(data) {
       return this.getResource().remove({}, data, _success, _fail)
   }
   this.query = function() {
       return this.getResource().query({}, _success, _fail);
   }
   this.loadRefs = function(refs) {
       if (!_current) throw new Error('There is no current catalog selected');
       var refsFields = [];
       _current.fields.forEach(function(f) {
           if (f.resource)
               refsFields.push(f)
       });
       
       var that = this;
       var promises = []
       refsFields.forEach(function(f) {
           var resource = that.getResource(f.resource);
           refs[f.name] = resource.query({}, _success, _fail);
           promises.push(refs[f.name].$promise);
       });
       
       console.log('promises: ' + promises.length + ' ')
       console.log(promises)
       $q.all(promises).then(function() {
           console.log('ALL promises OK :::::::::::::::::::::::::::: ')
           for (var k in refs) {
               var pk = that.getPk(that.getMetadata(k))
               console.log('PK for '+k+' is ' + pk);
               var comboData = []
               refs[k].forEach(function(row) {
                   comboData.push({
                       id: row[pk],
                       label: row.label || row.name || row.code
                   });
               })
               refs[k] = comboData;
           }
           
       })
       return refs;
   } 
   
   }])
})();