-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1258 from FNNDSC/pacs-progress-websockets
Pacs progress websockets
- Loading branch information
Showing
133 changed files
with
9,622 additions
and
3,619 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,8 @@ VITE_CHRIS_UI_AUTH_URL="http://localhost:8000/api/v1/auth-token/" | |
VITE_ALPHA_FEATURES='production' | ||
|
||
# Set PFDCM_URL to the root url of the running pfdcm instance | ||
VITE_PFDCM_URL="http://localhost:4005/" | ||
# note: must *not* have trailing slash | ||
VITE_PFDCM_URL="http://localhost:4005" | ||
|
||
# (optional) set URL of an OHIF browser which has the same studies as the PFDCM | ||
# VITE_OHIF_URL="http://localhost:8042/ohif/" | ||
|
@@ -34,7 +35,13 @@ VITE_PFDCM_URL="http://localhost:4005/" | |
# VITE_ACKEE_SERVER="http://localhost:3050" | ||
# VITE_ACKEE_DOMAIN_ID="lol-lol-lol" | ||
|
||
# How often to poll CUBE, in milliseconds. | ||
VITE_CUBE_POLL_INTERVAL_MS=2000 | ||
|
||
VITE_SOURCEMAP='false' | ||
|
||
# URI for support requests | ||
VITE_SUPPORT_URL='mailto:[email protected]' | ||
|
||
# Set URL for the store if you want to see it in the sidebar | ||
VITE_CHRIS_STORE_URL= "https://cube.chrisproject.org/api/v1/" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
"chrisomatic": "testing/chrisomatic.sh", | ||
"get-dicoms": "./testing/getDicoms.mjs", | ||
"list-mrns": "./testing/miniChRIS/scripts/list_mrns.sh", | ||
"upload-dicom": "./testing/miniChRIS/scripts/upload2orthanc.sh", | ||
"lint": "biome lint .", | ||
"fix": "biome check --apply .", | ||
"fix:unsafe": "biome check --apply-unsafe .", | ||
|
@@ -37,6 +38,7 @@ | |
"print-version": "node printVersion.js" | ||
}, | ||
"dependencies": { | ||
"@ant-design/icons": "^5.5.1", | ||
"@cornerstonejs/core": "^1.84.4", | ||
"@cornerstonejs/dicom-image-loader": "^1.84.4", | ||
"@cornerstonejs/streaming-image-volume-loader": "^1.84.4", | ||
|
@@ -91,6 +93,7 @@ | |
"react-responsive": "^10.0.0", | ||
"react-router": "^6.26.2", | ||
"react-router-dom": "^6.26.2", | ||
"react-use-websocket": "^4.8.1", | ||
"redux-saga": "^1.3.0", | ||
"rusha": "^0.8.14", | ||
"sanitize-html": "^2.13.0", | ||
|
@@ -106,6 +109,9 @@ | |
"@faker-js/faker": "^9.0.1", | ||
"@playwright/test": "^1.46.1", | ||
"@redux-devtools/extension": "^3.3.0", | ||
"@testing-library/dom": "^10.4.0", | ||
"@testing-library/jest-dom": "^6.5.0", | ||
"@testing-library/react": "^16.0.1", | ||
"@types/d3-hierarchy": "3.1.7", | ||
"@types/d3-selection": "3.0.10", | ||
"@types/d3-shape": "^3.1.6", | ||
|
@@ -125,8 +131,8 @@ | |
"redux-logger": "4.0.0", | ||
"vite": "5.4.6", | ||
"vite-plugin-istanbul": "^6.0.2", | ||
"vite-plugin-node-polyfills": "^0.22.0", | ||
"vitest": "2.1.1" | ||
"vitest": "^2.1.1", | ||
"vitest-websocket-mock": "^0.4.0" | ||
}, | ||
"type": "module", | ||
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b" | ||
|
Oops, something went wrong.