-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle empty travel histories as unavailable data #3005
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
ddeb9a0
fix: update fhir-converter service to point to branch
mcmcgrath13 743507e
feat: add encounter care team table
mcmcgrath13 b3a8ac1
fix: unique ids
mcmcgrath13 958f5c5
test: update snapshot
mcmcgrath13 a3aaf8b
fix: plumb through date
mcmcgrath13 d6dc5db
fix: remove status
mcmcgrath13 b173196
test: update snapshots
mcmcgrath13 45fa662
fix: make metadata optional
mcmcgrath13 c6b881e
test: table value logic
mcmcgrath13 de68b77
test: add snapshot for table
mcmcgrath13 84bc11a
fix: cleanup
mcmcgrath13 3ae6963
fix: handle missing name
mcmcgrath13 eda23b9
Merge branch 'main' into mcm/enc-car-team
mcmcgrath13 a69feb3
test: update snapshot
mcmcgrath13 4b144a6
Merge branch 'mcm/enc-car-team' of https://github.com/CDCgov/phdi int…
mcmcgrath13 f18e6e3
Update design review script (#2997)
angelathe 1a25a14
fix: wip - empty table data
mcmcgrath13 7f92640
fix: data then render
mcmcgrath13 63c0e9a
fix: add column name
mcmcgrath13 e45e56a
fix: divider line
mcmcgrath13 105d5c5
test: update tests
mcmcgrath13 2544a6f
test: evaluating empty rows
mcmcgrath13 9cac865
test: empty travel history
mcmcgrath13 c73ed7a
Merge branch 'main' into mcm/fix-phantom-travel-history
mcmcgrath13 2b6eee2
Update containers/ecr-viewer/src/app/services/evaluateFhirDataService.ts
mcmcgrath13 0dc3f3a
fix: pr feedback
mcmcgrath13 43a342c
Merge branch 'mcm/fix-phantom-travel-history' of https://github.com/C…
mcmcgrath13 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
49 changes: 49 additions & 0 deletions
49
containers/ecr-viewer/src/app/tests/assets/BundleTravelHistoryEmpty.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,49 @@ | ||
{ | ||
"resourceType": "Bundle", | ||
"type": "batch", | ||
"entry": [ | ||
{ | ||
"fullUrl": "urn:uuid:595b1386-09d2-7dfb-d414-fb1e5043013d", | ||
"resource": { | ||
"resourceType": "Observation", | ||
"id": "595b1386-09d2-7dfb-d414-fb1e5043013d", | ||
"meta": { | ||
"profile": [ | ||
"http://hl7.org/fhir/us/ecr/StructureDefinition/us-ph-travel-history" | ||
], | ||
"source": [ | ||
"ecr" | ||
] | ||
}, | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "420008001", | ||
"display": "Travel" | ||
} | ||
], | ||
"text": "Travel History" | ||
}, | ||
"status": "final", | ||
"component": [ | ||
{ | ||
"code": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", | ||
"code": "LOC", | ||
"display": "Location" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"request": { | ||
"method": "PUT", | ||
"url": "Observation/595b1386-09d2-7dfb-d414-fb1e5043013d" | ||
} | ||
} | ||
] | ||
} |
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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a duplicate of the definition immediately above