Static Maps integration for ZEIR #2687
Replies: 9 comments 12 replies
-
So far the plan was to handle this with this roadmap item, which does not involve a Questionnaire, https://www.notion.so/onaio/8a1d2a62bfe94535b38e476aa2d54708?v=3c5467c43d44413dacd1f1e6062703b2&p=b2fc3ebe70284ec2b58285a9cffb0e8c&pm=s |
Beta Was this translation helpful? Give feedback.
-
@rowo @HenryRae Kindly share your input on the UX for how we redirect users to access the static maps and back to the app when they need to |
Beta Was this translation helpful? Give feedback.
-
Apple iphone OS has a special "app back button" whenever an app throws you to another app you can tap. Does Android provide the same? I don't remember the original workflow from ZEIR for this. Do you have that handy @f-odhiambo ? I can try to find it if not. In terms of it being satisfactory, this might be more a client discussion. We need something similar in Engage (open up a link to a website that's opened in the phone's default web browser). |
Beta Was this translation helpful? Give feedback.
-
In terms of general implementation (Online case)
Something like {
"title": "Show user Manual",
"titleColor": "#FF0000",
"visible": "true",
"enabled": "true",
"showSeparator": "true",
"actions": [
{
"trigger": "ON_CLICK",
"workflow": "LAUNCH_URL",
"url": {
"link": "https://www.google.com/user_manual.pdf",
"redirect": "true"
}
}
]
}, or Rule {
"name": "content_link",
"condition": "true",
"actions": [
"data.put('content_link', fhirPath.extractValue(SomeReource, \"SomeReource.name[0].select(url)\"))"
]
}, Menu Item {
"title": "Show user Manual",
"titleColor": "#FF0000",
"visible": "true",
"enabled": "true",
"showSeparator": "true",
"actions": [
{
"trigger": "ON_CLICK",
"workflow": "LAUNCH_URL",
"url": {
"link": "@{content_link}",
"redirect": "true"
}
}
]
}, |
Beta Was this translation helpful? Give feedback.
-
@f-odhiambo the above solution makes sense. I have a question and probably a new suggestion. Question
New suggestion
|
Beta Was this translation helpful? Give feedback.
-
The need as of Sept 1st is to get clear requirements on both WDF and Colombia on how the user needs to interact with this requirement |
Beta Was this translation helpful? Give feedback.
-
Btw, this is the issue for Columbia Engage: https://github.com/onaio/fhir-resources/issues/2279. It is incomplete though. |
Beta Was this translation helpful? Give feedback.
-
@f-odhiambo, @pld adding comments from PATH on this feature:
|
Beta Was this translation helpful? Give feedback.
-
On point 1, for the Columbia scenario, it makes sense to do it outside of the app so the client can switch and refer to it while in a counseling session. Otherwise, if inside the app, it would have to be launchable via a form (without exiting the form). |
Beta Was this translation helpful? Give feedback.
-
User Story
Static Maps will be available as PDF documents.
Accessing/Downloading the PDF
These docs can either be
offline
online
Viewing the PDF
From a product perspective, we can use approach 2 above
Beta Was this translation helpful? Give feedback.
All reactions