@ampath/esm-reports-app 1.0.0-next.4 → 1.0.0-next.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/110.js +1 -0
- package/dist/110.js.map +1 -0
- package/dist/{260.js → 205.js} +1 -1
- package/dist/{260.js.map → 205.js.map} +1 -1
- package/dist/812.js +1 -1
- package/dist/812.js.map +1 -1
- package/dist/822.js +2 -0
- package/dist/822.js.map +1 -0
- package/dist/ampath-esm-reports-app.js +1 -1
- package/dist/ampath-esm-reports-app.js.buildmanifest.json +95 -74
- package/dist/ampath-esm-reports-app.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/common/report-filters/report-filters.component.tsx +68 -7
- package/src/common/report-filters/report-filters.scss +42 -0
- package/src/dashboard/reports-dasboard.tsx +21 -0
- package/src/reports/datatable-wrapper/datatable-wrapper.component.tsx +54 -0
- package/src/reports/moh-240/moh-240-header.component.tsx +61 -0
- package/src/reports/moh-240/moh-240.component.tsx +93 -0
- package/src/reports/moh-240/moh-240.scss +11 -0
- package/src/reports/moh-240/sub-reports/moh-240-register.component.tsx +75 -0
- package/src/reports/moh-240/sub-reports/page-summary.component.tsx +98 -0
- package/src/reports/moh-505/moh-505-header.component.tsx +62 -0
- package/src/reports/moh-505/moh-505.component.tsx +440 -0
- package/src/reports/moh-505/moh-505.scss +3 -0
- package/src/reports/moh-705B/moh-204b-register.component.tsx +236 -0
- package/src/reports/moh-705B/moh-705b.component.tsx +524 -0
- package/src/reports/moh-705B/moh-705b.scss +44 -0
- package/src/reports/moh-705a/moh-705a.component.tsx +528 -0
- package/src/reports/moh-705a/moh-705a.scss +45 -0
- package/src/reports/moh-705a/registers/moh-204a-register.component.tsx +321 -0
- package/src/reports/moh-705a/type.ts +6 -0
- package/src/reports/moh-706/moh-706-header.component.tsx +61 -0
- package/src/reports/moh-706/moh-706.component.tsx +117 -0
- package/src/reports/moh-706/moh-706.scss +30 -0
- package/src/reports/moh-706/sub-reports/bacteriology/bacteriology.component.tsx +124 -0
- package/src/reports/moh-706/sub-reports/blood-chemistry/blood-chemistry.component.tsx +318 -0
- package/src/reports/moh-706/sub-reports/drug-susceptibility-testing/drug-susceptibility-testing.component.tsx +137 -0
- package/src/reports/moh-706/sub-reports/haematology/haematology.component.tsx +179 -0
- package/src/reports/moh-706/sub-reports/histology-and-cytology/histology-and-cytology.component.tsx +88 -0
- package/src/reports/moh-706/sub-reports/parasitology/parasitology.component.tsx +121 -0
- package/src/reports/moh-706/sub-reports/serology/serology.component.tsx +47 -0
- package/src/reports/moh-706/sub-reports/specimen-referral-to-higher-levels/specimen-referral-to-higher-levels.component.tsx +39 -0
- package/src/reports/moh-706/sub-reports/urine-analysis/urine-analysis.component.tsx +108 -0
- package/src/reports/moh-710/moh-710.component.tsx +211 -79
- package/src/reports/moh-710/moh-710.scss +5 -1
- package/src/reports/moh-710/registers/moh-511-710-register.component.tsx +263 -0
- package/src/reports/moh-710/registers/type.ts +31 -0
- package/src/reports/moh-711/moh-711.component.tsx +109 -1234
- package/src/reports/moh-711/moh711.scss +92 -8
- package/src/reports/moh-711/registers/moh-333-register.component.tsx +639 -0
- package/src/reports/moh-711/registers/moh-405-register.component.tsx +521 -0
- package/src/reports/moh-711/registers/moh-406-register.component.tsx +533 -0
- package/src/reports/moh-711/registers/moh-510-register.component.tsx +61 -0
- package/src/reports/moh-711/registers/moh-511-register.component.tsx +271 -0
- package/src/reports/moh-711/registers/type.ts +192 -0
- package/src/reports/moh-711/sections/anc.component.tsx +159 -0
- package/src/reports/moh-711/sections/cervical-cancer.component.tsx +148 -0
- package/src/reports/moh-711/sections/chanis.component.tsx +367 -0
- package/src/reports/moh-711/sections/family-planning.component.tsx +221 -0
- package/src/reports/moh-711/sections/gbv.component.tsx +115 -0
- package/src/reports/moh-711/sections/maternity.component.tsx +326 -0
- package/src/reports/moh-711/sections/medical-social-work.component.tsx +83 -0
- package/src/reports/moh-711/sections/other.component.tsx +47 -0
- package/src/reports/moh-711/sections/physiotherapy.component.tsx +61 -0
- package/src/reports/moh-711/sections/pnc.component.tsx +125 -0
- package/src/reports/moh-711/sections/post-abortion.component.tsx +42 -0
- package/src/reports/moh-711/sections/rehabilitation.component.tsx +57 -0
- package/src/reports/moh-711/sections/report-compiled-by.component.tsx +42 -0
- package/src/reports/moh-711/sections/tb-screening.component.tsx +57 -0
- package/src/reports/moh-717/moh-717.component.tsx +120 -946
- package/src/reports/moh-717/moh717.scss +138 -3
- package/src/reports/moh-717/registers/nutrition-register.component.tsx +48 -0
- package/src/reports/moh-717/sections/finance.component.tsx +42 -0
- package/src/reports/moh-717/sections/inpatient.component.tsx +374 -0
- package/src/reports/moh-717/sections/maternity.component.tsx +126 -0
- package/src/reports/moh-717/sections/medical-records.component.tsx +35 -0
- package/src/reports/moh-717/sections/mortuary.component.tsx +43 -0
- package/src/reports/moh-717/sections/operations.component.tsx +53 -0
- package/src/reports/moh-717/sections/orthopaedic-trauma.component.tsx +98 -0
- package/src/reports/moh-717/sections/outpatient.component.tsx +597 -0
- package/src/reports/moh-717/sections/pharmacy.component.tsx +43 -0
- package/src/reports/moh-717/sections/preparedby.component.tsx +47 -0
- package/src/reports/moh-717/sections/special-services.component.tsx +114 -0
- package/src/reports/moh-731/moh-731.component.tsx +181 -0
- package/src/reports/moh-731/moh-731.scss +118 -0
- package/src/reports/moh-731/registers/moh-366.component.tsx +478 -0
- package/src/reports/moh-731/registers/moh-366.scss +45 -0
- package/src/reports/moh-731/registers/prep-register.component.tsx +292 -0
- package/src/reports/moh-731/registers/prep-registers.scss +45 -0
- package/src/reports/moh-731/sections/hiv-and-tb-treatment.component.tsx +932 -0
- package/src/reports/moh-731/sections/hiv-testing-and-pre-exposure.component.tsx +569 -0
- package/src/reports/moh-731/sections/pmtct.component.tsx +451 -0
- package/src/reports/moh-740/moh-740.component.scss +120 -0
- package/src/reports/moh-740/moh-740.component.tsx +1271 -0
- package/src/reports/moh-740/moh-740.resource.ts +42 -0
- package/src/reports/moh-740/registers/moh-222-daily-register/moh-222-daily-register.scss +18 -0
- package/src/reports/moh-740/registers/moh-222-daily-register/moh-222-daily-register.tsx +104 -0
- package/src/reports/moh-740/registers/moh-270-permanent-register/moh-270-permanent-register.scss +18 -0
- package/src/reports/moh-740/registers/moh-270-permanent-register/moh-270-permanent-register.tsx +79 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.scss +0 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.tsx +66 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.scss +6 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.tsx +23 -0
- package/src/reports/moh-740/shared/utils/format-indicator.ts +22 -0
- package/src/reports/moh-740/shared/utils/indicator-register-map.ts +157 -0
- package/src/reports/moh-740/types/index.ts +216 -0
- package/src/reports/moh-745/moh-745.component.tsx +928 -0
- package/src/reports/moh-745/moh-745.scss +74 -0
- package/src/reports/moh-745/registers/moh-412-register.component.tsx +191 -0
- package/src/reports/moh-745/registers/type.ts +30 -0
- package/src/reports/table-wrapper/table-row-mapper.component.tsx +53 -0
- package/src/reports/table-wrapper/table-wrapper.component.tsx +21 -0
- package/src/reports/table-wrapper/table-wrapper.scss +31 -0
- package/src/resources/moh-505.resource.ts +86 -0
- package/src/resources/moh-705.resource.ts +117 -0
- package/src/resources/moh-706.resource.ts +86 -0
- package/src/resources/moh-710.resource.ts +28 -0
- package/src/resources/moh-711.resource.ts +146 -0
- package/src/resources/moh-717.resource.ts +27 -0
- package/src/resources/moh-731.resource.ts +96 -0
- package/src/resources/moh-745.resource.ts +64 -0
- package/src/root.component.tsx +39 -0
- package/src/routes.json +3 -1
- package/src/utils/utils.ts +36 -0
- package/dist/367.js +0 -2
- package/dist/367.js.map +0 -1
- package/dist/86.js +0 -1
- package/dist/86.js.map +0 -1
- /package/dist/{367.js.LICENSE.txt → 822.js.LICENSE.txt} +0 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import styles from '../moh711.scss';
|
|
4
|
+
import classNames from 'classnames';
|
|
5
|
+
import { useNavigate } from 'react-router-dom';
|
|
6
|
+
|
|
7
|
+
interface CervicalCancerComponentProps {
|
|
8
|
+
moh711Data: any;
|
|
9
|
+
startDate: string;
|
|
10
|
+
endDate: string;
|
|
11
|
+
locationUuids: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const CervicalCancerComponent: React.FC<CervicalCancerComponentProps> = ({
|
|
15
|
+
moh711Data,
|
|
16
|
+
startDate,
|
|
17
|
+
endDate,
|
|
18
|
+
locationUuids,
|
|
19
|
+
}) => {
|
|
20
|
+
const navigate = useNavigate();
|
|
21
|
+
|
|
22
|
+
const navigateToRegister = (indicator: string) => {
|
|
23
|
+
navigate(
|
|
24
|
+
`/moh-412-register?startDate=${startDate}&endDate=${endDate}&locationUuids=${locationUuids}&indicator=${indicator}`,
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
return (
|
|
28
|
+
<>
|
|
29
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
30
|
+
<thead>
|
|
31
|
+
<tr>
|
|
32
|
+
<th></th>
|
|
33
|
+
<th colSpan={4}>G. Cervical cancer screening</th>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<th></th>
|
|
37
|
+
<th className={styles.greyBackground}></th>
|
|
38
|
+
<th><25 yrs</th>
|
|
39
|
+
<th>25-49 Years</th>
|
|
40
|
+
<th>50+yrs</th>
|
|
41
|
+
</tr>
|
|
42
|
+
</thead>
|
|
43
|
+
<tbody>
|
|
44
|
+
<tr>
|
|
45
|
+
<td>1</td>
|
|
46
|
+
<td>No. of Clients receiving VIA/VILI/HPV VILI/HPV</td>
|
|
47
|
+
<td onClick={() => navigateToRegister('via_villi_hpv_less_25')}>{moh711Data.via_villi_hpv_less_25}</td>
|
|
48
|
+
<td onClick={() => navigateToRegister('via_villi_hpv_25_49')}>{moh711Data.via_villi_hpv_25_49}</td>
|
|
49
|
+
<td onClick={() => navigateToRegister('via_villi_hpv_50_above')}>{moh711Data.via_villi_hpv_50_above}</td>
|
|
50
|
+
</tr>
|
|
51
|
+
<tr>
|
|
52
|
+
<td>2</td>
|
|
53
|
+
<td>No. screened for Pap smear</td>
|
|
54
|
+
<td onClick={() => navigateToRegister('pap_smear_less_25')}>{moh711Data.pap_smear_less_25}</td>
|
|
55
|
+
<td onClick={() => navigateToRegister('pap_smear_25_49')}>{moh711Data.pap_smear_25_49}</td>
|
|
56
|
+
<td onClick={() => navigateToRegister('pap_smear_50_above')}>{moh711Data.pap_smear_50_above}</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr>
|
|
59
|
+
<td>3</td>
|
|
60
|
+
<td>No. screend for HPV test</td>
|
|
61
|
+
<td onClick={() => navigateToRegister('hpv_test_less_25')}>{moh711Data.hpv_test_less_25}</td>
|
|
62
|
+
<td onClick={() => navigateToRegister('hpv_test_25_49')}>{moh711Data.hpv_test_25_49}</td>
|
|
63
|
+
<td onClick={() => navigateToRegister('hpv_test_50_above')}>{moh711Data.hpv_test_50_above}</td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr>
|
|
66
|
+
<td>4</td>
|
|
67
|
+
<td>No. of clients with Positive VIA/VILI results</td>
|
|
68
|
+
<td onClick={() => navigateToRegister('positive_via_villi_less_25')}>
|
|
69
|
+
{moh711Data.positive_via_villi_less_25}
|
|
70
|
+
</td>
|
|
71
|
+
<td onClick={() => navigateToRegister('positive_via_villi_25_49')}>
|
|
72
|
+
{moh711Data.positive_via_villi_25_49}
|
|
73
|
+
</td>
|
|
74
|
+
<td onClick={() => navigateToRegister('positive_via_villi_50_above')}>
|
|
75
|
+
{moh711Data.positive_via_villi_50_above}
|
|
76
|
+
</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td>5</td>
|
|
80
|
+
<td>No. of clients with Positive Cytology result</td>
|
|
81
|
+
<td onClick={() => navigateToRegister('positive_cytology_less_25')}>
|
|
82
|
+
{moh711Data.positive_cytology_less_25}
|
|
83
|
+
</td>
|
|
84
|
+
<td onClick={() => navigateToRegister('positive_cytology_25_49')}>{moh711Data.positive_cytology_25_49}</td>
|
|
85
|
+
<td onClick={() => navigateToRegister('positive_cytology_50_above')}>
|
|
86
|
+
{moh711Data.positive_cytology_50_above}
|
|
87
|
+
</td>
|
|
88
|
+
</tr>
|
|
89
|
+
<tr>
|
|
90
|
+
<td>6</td>
|
|
91
|
+
<td>No. of clients with Positive HPV results</td>
|
|
92
|
+
<td onClick={() => navigateToRegister('positive_hpv_less_25')}>{moh711Data.positive_hpv_less_25}</td>
|
|
93
|
+
<td onClick={() => navigateToRegister('positive_hpv_25_49')}>{moh711Data.positive_hpv_25_49}</td>
|
|
94
|
+
<td onClick={() => navigateToRegister('positive_hpv_50_above')}>{moh711Data.positive_hpv_50_above}</td>
|
|
95
|
+
</tr>
|
|
96
|
+
<tr>
|
|
97
|
+
<td>7</td>
|
|
98
|
+
<td>No. of clients with suspicious cancer lessions</td>
|
|
99
|
+
<td onClick={() => navigateToRegister('suspicious_cancer_lessions_less_25')}>
|
|
100
|
+
{moh711Data.suspicious_cancer_lessions_less_25}
|
|
101
|
+
</td>
|
|
102
|
+
<td onClick={() => navigateToRegister('suspicious_cancer_lessions_25_49')}>
|
|
103
|
+
{moh711Data.suspicious_cancer_lessions_25_49}
|
|
104
|
+
</td>
|
|
105
|
+
<td onClick={() => navigateToRegister('suspicious_cancer_lessions_50_above')}>
|
|
106
|
+
{moh711Data.suspicious_cancer_lessions_50_above}
|
|
107
|
+
</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td>8</td>
|
|
111
|
+
<td>No. of clients treated using Cryotherapy</td>
|
|
112
|
+
<td onClick={() => navigateToRegister('cryotherapy_treatment_less_25')}>
|
|
113
|
+
{moh711Data.cryotherapy_treatment_less_25}
|
|
114
|
+
</td>
|
|
115
|
+
<td onClick={() => navigateToRegister('cryotherapy_treatment_25_49')}>
|
|
116
|
+
{moh711Data.cryotherapy_treatment_25_49}
|
|
117
|
+
</td>
|
|
118
|
+
<td onClick={() => navigateToRegister('cryotherapy_treatment_50_above')}>
|
|
119
|
+
{moh711Data.cryotherapy_treatment_50_above}
|
|
120
|
+
</td>
|
|
121
|
+
</tr>
|
|
122
|
+
<tr>
|
|
123
|
+
<td>9</td>
|
|
124
|
+
<td>No. of clients treated using LEEP</td>
|
|
125
|
+
<td onClick={() => navigateToRegister('leep_treatment_less_25')}>{moh711Data.leep_treatment_less_25}</td>
|
|
126
|
+
<td onClick={() => navigateToRegister('leep_treatment_25_49')}>{moh711Data.leep_treatment_25_49}</td>
|
|
127
|
+
<td onClick={() => navigateToRegister('leep_treatment_50_above')}>{moh711Data.leep_treatment_50_above}</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td>10</td>
|
|
131
|
+
<td>No of HIV positive clients screened</td>
|
|
132
|
+
<td onClick={() => navigateToRegister('hiv_positive_screened_cervical_cancer_less_25')}>
|
|
133
|
+
{moh711Data.hiv_positive_screened_cervical_cancer_less_25}
|
|
134
|
+
</td>
|
|
135
|
+
<td onClick={() => navigateToRegister('hiv_positive_screened_cervical_cancer_25_49')}>
|
|
136
|
+
{moh711Data.hiv_positive_screened_cervical_cancer_25_49}
|
|
137
|
+
</td>
|
|
138
|
+
<td onClick={() => navigateToRegister('hiv_positive_screened_cervical_cancer_50_above')}>
|
|
139
|
+
{moh711Data.hiv_positive_screened_cervical_cancer_50_above}
|
|
140
|
+
</td>
|
|
141
|
+
</tr>
|
|
142
|
+
</tbody>
|
|
143
|
+
</table>
|
|
144
|
+
</>
|
|
145
|
+
);
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
export default CervicalCancerComponent;
|
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import styles from '../moh711.scss';
|
|
4
|
+
import classNames from 'classnames';
|
|
5
|
+
|
|
6
|
+
interface ChanisComponentProps {
|
|
7
|
+
moh711Data: any;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const ChanisComponent: React.FC<ChanisComponentProps> = ({ moh711Data }) => {
|
|
11
|
+
return (
|
|
12
|
+
<>
|
|
13
|
+
<table className={classNames(`${styles.table}`, `${styles.tableBordered}`, `${styles.tableStriped}`)}>
|
|
14
|
+
<thead>
|
|
15
|
+
<th colSpan={6}></th>
|
|
16
|
+
<tr>
|
|
17
|
+
<th colSpan={6}>F. Child Health and Nutrition Information System</th>
|
|
18
|
+
</tr>
|
|
19
|
+
<tr>
|
|
20
|
+
<th colSpan={2}>Weight for age</th>
|
|
21
|
+
<th></th>
|
|
22
|
+
<th>M</th>
|
|
23
|
+
<th>F</th>
|
|
24
|
+
<th>Total</th>
|
|
25
|
+
</tr>
|
|
26
|
+
</thead>
|
|
27
|
+
<tbody>
|
|
28
|
+
<tr>
|
|
29
|
+
<td rowSpan={6}>1</td>
|
|
30
|
+
<td rowSpan={6}>
|
|
31
|
+
0 - <6 <br /> months
|
|
32
|
+
</td>
|
|
33
|
+
<td>Normal Weight for Age</td>
|
|
34
|
+
<td>{moh711Data.normal_weight_0_6_months_male}</td>
|
|
35
|
+
<td>{moh711Data.normal_weight_0_6_months_female}</td>
|
|
36
|
+
<td></td>
|
|
37
|
+
</tr>
|
|
38
|
+
<tr>
|
|
39
|
+
<td>Underweight</td>
|
|
40
|
+
<td>{moh711Data.underweight_0_6_months_male}</td>
|
|
41
|
+
<td>{moh711Data.underweight_0_6_months_female}</td>
|
|
42
|
+
<td></td>
|
|
43
|
+
</tr>
|
|
44
|
+
<tr>
|
|
45
|
+
<td>Severely underweight</td>
|
|
46
|
+
<td>{moh711Data.severely_underweight_0_6_months_male}</td>
|
|
47
|
+
<td>{moh711Data.severely_underweight_0_6_months_female}</td>
|
|
48
|
+
<td></td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td>Overweight</td>
|
|
52
|
+
<td>{moh711Data.overweight_0_6_months_male}</td>
|
|
53
|
+
<td>{moh711Data.overweight_0_6_months_female}</td>
|
|
54
|
+
<td></td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<td>Obese</td>
|
|
58
|
+
<td>{moh711Data.obese_0_6_months_male}</td>
|
|
59
|
+
<td>{moh711Data.obese_0_6_months_female}</td>
|
|
60
|
+
<td></td>
|
|
61
|
+
</tr>
|
|
62
|
+
<tr>
|
|
63
|
+
<th>Total Weighed</th>
|
|
64
|
+
<td>{moh711Data.obese_0_6_months_male}</td>
|
|
65
|
+
<td>{moh711Data.obese_0_6_months_female}</td>
|
|
66
|
+
<td></td>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr>
|
|
69
|
+
<td rowSpan={6}>2</td>
|
|
70
|
+
<td rowSpan={6}>6-23 months</td>
|
|
71
|
+
<td>Normal Weight for Age</td>
|
|
72
|
+
<td>{moh711Data.normal_weight_6_23_months_male}</td>
|
|
73
|
+
<td>{moh711Data.normal_weight_6_23_months_female}</td>
|
|
74
|
+
<td></td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td>Underweight</td>
|
|
78
|
+
<td>{moh711Data.underweight_6_23_months_male}</td>
|
|
79
|
+
<td>{moh711Data.underweight_6_23_months_female}</td>
|
|
80
|
+
<td></td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td>Severely underweight</td>
|
|
84
|
+
<td>{moh711Data.severely_underweight_6_23_months_male}</td>
|
|
85
|
+
<td>{moh711Data.severely_underweight_6_23_months_female}</td>
|
|
86
|
+
<td></td>
|
|
87
|
+
</tr>
|
|
88
|
+
<tr>
|
|
89
|
+
<td>Overweight</td>
|
|
90
|
+
<td>{moh711Data.overweight_6_23_months_male}</td>
|
|
91
|
+
<td>{moh711Data.overweight_6_23_months_female}</td>
|
|
92
|
+
<td></td>
|
|
93
|
+
</tr>
|
|
94
|
+
<tr>
|
|
95
|
+
<td>Obese 6-23</td>
|
|
96
|
+
<td>{moh711Data.obese_6_23_months_male}</td>
|
|
97
|
+
<td>{moh711Data.obese_6_23_months_female}</td>
|
|
98
|
+
<td></td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<th>Total Weighed</th>
|
|
102
|
+
<td>{moh711Data.obese_6_23_months_male}</td>
|
|
103
|
+
<td>{moh711Data.obese_6_23_months_female}</td>
|
|
104
|
+
<td></td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td rowSpan={6}>3</td>
|
|
108
|
+
<td rowSpan={6}>24 - 59 months</td>
|
|
109
|
+
<td>Normal Weight for Age</td>
|
|
110
|
+
<td>{moh711Data.normal_weight_24_59_months_male}</td>
|
|
111
|
+
<td>{moh711Data.normal_weight_24_59_months_female}</td>
|
|
112
|
+
<td></td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td>Underweight</td>
|
|
116
|
+
<td>{moh711Data.underweight_24_59_months_male}</td>
|
|
117
|
+
<td>{moh711Data.underweight_24_59_months_female}</td>
|
|
118
|
+
<td></td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td>Severely underweight</td>
|
|
122
|
+
<td>{moh711Data.severely_underweight_24_59_months_male}</td>
|
|
123
|
+
<td>{moh711Data.severely_underweight_24_59_months_female}</td>
|
|
124
|
+
<td></td>
|
|
125
|
+
</tr>
|
|
126
|
+
<tr>
|
|
127
|
+
<td>Overweight</td>
|
|
128
|
+
<td>{moh711Data.overweight_24_59_months_male}</td>
|
|
129
|
+
<td>{moh711Data.overweight_24_59_months_female}</td>
|
|
130
|
+
<td></td>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<td>Obese 24-59</td>
|
|
134
|
+
<td>{moh711Data.obese_24_59_months_male}</td>
|
|
135
|
+
<td>{moh711Data.obese_24_59_months_female}</td>
|
|
136
|
+
<td></td>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<th>Total Weighed</th>
|
|
140
|
+
<td>{moh711Data.obese_24_59_months_male}</td>
|
|
141
|
+
<td>{moh711Data.obese_6_23_months_female}</td>
|
|
142
|
+
<td></td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td rowSpan={3}>4</td>
|
|
146
|
+
<td rowSpan={3}>MUAC 6-59 months</td>
|
|
147
|
+
<td>Normal (Green)</td>
|
|
148
|
+
<td>{moh711Data.muac_6_59_months_normal_male}</td>
|
|
149
|
+
<td>{moh711Data.muac_6_59_months_normal_female}</td>
|
|
150
|
+
<td></td>
|
|
151
|
+
</tr>
|
|
152
|
+
<tr>
|
|
153
|
+
<td>Moderate (Yellow)</td>
|
|
154
|
+
<td>{moh711Data.muac_6_59_months_moderate_male}</td>
|
|
155
|
+
<td>{moh711Data.muac_6_59_months_moderate_female}</td>
|
|
156
|
+
<td></td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr>
|
|
159
|
+
<td>Severe (Red)</td>
|
|
160
|
+
<td>{moh711Data.muac_6_59_months_severe_male}</td>
|
|
161
|
+
<td>{moh711Data.muac_6_59_months_severe_female}</td>
|
|
162
|
+
<td></td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<th colSpan={2}>Height for Age</th>
|
|
166
|
+
<th></th>
|
|
167
|
+
<th>F</th>
|
|
168
|
+
<th>M</th>
|
|
169
|
+
<th>Total</th>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr>
|
|
172
|
+
<td rowSpan={4}>5</td>
|
|
173
|
+
<td rowSpan={4}>0-≤6 Months</td>
|
|
174
|
+
<td>Normal Height for Age</td>
|
|
175
|
+
<td>{moh711Data.height_for_age_0_6_months_normal_male}</td>
|
|
176
|
+
<td>{moh711Data.height_for_age_0_6_months_normal_female}</td>
|
|
177
|
+
<td></td>
|
|
178
|
+
</tr>
|
|
179
|
+
<tr>
|
|
180
|
+
<td>Stunted</td>
|
|
181
|
+
<td>{moh711Data.stunted_0_6_months_male}</td>
|
|
182
|
+
<td>{moh711Data.stunted_0_6_months_female}</td>
|
|
183
|
+
<td></td>
|
|
184
|
+
</tr>
|
|
185
|
+
<tr>
|
|
186
|
+
<td>Severely Stunted</td>
|
|
187
|
+
<td>{moh711Data.severely_stunted_0_6_months_male}</td>
|
|
188
|
+
<td>{moh711Data.severely_stunted_0_6_months_female}</td>
|
|
189
|
+
<td></td>
|
|
190
|
+
</tr>
|
|
191
|
+
<tr>
|
|
192
|
+
<th>Total Measured</th>
|
|
193
|
+
<td>{moh711Data.severely_stunted_0_6_months_male}</td>
|
|
194
|
+
<td>{moh711Data.severely_stunted_0_6_months_female}</td>
|
|
195
|
+
<td></td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td rowSpan={4}>6</td>
|
|
199
|
+
<td rowSpan={4}>6 - 23 months</td>
|
|
200
|
+
<td>Normal Height for Age</td>
|
|
201
|
+
<td>{moh711Data.normal_height_for_age_6_23_months_male}</td>
|
|
202
|
+
<td>{moh711Data.normal_height_for_age_6_23_months_female}</td>
|
|
203
|
+
<td></td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td>Stunted</td>
|
|
207
|
+
<td>{moh711Data.stunted_6_23_months_male}</td>
|
|
208
|
+
<td>{moh711Data.stunted_6_23_months_female}</td>
|
|
209
|
+
<td></td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td>Severely Stunted</td>
|
|
213
|
+
<td>{moh711Data.severely_stunted_6_23_months_male}</td>
|
|
214
|
+
<td>{moh711Data.severely_stunted_6_23_months_female}</td>
|
|
215
|
+
<td></td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<th>Total Weighed</th>
|
|
219
|
+
<td>{moh711Data.severely_stunted_0_6_months_male}</td>
|
|
220
|
+
<td>{moh711Data.severely_stunted_0_6_months_female}</td>
|
|
221
|
+
<td></td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td rowSpan={4}>7</td>
|
|
225
|
+
<td rowSpan={4}>24 - 59 months</td>
|
|
226
|
+
<td>Normal Height for Age</td>
|
|
227
|
+
<td>{moh711Data.normal_height_for_age_24_59_months_male}</td>
|
|
228
|
+
<td>{moh711Data.normal_height_for_age_24_59_months_female}</td>
|
|
229
|
+
<td></td>
|
|
230
|
+
</tr>
|
|
231
|
+
<tr>
|
|
232
|
+
<td>Stunted</td>
|
|
233
|
+
<td>{moh711Data.stunted_24_59_months_male}</td>
|
|
234
|
+
<td>{moh711Data.stunted_24_59_months_female}</td>
|
|
235
|
+
<td></td>
|
|
236
|
+
</tr>
|
|
237
|
+
<tr>
|
|
238
|
+
<td>Severely Stunted</td>
|
|
239
|
+
<td>{moh711Data.severely_stunted_24_59_months_male}</td>
|
|
240
|
+
<td>{moh711Data.severely_stunted_24_59_months_female}</td>
|
|
241
|
+
<td></td>
|
|
242
|
+
</tr>
|
|
243
|
+
<tr>
|
|
244
|
+
<th>Total Weighed</th>
|
|
245
|
+
<td>{moh711Data.severely_stunted_0_6_months_male}</td>
|
|
246
|
+
<td>{moh711Data.severely_stunted_0_6_months_female}</td>
|
|
247
|
+
<td></td>
|
|
248
|
+
</tr>
|
|
249
|
+
<tr>
|
|
250
|
+
<th colSpan={3}>Others</th>
|
|
251
|
+
<th>M</th>
|
|
252
|
+
<th>F</th>
|
|
253
|
+
<th>Total</th>
|
|
254
|
+
</tr>
|
|
255
|
+
<tr>
|
|
256
|
+
<td rowSpan={4}>8</td>
|
|
257
|
+
<td rowSpan={4}>0 - 59 Months</td>
|
|
258
|
+
<td>New Visits</td>
|
|
259
|
+
<td>{moh711Data.new_visits_0_59_months_attending_cwc_male}</td>
|
|
260
|
+
<td>{moh711Data.new_visits_0_59_months_attending_cwc_female}</td>
|
|
261
|
+
<td></td>
|
|
262
|
+
</tr>
|
|
263
|
+
<tr>
|
|
264
|
+
<td>Kwashiorkor</td>
|
|
265
|
+
<td>{moh711Data.kwashiokor_0_59_months_male}</td>
|
|
266
|
+
<td>{moh711Data.kwashiokor_0_59_months_female}</td>
|
|
267
|
+
<td></td>
|
|
268
|
+
</tr>
|
|
269
|
+
<tr>
|
|
270
|
+
<td>Marasmus</td>
|
|
271
|
+
<td>{moh711Data.marasmus_0_59_months_male}</td>
|
|
272
|
+
<td>{moh711Data.marasmus_0_59_months_female}</td>
|
|
273
|
+
<td></td>
|
|
274
|
+
</tr>
|
|
275
|
+
<tr>
|
|
276
|
+
<td>Faltering Growth</td>
|
|
277
|
+
<td>{moh711Data.faltering_growth_0_59_months_male}</td>
|
|
278
|
+
<td>{moh711Data.faltering_growth_0_59_months_female}</td>
|
|
279
|
+
<td></td>
|
|
280
|
+
</tr>
|
|
281
|
+
<tr>
|
|
282
|
+
<td>9</td>
|
|
283
|
+
<td>0 - ≤6</td>
|
|
284
|
+
<td>Exclusive breastfeeding</td>
|
|
285
|
+
<td>{moh711Data.exclusive_breastfeeding_0_6_months_male}</td>
|
|
286
|
+
<td>{moh711Data.exclusive_breastfeeding_0_6_months_female}</td>
|
|
287
|
+
<td></td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td>10</td>
|
|
291
|
+
<td> 12-59 Months</td>
|
|
292
|
+
<td>Dewormed</td>
|
|
293
|
+
<td>{moh711Data.dewormed_12_59_months_male}</td>
|
|
294
|
+
<td>{moh711Data.dewormed_12_59_months_female}</td>
|
|
295
|
+
<td></td>
|
|
296
|
+
</tr>
|
|
297
|
+
<tr>
|
|
298
|
+
<td>11</td>
|
|
299
|
+
<td>6-23 months</td>
|
|
300
|
+
<td>MNPs Supplimentation</td>
|
|
301
|
+
<td>{moh711Data.mnps_supplimentation_6_23_months_male}</td>
|
|
302
|
+
<td>{moh711Data.mnps_supplimentation_6_23_months_female}</td>
|
|
303
|
+
<td></td>
|
|
304
|
+
</tr>
|
|
305
|
+
<tr>
|
|
306
|
+
<td>12</td>
|
|
307
|
+
<td colSpan={2}>No. of children who have diarrhoea with severe dehydration</td>
|
|
308
|
+
<td></td>
|
|
309
|
+
<td></td>
|
|
310
|
+
<td></td>
|
|
311
|
+
</tr>
|
|
312
|
+
<tr>
|
|
313
|
+
<td>13</td>
|
|
314
|
+
<td colSpan={2}>No. of children who have diarrhoea with some dehydration</td>
|
|
315
|
+
<td></td>
|
|
316
|
+
<td></td>
|
|
317
|
+
<td></td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td>14</td>
|
|
321
|
+
<td colSpan={2}>No. of children who have diarrhoea with no dehydration</td>
|
|
322
|
+
<td></td>
|
|
323
|
+
<td></td>
|
|
324
|
+
<td></td>
|
|
325
|
+
</tr>
|
|
326
|
+
<tr>
|
|
327
|
+
<td>15</td>
|
|
328
|
+
<td colSpan={2}>No. of children with diarrhoea treated with ORS and Zinc (Co-pack)</td>
|
|
329
|
+
<td></td>
|
|
330
|
+
<td></td>
|
|
331
|
+
<td></td>
|
|
332
|
+
</tr>
|
|
333
|
+
<tr>
|
|
334
|
+
<td>16</td>
|
|
335
|
+
<td colSpan={2}>No. of children with pneumonia treated with Amoxycillin (DT)</td>
|
|
336
|
+
<td></td>
|
|
337
|
+
<td></td>
|
|
338
|
+
<td></td>
|
|
339
|
+
</tr>
|
|
340
|
+
<tr>
|
|
341
|
+
<td>17</td>
|
|
342
|
+
<td colSpan={2}>Under five deaths</td>
|
|
343
|
+
<td></td>
|
|
344
|
+
<td></td>
|
|
345
|
+
<td></td>
|
|
346
|
+
</tr>
|
|
347
|
+
<tr>
|
|
348
|
+
<td>18</td>
|
|
349
|
+
<td colSpan={2}>No. of children with any Kind of disability</td>
|
|
350
|
+
<td></td>
|
|
351
|
+
<td></td>
|
|
352
|
+
<td></td>
|
|
353
|
+
</tr>
|
|
354
|
+
<tr>
|
|
355
|
+
<td>19</td>
|
|
356
|
+
<td colSpan={2}>No. of children with delayed milestones</td>
|
|
357
|
+
<td></td>
|
|
358
|
+
<td></td>
|
|
359
|
+
<td></td>
|
|
360
|
+
</tr>
|
|
361
|
+
</tbody>
|
|
362
|
+
</table>
|
|
363
|
+
</>
|
|
364
|
+
);
|
|
365
|
+
};
|
|
366
|
+
|
|
367
|
+
export default ChanisComponent;
|