-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Configs versioning setup * init implementation guide version in settings screen * remove unused tag * add string resource * fetch composition referenced in IG * add implementationguide to test * Add ImplementationGuide resource * update tests * Update implementation_guide_config.json * Refactor flow * Rename implementationGuideUrl to implementationGuideId - Code cleanup * Format implementation_guide_config.json * Run spotlessApply * Remove implementationGuideId entry from app config - Add name field to IG config - Update variable name * Refactor implementation from config registry * refactor to use IG by version * Run spotlessApply * Refactors and bug fixes * Update sample ImplementationGuide URL and version * Update fetchRemoteIG app URL * Remove flavour from versionName when fetching IG * Save IG after fetch * save ImplementationGuide to database * introduce fetchConfiguration IG test skeletons * Update IG URL to FQDN * find and sort IG by context-quantity * fix failing tests * update IG tests * use implmentaionGuide extension guide * use version code for context-quantity * empty commit to trigger checks * run spotlessApply * remove unnecessary implementationGuide details from userSettingsScreen * spotlessApply * initiate Implementation Guide documentation * Update strings.xml Co-authored-by: Peter Lubell-Doughtie <[email protected]> --------- Co-authored-by: Simon Njoroge <[email protected]> Co-authored-by: Benjamin Mwalimu <[email protected]> Co-authored-by: Peter Lubell-Doughtie <[email protected]>
- Loading branch information
1 parent
d6b014f
commit 99f974e
Showing
9 changed files
with
311 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
android/engine/src/test/assets/configs/app/implementation_guide_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"resourceType": "ImplementationGuide", | ||
"id": "12967310", | ||
"url": "https://fhir.zeir.smartregister.org/fhir/ImplementationGuide/quest", | ||
"version": "1.1.0", | ||
"name": "quest", | ||
"title": "Quest Implementation Guide", | ||
"status": "draft", | ||
"packageId": "org.smartregister.fhircore", | ||
"date": "2024-04-01", | ||
"publisher": "Ona Systems, Inc.", | ||
"fhirVersion": [ | ||
{ | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://hl7.org/fhir/FHIR-version", | ||
"code": "4.3.0", | ||
"display": "4.3.0" | ||
} | ||
], | ||
"text": "FHIR Release 4B." | ||
} | ||
} | ||
], | ||
"useContext": { | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/usage-context-type", | ||
"code": "program", | ||
"display": "Program" | ||
} | ||
], | ||
"text": "Program" | ||
}, | ||
"valueRange": { | ||
"low": { | ||
"value": 1 | ||
}, | ||
"high": { | ||
"value": 10 | ||
} | ||
} | ||
}, | ||
"definition": { | ||
"resource": [ | ||
{ | ||
"reference": { | ||
"reference": "Composition/8294" | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.