forked from dpurohit/omnipod-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OPRecord.js
119 lines (116 loc) · 1.91 KB
/
OPRecord.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
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
'use strict';
var OPRecord;
module.exports = OPRecord = {
dateevent : function(){
},
timeslot : function(ts){
var tsMap = {
0 : "pre-breakfast",
1 : "post-breakfast",
2 : "pre-lunch",
3 : "post-lunch",
4 : "pre-dinner",
5 : "post-dinner",
6 : "bed time",
7 : "sleep"
};
return tsMap[ts] || -1;
},
eventtype : function(et){
var eventMap = {
0 : "exercise",
1 : "glucose",
2 : "basal",
3 : "bolus",
4 : "lab-results",
5 : "meal",
6 : "medical-exams",
7 : "medications",
8 : "notes",
9 : "state-of-health",
10 : "ketone",
15 : "alarms",
16 : "generic",
11 : "reserved",
12 : "reserved",
13 : "reserved",
14 : "reserved"
};
return eventMap[et] || "failure";
},
device_model : function(dm){
return dm;
},
device_id : function(id){
return id;
},
vendor_event_type_id : function(){
return 0;
},
vendor_event_id : function(veid){
return veid;
},
key0 : function(k){
return k;
},
key1 : function(k){
return k;
},
key2 : function(k){
return k;
},
i0 : function(i){
return i;
},
i1 : function(i){
return i;
},
i2 : function(i){
return i;
},
i3 : function(i){
return i;
},
i4 : function(i){
return i;
},
i5 : function(i){
return i;
},
i6 : function(i){
return i;
},
i7 : function(i){
return i;
},
i8 : function(i){
return i;
},
i9 : function(i){
return i;
},
d0 : function(d){
return d;
},
d1 : function(i){
return i;
},
d2 : function(i){
return i;
},
d3 : function(i){
return i;
},
d4 : function(i){
return i;
},
c0 : function(c){
return c;
},
c8 : function(c){
return c;
},
ismanual : function(){
return "";
}
};