Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f2926c5
Add viv loader
igoroctaviano Apr 7, 2026
de332d5
Improve viewport displaying
igoroctaviano Apr 7, 2026
f7ebea7
Fixing 8-bit: Rendering images correctly (wrong position)
igoroctaviano Apr 7, 2026
42dbd68
Fixing 8-bit: Rendering images correctly (correct position)
igoroctaviano Apr 7, 2026
b2dad70
Add request abort
igoroctaviano Apr 7, 2026
29d36d1
Working: Bulk ann (polygons)
igoroctaviano Apr 8, 2026
457f48e
Working: Bulk ann (polygons)
igoroctaviano Apr 8, 2026
bd5bd55
Linting
igoroctaviano Apr 8, 2026
3fd745d
Linting and padding
igoroctaviano Apr 8, 2026
4fd23eb
Linting and padding and styling
igoroctaviano Apr 8, 2026
c03494a
Merge branch 'master' of github.com:ImagingDataCommons/slim into feat…
igoroctaviano Apr 14, 2026
d4decc8
Fix icc profile for viv mode
igoroctaviano Apr 14, 2026
5f0ea90
Merge branch 'master' into feat/viv-loader
igoroctaviano Apr 14, 2026
c231a79
Merge branch 'master' of github.com:ImagingDataCommons/slim into feat…
igoroctaviano Apr 17, 2026
3277448
Merge branch 'feat/viv-loader' of github.com:ImagingDataCommons/slim …
igoroctaviano Apr 17, 2026
d136f1d
Merge branch 'master' of github.com:ImagingDataCommons/slim into feat…
igoroctaviano May 7, 2026
13bdd9a
Improve performance
igoroctaviano May 7, 2026
a39ec69
Improve performance
igoroctaviano May 7, 2026
d76573d
Add logging and chunk annotations processing
igoroctaviano May 19, 2026
a3147c4
Load images from center outwards
igoroctaviano May 19, 2026
74973e5
Load annotations from center
igoroctaviano May 19, 2026
93987de
Use points to improve memory usage
igoroctaviano May 19, 2026
0614d09
Scale points
igoroctaviano May 19, 2026
6b131ba
Hardening
igoroctaviano May 20, 2026
a312e9e
Add loading indicator for bulk annotation retrieve and processing.
igoroctaviano May 20, 2026
8e803a1
Add tooltip
igoroctaviano May 20, 2026
5def528
Improving image load and caching
igoroctaviano May 20, 2026
7e86241
Update comments
igoroctaviano May 20, 2026
772dbd5
Clean up ci
igoroctaviano May 20, 2026
0dcd397
Add tooltip back
igoroctaviano May 20, 2026
5e21695
Update point size
igoroctaviano May 20, 2026
44a3699
Load ann during retrieval
igoroctaviano Jun 4, 2026
44eef6f
Fix final rendering
igoroctaviano Jun 4, 2026
148a143
Merge branch 'master' into feat/viv-loader
igoroctaviano Jun 5, 2026
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
14 changes: 14 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ module.exports = {
config.experiments = {
asyncWebAssembly: true
}

/* Viv / Deck.gl / Luma ship modern JS; transpile for CRA 5 / webpack 5. */
config.module.rules.push({
test: /\.m?js$/,
include: /node_modules[\\/](@deck\.gl|@luma\.gl|@math\.gl|@probe\.gl|@hms-dbmi[\\/]viv)[\\/]/,
use: {
loader: require.resolve('babel-loader'),
options: {
presets: [require.resolve('babel-preset-react-app/dependencies')],
cacheDirectory: true
}
}
})

return config
}
},
Expand Down
24 changes: 23 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,26 @@
]
},
"dependencies": {
"@deck.gl/core": "9.1.15",
"@deck.gl/extensions": "9.1.15",
"@deck.gl/geo-layers": "9.1.15",
"@deck.gl/layers": "9.1.15",
"@deck.gl/mesh-layers": "9.1.15",
"@deck.gl/react": "9.1.15",
"@deck.gl/widgets": "9.1.15",
"@vivjs/layers": "^0.20.0",
"@vivjs/loaders": "^0.20.0",
"@luma.gl/constants": "~9.1.10",
"@luma.gl/core": "~9.1.10",
"@luma.gl/engine": "~9.1.10",
"@luma.gl/shadertools": "~9.1.10",
"@luma.gl/webgl": "~9.1.10",
"antd": "^4.22.8",
"classnames": "^2.2.6",
"dcmjs": "^0.35.0",
"detect-browser": "^5.2.1",
"dicomweb-client": "^0.11.2",
"dicom-microscopy-viewer": "^0.48.21",
"dicomweb-client": "0.10.3",
"oidc-client": "^1.11.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down Expand Up @@ -91,7 +105,15 @@
},
"pnpm": {
"overrides": {
"@types/minimatch": "5.1.2",
"@types/d3-dispatch": "3.0.6",
"@deck.gl/core": "9.1.15",
"@deck.gl/extensions": "9.1.15",
"@deck.gl/geo-layers": "9.1.15",
"@deck.gl/layers": "9.1.15",
"@deck.gl/mesh-layers": "9.1.15",
"@deck.gl/react": "9.1.15",
"@deck.gl/widgets": "9.1.15",
"axios": "1.17.0",
"nth-check": "2.0.1",
"wrap-ansi": "7.0.0",
Expand Down
Loading
Loading