-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsurvey-common.js
57 lines (53 loc) · 1.34 KB
/
survey-common.js
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
angular.module("SurveyCommon", [])
.factory('surveyCache', [function() {
var self, PREFIX = 'surveyCache';
var data = localStorage[PREFIX];
var collection = data && data.length ? loadEntryFromJSON(data) : {};
return self = {
list : function() {
return collection;
},
get : function(id) {
return collection[id + ""];
},
exists : function(id) {
return !!collection[id + ""];
},
set : function(id, data) {
if (self.exists(id)) {
data.id = id;
collection[id] = data;
self.save();
}
},
add : function(data) {
var id = getMaxID(collection) + 1;
data.id = id;
collection[id + ""] = data;
self.save();
},
remove : function(id) {
if (self.exists(id)) {
delete collection[id];
self.save();
}
},
save : function() {
localStorage[PREFIX] = JSON.stringify(collection);
}
};
function loadEntryFromJSON(data) {
var contents = JSON.parse(data);
angular.forEach(contents, function(entry) {
entry.date = new Date(entry.date);
});
return contents;
}
function getMaxID(data) {
var max = 0;
for (var i in data) {
max = Math.max(i, max);
}
return max;
}
}])