-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'OSIPI:main' into test-results-file
- Loading branch information
Showing
7 changed files
with
775 additions
and
4 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
File renamed without changes.
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,131 @@ | ||
:root { | ||
--primary-color: #072A6A; | ||
--accent-color: #62D58A; | ||
--primary-white: #fff; | ||
--background-color: #f4f4f9; | ||
--shadow: rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Inter', 'Atkinson Hyperlegible', sans-serif; | ||
background-color: var(--background-color); | ||
} | ||
|
||
header { | ||
padding: 1rem 2rem; | ||
background-color: var(--primary-color); | ||
color: var(--primary-white); | ||
} | ||
|
||
.bar-title { | ||
margin: 0; | ||
font-size: 2rem; | ||
font-weight: 600; | ||
} | ||
|
||
.divider { | ||
margin: 0.5rem 0; | ||
border: none; | ||
border-top: 2px solid var(--accent-color); | ||
} | ||
|
||
main { | ||
padding: 2rem; | ||
} | ||
|
||
.filter-wrapper { | ||
margin: 2rem; | ||
font-size: x-large; | ||
font-weight: bold; | ||
} | ||
|
||
.filter-menu { | ||
padding: 0.5rem 1rem; | ||
border: none; | ||
border-radius: 5px; | ||
background-color: var(--primary-color); | ||
color: var(--primary-white); | ||
font-size: 1rem; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease, color 0.3s ease; | ||
} | ||
|
||
.filter-menu:hover { | ||
background-color: var(--accent-color); | ||
} | ||
|
||
.chart-card { | ||
padding: 2rem; | ||
border-radius: 1rem; | ||
box-shadow: 0px 8px 16px var(--shadow); | ||
background-color: var(--primary-white); | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | ||
} | ||
|
||
.chart-card:hover { | ||
transform: translateY(-5px); | ||
box-shadow: 0px 12px 24px var(--shadow); | ||
} | ||
|
||
.slider-container { | ||
display: flex; | ||
align-items: center; | ||
margin: 20px 0; | ||
width: 30%; | ||
} | ||
.slider-label { | ||
margin-right: 10px; | ||
font-weight: bold; | ||
color: #333; | ||
} | ||
.slider { | ||
margin: 0 10px; | ||
flex-grow: 1; | ||
height: 16px; | ||
background: #ddd; | ||
outline: none; | ||
opacity: 0.9; | ||
transition: opacity 1.2s; | ||
} | ||
.slider:hover { | ||
opacity: 1; | ||
height: 25px; | ||
cursor: pointer; | ||
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.slider-value { | ||
margin: 0 10px; | ||
font-weight: bold; | ||
color: #333; | ||
} | ||
|
||
.spinner { | ||
border: 8px solid rgba(0, 0, 0, 0.1); | ||
width: 76px; | ||
height: 76px; | ||
border-radius: 50%; | ||
border-top-color: #3498db; | ||
animation: spin 1s ease-in-out infinite; | ||
} | ||
|
||
@keyframes spin { | ||
to { transform: rotate(360deg); } | ||
} | ||
|
||
.loading-overlay { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
} |
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,104 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>IVIM MRI Algorithm Fitting Dashboard</title> | ||
<!-- Load Plotly.js into the DOM --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.7.1/jszip.min.js"></script> | ||
<script src="https://cdn.plot.ly/plotly-2.30.0.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script> | ||
<script src="index.js"></script> | ||
<link rel="stylesheet" href="index.css"> | ||
</head> | ||
<body> | ||
<div id="root"> | ||
<div class="loading-overlay hidden" id="loadingOverlay"> | ||
<div class="spinner"></div> | ||
</div> | ||
<header> | ||
<h1 class="bar-title">IVIM MRI Algorithm Fitting Dashboard</h1> | ||
<hr class="divider" /> | ||
</header> | ||
<main> | ||
<div class="filter-wrapper"> | ||
<label for="algorithm-select">Algorithm:</label> | ||
<select id="algorithm-select" class="filter-menu"> | ||
<!-- Options will be populated dynamically --> | ||
</select> | ||
|
||
<label for="snr-select">SNR:</label> | ||
<select id="snr-select" class="filter-menu"> | ||
<!-- Options will be populated dynamically --> | ||
</select> | ||
|
||
<label for="type-select">Type: </label> | ||
<select id="type-select" class="filter-menu"> | ||
<option value="D_fitted">Diffusion</option> | ||
<option value="Dp_fitted">Perfusion</option> | ||
<option value="f_fitted">Perfusion Fraction</option> | ||
</select> | ||
|
||
<div class="slider-container"> | ||
<span class="slider-label">Upper Range:</span> | ||
<button id="decrement-range" class="slider-button">-</button> | ||
<input type="range" id="range-slider" class="slider" min="2" max="100" step="1" value="2"> | ||
<button id="increment-range" class="slider-button">+</button> | ||
<span id="range-value" class="slider-value">2</span> | ||
</div> | ||
<div id="lower-slider" class="slider-container"> | ||
<span class="slider-label">Lower Range:</span> | ||
<button id="decrement-lower-range" class="slider-button">+</button> | ||
<input type="range" id="lower-range-slider" class="slider" min="2" max="100" step="2" value="2"> | ||
<button id="increment-lower-range" class="slider-button">-</button> | ||
<span id="lower-range-value" class="slider-value">2</span> | ||
</div> | ||
</div> | ||
<div class="chart-card" id="myDiv"> | ||
<!-- Chart will be rendered here --> | ||
</div> | ||
|
||
|
||
<!-- New section for region-based plot --> | ||
<div class="filter-wrapper"> | ||
<label for="region-select">Region:</label> | ||
<select id="region-select" class="filter-menu"> | ||
<!-- Options will be populated dynamically --> | ||
</select> | ||
|
||
<label for="snr-region-select">SNR:</label> | ||
<select id="snr-region-select" class="filter-menu"> | ||
<!-- Options will be populated dynamically --> | ||
</select> | ||
|
||
<label for="type-region-select">Type: </label> | ||
<select id="type-region-select" class="filter-menu"> | ||
<option value="D_fitted">Diffusion</option> | ||
<option value="Dp_fitted">Perfusion</option> | ||
<option value="f_fitted">Perfusion Fraction</option> | ||
</select> | ||
|
||
<div class="slider-container"> | ||
<span class="slider-label">Upper Range:</span> | ||
<button id="decrement-range-region" class="slider-button">-</button> | ||
<input type="range" id="range-slider-region" class="slider" min="2" max="100" step="2" value="2"> | ||
<button id="increment-range-region" class="slider-button">+</button> | ||
<span id="range-value-region" class="slider-value">2</span> | ||
</div> | ||
<div id="region-lower-slider" class="slider-container"> | ||
<span class="slider-label">Lower Range:</span> | ||
<button id="decrement-lower-range-region" class="slider-button">+</button> | ||
<input type="range" id="lower-range-slider-region" class="slider" min="2" max="100" step="2" value="2"> | ||
<button id="increment-lower-range-region" class="slider-button">-</button> | ||
<span id="lower-range-value-region" class="slider-value">2</span> | ||
</div> | ||
</div> | ||
<div class="chart-card" id="regionDiv"> | ||
<!-- New chart will be rendered here --> | ||
</div> | ||
|
||
|
||
</main> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.