Manual setup (Advanced)
We discourage setting up plugins manually, as it is a complex process that can lead to errors. We recommend using the Tracker Configurator App to set up plugins. This will ensure that the plugins are correctly configured and that they work as expected.
Introduction
To start using this feature, you need to provide a configuration object that describes the layout of the page. This configuration object is stored in the data store and is used to render the page. Each enrollment page has a separate key and config in the data store. When booting the capture application, we will look in the dataStore for these keys, each mapping to a page in the Enrollment Pages (Dashboard, Add Event and Edit Event):
We assume that you will already have these three keys under the capture
namespace in the datastore. If you do not have them, please create them before proceeding.
Page | Key |
---|---|
Enrollment Dashboard | enrollmentOverviewLayout |
Enrollment Add Event | enrollmentEventNewLayout |
Enrollment Edit Event | enrollmentEventEditLayout |
Default configuration
This is the default configuration that we use in the Capture app. You can use this as a starting point to customize the layout of the enrollment pages.
Each configuration object is prefixed with the id of the Tracker program that it belongs to. This way you can have different configurations for different programs. You can also have different layouts for the three different enrollment pages.
- Enrollment Dashboard
- Add Event
- Edit Event
{
"IpHINAT79UW": {
"title": "Child Programme dashboard",
"leftColumn": [
{
"type": "component",
"name": "QuickActions"
},
{
"type": "component",
"name": "StagesAndEvents"
}
],
"rightColumn": [
{
"type": "component",
"name": "TrackedEntityRelationship"
},
{
"type": "component",
"name": "ErrorWidget"
},
{
"type": "component",
"name": "WarningWidget"
},
{
"type": "component",
"name": "FeedbackWidget"
},
{
"type": "component",
"name": "IndicatorWidget"
},
{
"type": "component",
"name": "EnrollmentNote"
},
{
"type": "component",
"name": "ProfileWidget",
"settings": {
"readOnlyMode": false
}
},
{
"type": "component",
"name": "EnrollmentWidget",
"settings": {
"readOnlyMode": false
}
}
]
}
}
{
"IpHINAT79UW": {
"title": "Child Programme: Add Event",
"leftColumn": [
{
"type": "component",
"name": "NewEventWorkspace"
}
],
"rightColumn": [
{
"type": "component",
"name": "ErrorWidget"
},
{
"type": "component",
"name": "WarningWidget"
},
{
"type": "component",
"name": "FeedbackWidget"
},
{
"type": "component",
"name": "IndicatorWidget"
},
{
"type": "component",
"name": "TrackedEntityRelationship"
},
{
"type": "component",
"name": "ProfileWidget",
"settings": {
"readOnlyMode": true
}
},
{
"type": "component",
"name": "EnrollmentWidget",
"settings": {
"readOnlyMode": true
}
}
]
}
}
{
"IpHINAT79UW": {
"title": "Child Programme: Edit Event",
"leftColumn": [
{
"type": "component",
"name": "EditEventWorkspace"
}
],
"rightColumn": [
{
"type": "component",
"name": "ErrorWidget"
},
{
"type": "component",
"name": "WarningWidget"
},
{
"type": "component",
"name": "FeedbackWidget"
},
{
"type": "component",
"name": "IndicatorWidget"
},
{
"type": "component",
"name": "EventNote"
},
{
"type": "component",
"name": "WidgetAssignee"
},
{
"type": "component",
"name": "TrackedEntityRelationship"
},
{
"type": "component",
"name": "ProfileWidget",
"settings": {
"readOnlyMode": true
}
},
{
"type": "component",
"name": "EnrollmentWidget",
"settings": {
"readOnlyMode": true
}
}
]
}
}`}
Supported components
These are the components that we natively support in the Capture app. Use these key in the config to render the corresponding widget in the app.
type DefaultComponents = 'QuickActions'
| 'StagesAndEvents'
| 'AssigneeWidget'
| 'NewEventWorkspace'
| 'EditEventWorkspace'
| 'EnrollmentNote'
| 'EventNote'
| 'TrackedEntityRelationship'
| 'ErrorWidget'
| 'WarningWidget'
| 'FeedbackWidget'
| 'IndicatorWidget'
| 'ProfileWidget'
| 'EnrollmentWidget';
Additional settings
Some components will also have additional settings that can be overridden by the config.
// ProfileWidget
type settings = {
readOnlyMode: boolean
}
// EnrollmentWidget
type settings = {
readOnlyMode: boolean
}
Enrollment plugins
You can also extend the configurations to render your own custom plugins. You can do this by adding a new component to the configuration object and providing the source URL of the plugin.
{
"type": "plugin",
"source": "http://localhost:3001/plugin.html"
}
You would place this inside either the leftColumn
or rightColumn
array.
"leftColumn": [
{
"type": "component",
"name": "EditEventWorkspace"
},
{
"type": "plugin",
"source": "http://localhost:3001/plugin.html"
}
],