Skip to content
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

Boban/suspense #1886

Closed
wants to merge 43 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e2af816
update build and start to use standalone
BobanL May 13, 2024
9bedd53
use search params as an import to ecr viewer page
BobanL May 13, 2024
bba2cc7
Add error and loading pages
BobanL May 14, 2024
4f9c922
add missing keys
BobanL May 14, 2024
1eec39d
pull out ecr viewer components into separate file
BobanL May 14, 2024
f31f43a
Merge branch 'main' into boban/suspense
BobanL May 14, 2024
4e54418
Merge branch 'main' into boban/suspense
BobanL May 14, 2024
1810436
add main landmark
BobanL May 14, 2024
b8b30f9
check dom parser to ensure it is on client component.
BobanL May 15, 2024
e823a56
load mappings from loadYamlConfig rather than response of fetch
BobanL May 15, 2024
db7816a
Revert "load mappings from loadYamlConfig rather than response of fetch"
BobanL May 15, 2024
7ec10f2
Revert "check dom parser to ensure it is on client component."
BobanL May 15, 2024
20cbee8
load from yaml config and throw error for not found bundle
BobanL May 15, 2024
cf48c40
revert fhir path mappings to get from api
BobanL May 15, 2024
5b15f30
GET data from server function rather than from api call
BobanL May 15, 2024
26f16fc
Merge branch 'main' into boban/suspense
BobanL May 15, 2024
07a20dc
update EcrViewer page to have h1
BobanL May 15, 2024
08d3957
Merge branch 'main' into boban/suspense
BobanL May 20, 2024
0966546
set tooltips as use client
BobanL May 20, 2024
ad1afb9
Merge branch 'main' into boban/suspense
BobanL May 20, 2024
7276bf5
Make sidenav and expand/collapse buttons "use client"
BobanL May 21, 2024
4657cb2
install jsdom (domparser for node) and dom purify to ensure that misc…
BobanL May 21, 2024
e98e834
ensure valid html for evaluateClincialData
BobanL May 21, 2024
e81f1c3
use client on data display
BobanL May 21, 2024
8650a33
move tests to appropriate places
BobanL May 21, 2024
fd2c399
upgrade testing library react to ensure the same version of @testing-…
BobanL May 21, 2024
69921ef
Merge branch 'boban/refactor-evaluatetable-x2' into boban/suspense
BobanL May 21, 2024
03a1c08
fix import path for loadYamlConfig
BobanL May 21, 2024
16f0a1c
Use a map in Evaluate Table to deterrmine which function to call
BobanL May 21, 2024
fe87867
pull out format table to json to own function
BobanL May 21, 2024
70675d7
remove unused "use client" from ecrViewer
BobanL May 21, 2024
aff85db
Revert "Use a map in Evaluate Table to deterrmine which function to c…
BobanL May 21, 2024
60128d6
fix evaluate table and pull out BuildRow into its own component
BobanL May 21, 2024
d99ccbe
Combine page back with EcrViewer.
BobanL May 21, 2024
5333d6a
Merge branch 'main' into boban/suspense
BobanL May 21, 2024
dfea77b
update packagelock
BobanL May 21, 2024
382e345
add metrics component
BobanL May 21, 2024
6abe83f
import textencoder and decoder for utils.test.tsx
BobanL May 22, 2024
f40d9ef
fix Metric.test.tsx
BobanL May 22, 2024
ec840e9
fix evaluate fhir data service
BobanL May 22, 2024
3aca686
Merge branch 'main' into boban/suspense
BobanL May 22, 2024
b7b4c5f
fix row data in Evaluate Tables
BobanL May 22, 2024
f70c968
install types for dompurify
BobanL May 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions containers/ecr-viewer/jest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ import * as matchers from "jest-extended";

expect.extend(toHaveNoViolations);
expect.extend(matchers);
global.TextEncoder = require("util").TextEncoder;
global.TextDecoder = require("util").TextDecoder;
Loading
Loading