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
| | (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'
| | }),
| | user : $resource('/user/:userId', {
| | userId : '@username'
| | }),
| | organization : $resource(
| | '/organization/:orgId', {
| | orgId : '@id'
| | }),
| | licensetype : $resource(
| | '/licensetype/:licenseTypeId', {
| | licenseTypeId : '@id'
| | })
| | }
| |
| | var _metadata = null;
| | var _current = null;
| |
| | var _list = function() {
| | return $http.get('/js/catalogs.json')
| | .success(function(data) {
| | _metadata = data;
| | })
| | }
| | this.init = function() {
| | if (_metadata) {
| | console.debug('Catalogs already initilizated');
| | var defer = $q.defer();
| | defer.resolve(_metadata);
| | return defer.promise;
| | }
| | 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 resources[res];
| | }
| | 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 = 0; i < _current.fields.length; i++)
| | if (!_current.fields[i].readOnly)
| | return _current.fields[i].name;
| |
| | return null;
| | }
| |
| | /**
| | * Find the field by name or position
| | */
| | this.getField = function(key, catalog) {
| | catalog = catalog || _current;
| | if (!catalog)
| | throw new Error(
| | 'There is no current catalog selected');
| | var index = -1;
| | if (typeof key === 'string') {
| | for (var i = catalog.fields.length - 1; i >= 0
| | && catalog.fields[i].name !== key; i--)
| | ;
| | index = i;
| | } else {
| | index = key; // In this case key ===
| | // field position
| | }
| |
| | return index === -1 ? {}
| | : catalog.fields[index];
| | }
| |
| | /***********************************************
| | * Catalog resource operations on server *
| | **********************************************/
| |
| | function _success(response) {
| | console.debug('$resource action success')
| | }
| | 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();
| | 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.refreshRef = function(refs, res,
| | preloadedData) {
| | // We check if there is some field for the
| | // resource passed as parameter
| | var field = (function() {
| | for (var i = _current.fields.length - 1; i >= 0; i--) {
| | if (_current.fields[i].resource === res)
| | return _current.fields[i];
| | }
| | return null;
| | })();
| |
| | // If field for that resource is not found
| | // there is nothing to refresh
| | if (!field)
| | return;
| | var resource = this.getResource(res);
| | var data = preloadedData
| | || resource.query({}, _success,
| | _fail);
| | var that = this;
| | data.$promise.then(function(responseData) {
| | var pk = that.getPk(that
| | .getMetadata(field.resource))
| | var comboData = []
| | responseData.forEach(function(row) {
| | comboData.push({
| | id : row[pk],
| | label : row.label || row.name
| | || row.code
| | || row.first_name + ' '
| | + row.last_name
| | });
| | })
| | refs[field.name] = comboData;
| | })
| | }
| | this.loadRefs = function(refs, refsFields) {
| | if (!refsFields || refsFields.length === 0) {
| | if (!_current)
| | throw new Error(
| | 'There is no current catalog selected');
| | 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);
| | });
| |
| | $q.all(promises)
| | .then(function() {
| | for(var i in refsFields) {
| | //for ( var k in refs) {
| | var rf = refsFields[i];
| | var cat = that.getResource(rf.resource);
| | var pk = that.getPk(that.getMetadata(rf.resource))
| | //console.log('PK field for ' + rf.name + ' is ' + pk)
| | var comboData = []
| | refs[rf.name].forEach(function(row) {
| | comboData.push({
| | id : row[pk],
| | label : row.label
| | || row.name
| | || row.code
| | || row.first_name
| | + ' '
| | + (row.last_name || '')
| | });
| | })
| | refs[rf.name] = comboData;
| | }
| | _current && _current.fields.forEach(function(f) {
| | if (f.values)
| | refs[f.name] = f.values;
| | });
| | })
| |
| | return refs;
| | }
| |
| | } ])
| |
| | })();
|
|