-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add encounter care team to ecr viewer (#2988)
* fix: update fhir-converter service to point to branch * feat: add encounter care team table * fix: unique ids * test: update snapshot * fix: plumb through date * fix: remove status * test: update snapshots * fix: make metadata optional * test: table value logic * test: add snapshot for table * fix: cleanup * fix: handle missing name * test: update snapshot * Update containers/fhir-converter/Dockerfile
- Loading branch information
1 parent
f414c65
commit 71feb4c
Showing
17 changed files
with
476 additions
and
33 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
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
55 changes: 55 additions & 0 deletions
55
...ers/ecr-viewer/src/app/tests/services/__snapshots__/evaluateFhirDataServices.test.ts.snap
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 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Evaluate Encounter Care Team should return the correct Encounter care team 1`] = ` | ||
<BuildTable | ||
caption="Encounter Care Team" | ||
className="caption-normal-weight margin-bottom-2 caption-data-title margin-y-0" | ||
fixed={false} | ||
headers={ | ||
[ | ||
<th | ||
className="tableHeader bg-gray-5 minw-10" | ||
scope="col" | ||
> | ||
Name | ||
</th>, | ||
<th | ||
className="tableHeader bg-gray-5 minw-10" | ||
scope="col" | ||
> | ||
Role | ||
</th>, | ||
<th | ||
className="tableHeader bg-gray-5 minw-10" | ||
scope="col" | ||
> | ||
Dates | ||
</th>, | ||
] | ||
} | ||
outerBorder={true} | ||
tableRows={ | ||
[ | ||
<tr> | ||
<td> | ||
<span | ||
className="no-data text-italic text-base" | ||
> | ||
No data | ||
</span> | ||
</td> | ||
<td> | ||
ATND | ||
</td> | ||
<td> | ||
<span | ||
className="no-data text-italic text-base" | ||
> | ||
No data | ||
</span> | ||
</td> | ||
</tr>, | ||
] | ||
} | ||
/> | ||
`; |
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.