blob: 7274244a8362e3b20df50ed2767e1f99888ebb5a (
plain)
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
|
/**
* @author arnaud marhin<arnaud.marhin@orange.com>
*/
(function() {
'use strict';
angular
.module('moon')
.factory('utilService', utilService);
utilService.$inject = [];
function utilService() {
return {
/**
* Transforms an answer from server and return an array of objects instead the @param data
* @param data object : {
* 'typeOfTheRreturnedObject' : {
* 'idObject1' : {....},
* 'idObject2' : {....}
* }
* }
* @param typeOfObject
* @returns {Array}
*/
transform : function(data, typeOfObject){
var result = [];
_.each(data[typeOfObject],function(item, key){
item.id = key;
result.push(item);
});
return result;
},
/**
* same as transform but with only one object
* @param data
* @param typeOfObject the first elem of the dictonnary
*/
transformOne : function(data, typeOfObject){
var result = [];
_.each(data[typeOfObject], function (item, key) {
item.id = key;
result.push(item);
});
return result[0];
}
};
}
})();
|