-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for display of image analysis results (#87)
* Expose new library features for display of analysis results * Add menus for segments, mappings, and annotation groups * Upgrade dependencies * Unify handling of optical paths for color and grayscale images * Add loading indicator * Ensure roi annotations are re-rendered upon modification * Support configuration of dark/light app mode * Fix selection of volume images * Improve styling of overview * Enable dynamic selection of DICOMweb server via UI * Improve handling of reference objects * Render specimen metadata in compacter form * Improve fetching of wasm code * Fix recreation of viewers on page reload * Improve styling of slide viewer sidebar * Work around common standard compliance issues * Update preview configuration * Configure webpack and jest in craco config file * Update docker-compose configuration * Sort slides by series number * Add github pages deployment workflow * Update ignore files * Update README Co-authored-by: Chris Gorman <[email protected]>
- Loading branch information
Showing
65 changed files
with
8,009 additions
and
6,860 deletions.
There are no files selected for viewing
17 changes: 13 additions & 4 deletions
17
...rkflows/firebase-hosting-pull-request.yml → ...hub/workflows/deploy_firebase_hosting.yml
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Deploy to gh-pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
gh-pages-deploy: | ||
name: Deploying to gh-pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo npm install -g yarn | ||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: Build and deploy with gh-pages | ||
run: | | ||
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | ||
yarn deploy -- -u "github-actions-bot <[email protected]>" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
name: unit tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build_and_test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: ["14.x", "16.x"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build with craco | ||
run: yarn build | ||
- name: Lint with standard | ||
run: yarn lint | ||
- name: Test with jest | ||
run: yarn test |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
tmp | ||
public/config/* | ||
!public/config/local.js |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module.exports = { | ||
presets: [ | ||
"@babel/preset-env", | ||
"@babel/preset-react", | ||
"@babel/preset-typescript" | ||
'@babel/preset-env', | ||
'@babel/preset-react', | ||
'@babel/preset-typescript' | ||
] | ||
} |
Oops, something went wrong.