Building > Contact management
Managing contacts and users in your CHT Application
This tutorial will take you through building a condition card for CHT applications.
Condition cards, like contact summaries display information about the contact. The data displayed in condition cards can be pulled from submitted reports.
In this tutorial,you will be adding a condition card that displays information about a person’s most recent assessment, including: the date of the most recent assessment, and whether or not they had a cough.
Condition cards can be permanent or conditional. They can be set to appear only when a specific type of report is submitted. They can also be set to disappear when a condition is resolved or a certain amount of time has passed.
Condition cards have several configurable elements including:
You should have a functioning CHT instance with cht-conf
installed locally, completed a project folder setup, and an assessment form.
Create a contact-summary.templated.js
file if it doesn’t exist. (This may have already been created by the initialise-project-layout command.)
Add the following dependencies and variable definitions at the top of the file (some of them may have been added from the contact summary tutorial):
const thisContact = contact;
const thisLineage = lineage;
const allReports = reports;
cards
and Add a Condition Card Objectconst thisContact = contact;
const thisLineage = lineage;
const allReports = reports;
const cards = [
{
label: 'contact.profile.assessment_history',
appliesToType: 'report',
appliesIf: (report) => {
const assessmentForm = getNewestReport(allReports, assessmentForms);
return assessmentForm.reported_date >= report.reported_date;
},
fields: [
{
label: 'contact.profile.most_recent_assessment.date',
value: (report) => {
return report.reported_date;
},
filter: 'simpleDate',
width: 6
},
{
label: 'contact.profile.cough',
value: (report) => {
return report.fields.cough;
},
width: 6,
}
]
}
];
cards
Export the defined fields as shown below:
const thisContact = contact;
const thisLineage = lineage;
const allReports = reports;
const cards = [
{
label: 'contact.profile.assessment_history',
appliesToType: 'report',
appliesIf: (report) => {
const assessmentForm = getNewestReport(allReports, assessmentForms);
return assessmentForm.reported_date >= report.reported_date;
},
fields: [
{
label: 'contact.profile.most_recent_assessment.date',
value: (report) => {
return report.reported_date;
},
filter: 'simpleDate',
width: 6
},
{
label: 'contact.profile.cough',
value: (report) => {
return report.fields.cough;
},
width: 6,
}
]
}
];
module.exports = {
cards: cards
};
To compile and upload app settings to your local instance, run the following command:
cht --url=https://<username>:<password>@localhost --accept-self-signed-certs compile-app-settings upload-app-settings
<username>
and <password>
with the actual username and password of your test instance.Managing contacts and users in your CHT Application
Customizing the fields, cards, and actions on profile pages
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.