forked from medic/cht-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nools-extras.js
314 lines (274 loc) · 9.99 KB
/
nools-extras.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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
//const moment = require('moment');
const today = getDateMS(Date.now());
const MS_IN_DAY = 24 * 60 * 60 * 1000;
const MAX_DAYS_IN_PREGNANCY = 42 * 7; // 42 weeks = 294 days
const pregnancyForms = ['pregnancy'];
const deliveryForms = ['delivery'];
const antenatalForms = ['pregnancy_home_visit'];
const allANCForms = ['pregnancy', 'pregnancy_home_visit', 'pregnancy_facility_visit_reminder',
'pregnancy_danger_sign', 'pregnancy_danger_sign_follow_up', 'delivery'];
function isAlive(contact) {
return contact && contact.contact && !contact.contact.date_of_death;
}
const getField = (report, fieldPath) => ['fields', ...(fieldPath || '').split('.')]
.reduce((prev, fieldName) => {
if (prev === undefined) { return undefined; }
return prev[fieldName];
}, report);
function isFormArraySubmittedInWindow(reports, formArray, start, end, count) {
let found = false;
let reportCount = 0;
reports.forEach(function (report) {
if (formArray.includes(report.form)) {
if (report.reported_date >= start && report.reported_date <= end) {
found = true;
if (count) {
reportCount++;
}
}
}
});
if (count) { return reportCount >= count; }
return found;
}
function isFormArraySubmittedInWindowExcludingThisReport(reports, formArray, start, end, exReport, count) {
let found = false;
let reportCount = 0;
reports.forEach(function (report) {
if (formArray.includes(report.form)) {
if (report.reported_date >= start && report.reported_date <= end && report._id !== exReport._id) {
found = true;
if (count) {
reportCount++;
}
}
}
});
if (count) { return reportCount >= count; }
else { return found; }
}
function getMostRecentReport(reports, form) {
let result;
reports.forEach(function (report) {
if (form.includes(report.form) &&
!report.deleted &&
(!result || report.reported_date > result.reported_date)) {
result = report;
}
});
return result;
}
function getNewestPregnancyTimestamp(contact) {
if (!contact.contact) { return; }
const newestPregnancy = getMostRecentReport(contact.reports, 'pregnancy');
return newestPregnancy ? newestPregnancy.reported_date : 0;
}
function getNewestDeliveryTimestamp(contact) {
if (!contact.contact) { return; }
const newestDelivery = getMostRecentReport(contact.reports, 'delivery');
return newestDelivery ? newestDelivery.reported_date : 0;
}
function isFacilityDelivery(contact, report) {
if (!contact) {
return false;
}
if (arguments.length === 1) { report = contact; }
return getField(report, 'facility_delivery') === 'yes';
}
function countReportsSubmittedInWindow(reports, form, start, end, condition) {
let reportsFound = 0;
reports.forEach(function (report) {
if (form.includes(report.form)) {
if (report.reported_date >= start && report.reported_date <= end) {
if (!condition || condition(report)) {
reportsFound++;
}
}
}
});
return reportsFound;
}
function getReportsSubmittedInWindow(reports, form, start, end, condition) {
const reportsFound = [];
reports.forEach(function (report) {
if (form.includes(report.form)) {
if (report.reported_date >= start && report.reported_date <= end) {
if (!condition || condition(report)) {
reportsFound.push(report);
}
}
}
});
return reportsFound;
}
function getDateISOLocal(s) {
if (!s) { return new Date(); }
const b = s.split(/\D/);
const d = new Date(b[0], b[1] - 1, b[2]);
if (isValidDate(d)) { return d; }
return new Date();
}
function getTimeForMidnight(d) {
const date = new Date(d);
date.setHours(0);
date.setMinutes(0);
date.setSeconds(0);
date.setMilliseconds(0);
return date;
}
function getDateMS(d) {
if (typeof d === 'string') {
if (d === '') { return null; }
d = getDateISOLocal(d);
}
return getTimeForMidnight(d).getTime();
}
function isValidDate(d) {
return d instanceof Date && !isNaN(d);
}
function addDays(date, days) {
const result = getTimeForMidnight(new Date(date));
result.setDate(result.getDate() + days);
return result;
}
function isPregnancyForm(report) {
return pregnancyForms.includes(report.form);
}
function isPregnancyFollowUpForm(report) {
return antenatalForms.includes(report.form);
}
function isDeliveryForm(report) {
return deliveryForms.includes(report.form);
}
const getNewestReport = function (reports, forms) {
let result;
reports.forEach(function (report) {
if (!forms.includes(report.form)) { return; }
if (!result || report.reported_date > result.reported_date) {
result = report;
}
});
return result;
};
const getLMPDateFromPregnancy = function (report) {
return isPregnancyForm(report) &&
getDateMS(getField(report, 'lmp_date_8601'));
};
const getLMPDateFromPregnancyFollowUp = function (report) {
return isPregnancyFollowUpForm(report) &&
getDateMS(getField(report, 'lmp_date_8601'));
};
function getSubsequentPregnancies(contact, refReport) {
return contact.reports.filter(function (report) {
return isPregnancyForm(report) && report.reported_date > refReport.reported_date;
});
}
function getSubsequentPregnancyFollowUps(contact, report) {
const subsequentVisits = contact.reports.filter(function (visit) {
let lmpDate = getLMPDateFromPregnancy(report);
if (!lmpDate) { //LMP Date is not available, use reported date
lmpDate = report.reported_date;
}
return isPregnancyFollowUpForm(visit) &&
visit.reported_date > report.reported_date &&
visit.reported_date < addDays(lmpDate, MAX_DAYS_IN_PREGNANCY);
});
return subsequentVisits;
}
function getSubsequentDeliveries(contact, refReport, withinLastXDays) {
return contact.reports.filter(function (deliveryReport) {
return (deliveryReport.form === 'delivery') &&
deliveryReport.reported_date > refReport.reported_date &&
(!withinLastXDays || refReport.reported_date >= (today - withinLastXDays * MS_IN_DAY));
});
}
function getMostRecentLMPDateForPregnancy(contact, report) {
let mostRecentLMP = getLMPDateFromPregnancy(report);
let mostRecentReportDate = report.reported_date;
getSubsequentPregnancyFollowUps(contact, report).forEach(function (v) {
const lmpFromPregnancyFollowUp = getLMPDateFromPregnancyFollowUp(v);
if (v.reported_date > mostRecentReportDate && lmpFromPregnancyFollowUp !== '' && lmpFromPregnancyFollowUp !== mostRecentLMP) {
mostRecentReportDate = v.reported_date;
mostRecentLMP = lmpFromPregnancyFollowUp;
}
});
return mostRecentLMP;
}
function isPregnancyTerminatedByAbortion(contact, report) {
const followUps = getSubsequentPregnancyFollowUps(contact, report);
const latestFollowup = getNewestReport(followUps, antenatalForms);
return latestFollowup && getField(latestFollowup, 'pregnancy_summary.visit_option') === 'abortion';
}
function isPregnancyTerminatedByMiscarriage(contact, report) {
const followUps = getSubsequentPregnancyFollowUps(contact, report);
const latestFollowup = getNewestReport(followUps, antenatalForms);
return latestFollowup && getField(latestFollowup, 'pregnancy_summary.visit_option') === 'miscarriage';
}
function isActivePregnancy(contact, report) {
if (!isPregnancyForm(report)) { return false; }
const lmpDate = getMostRecentLMPDateForPregnancy(contact, report) || report.reported_date;
const isPregnancyRegisteredWithin9Months = lmpDate > today - MAX_DAYS_IN_PREGNANCY * MS_IN_DAY;
const isPregnancyTerminatedByDeliveryInLast6Weeks = getSubsequentDeliveries(contact, report, 6 * 7).length > 0;
const isPregnancyTerminatedByAnotherPregnancyReport = getSubsequentPregnancies(contact, report).length > 0;
return isPregnancyRegisteredWithin9Months &&
!isPregnancyTerminatedByDeliveryInLast6Weeks &&
!isPregnancyTerminatedByAnotherPregnancyReport &&
!isPregnancyTerminatedByAbortion(contact, report) &&
!isPregnancyTerminatedByMiscarriage(contact, report);
}
function countANCFacilityVisits(contact, pregnancyReport) {
let ancHFVisits = 0;
const pregnancyFollowUps = getSubsequentPregnancyFollowUps(contact, pregnancyReport);
if (getField(pregnancyReport, 'anc_visits_hf.anc_visits_hf_past') && !isNaN(getField(pregnancyReport, 'anc_visits_hf.anc_visits_hf_past.visited_hf_count'))) {
ancHFVisits += parseInt(getField(pregnancyReport, 'anc_visits_hf.anc_visits_hf_past.visited_hf_count'));
}
ancHFVisits += pregnancyFollowUps.reduce(function (sum, report) {
const pastANCHFVisits = getField(report, 'anc_visits_hf.anc_visits_hf_past');
if (!pastANCHFVisits) { return 0; }
sum += pastANCHFVisits.last_visit_attended === 'yes' && 1;
if (isNaN(pastANCHFVisits.visited_hf_count)) { return sum; }
return sum += pastANCHFVisits.report_other_visits === 'yes' && parseInt(pastANCHFVisits.visited_hf_count);
},
0);
return ancHFVisits;
}
function getRecentANCVisitWithEvent(contact, report, event) {
//event should be one among miscarriage, abortion, refused, migrated
const followUps = getSubsequentPregnancyFollowUps(contact, report);
const latestFollowup = getNewestReport(followUps, antenatalForms);
if (latestFollowup && getField(latestFollowup, 'pregnancy_summary.visit_option') === event) {
return latestFollowup;
}
}
function isPregnancyTaskMuted(contact) {
const latestVisit = getNewestReport(contact.reports, allANCForms);
return latestVisit && isPregnancyFollowUpForm(latestVisit) &&
getField(latestVisit, 'pregnancy_ended.clear_option') === 'clear_all';
}
module.exports = {
today,
MS_IN_DAY,
MAX_DAYS_IN_PREGNANCY,
addDays,
isAlive,
getTimeForMidnight,
isFormArraySubmittedInWindow,
isFormArraySubmittedInWindowExcludingThisReport,
getDateMS,
getDateISOLocal,
isDeliveryForm,
getMostRecentReport,
getNewestPregnancyTimestamp,
getNewestDeliveryTimestamp,
getReportsSubmittedInWindow,
countReportsSubmittedInWindow,
countANCFacilityVisits,
isFacilityDelivery,
getMostRecentLMPDateForPregnancy,
getNewestReport,
getSubsequentPregnancyFollowUps,
isActivePregnancy,
getRecentANCVisitWithEvent,
isPregnancyTaskMuted,
getField
};