Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
a3b429c
feat: updated the text in home page, remove edges in 3d-graph, and mo…
elainefan331 Jun 13, 2025
3cd2dd6
fix: preview rendering by refining file extension check for query par…
elainefan331 Jun 16, 2025
3152893
fix: clean up the PreviewModal.tsx and fix the UCL 4D neonatal head m…
elainefan331 Jun 25, 2025
4a3414b
test: add spinner test for preview rendering
elainefan331 Jun 26, 2025
286ef07
fix:reset previous rendering and show spinner before loading new prev…
elainefan331 Jun 27, 2025
eaf396e
modify deploy to zodiac action to print the GitHub Ip
elainefan331 Jun 27, 2025
db1fedd
test ssh from github to zodiac
elainefan331 Jun 30, 2025
f970d60
modify build-deploy-zodiac file to test the firewall issue
elainefan331 Jun 30, 2025
d1a5b9b
feat: replaced MeshBasicMaterial with MeshNormalMaterial to visualize…
elainefan331 Jun 30, 2025
d25ee65
updated section3 img in home page
elainefan331 Jul 1, 2025
1fcb701
feat: set up about page route and added link to navigation bar; refs #66
elainefan331 Jul 1, 2025
b665f0f
feat: add introduction and getting started sections to about page; re…
elainefan331 Jul 1, 2025
c043c5d
feat: add introduction video to about page; refs #66
elainefan331 Jul 2, 2025
3bc2a49
feat: update introduction video and add preview video in about page; …
elainefan331 Jul 7, 2025
1dd2200
fix: restore texture_dtype mapping to prevent crash when dragging T T…
elainefan331 Jul 7, 2025
33d5c38
add print GitHub runner public IP in zodiac deploy file
elainefan331 Jul 9, 2025
a70901c
test video access
elainefan331 Jul 9, 2025
ab12296
fix: modify the access path to the video in about page
elainefan331 Jul 9, 2025
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
38 changes: 38 additions & 0 deletions .github/workflows/build-deploy-neurojsonio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# name: Deploy to Production

# on:
# push:
# branches:
# - staging

# jobs:
# deploy:
# runs-on: ubuntu-22.04
# env:
# CI: false

# steps:
# - name: Check out the repository
# uses: actions/checkout@v3

# - name: Install dependencies
# run: yarn install --frozen-lockfile

# - name: Build React App for production
# run: |
# echo "Building for production at root /"
# PUBLIC_URL="/" yarn build

# - name: Copy JS libraries
# run: |
# mkdir -p build/js
# cp -r public/js/* build/js/

# - name: Deploy to neurojson.io
# uses: NeuroJSON/SFTP-Deploy-Action@v1.2.5
# with:
# server: ${{ secrets.NEUROJ_IO_SERVER }}
# username: ${{ secrets.NEUROJ_SERVER_USER }}
# ssh_private_key: ${{ secrets.NEUROJ_SERVER_SSH_KEY }}
# local_path: "./build/*"
# remote_path: "${{ secrets.NEUROJ_CI_PATH }}"
7 changes: 6 additions & 1 deletion .github/workflows/build-deploy-zodiac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ jobs:
id: get_branch
run: echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV

- name: Print GitHub Runner Public IP
run: |
echo "GitHub runner public IP:"
curl https://api.ipify.org

- name: Build React App with Dynamic PUBLIC_URL
run: |
echo "Building for /dev/${{ env.BRANCH_NAME }}/"
PUBLIC_URL="/dev/${{ env.BRANCH_NAME }}/" yarn build

- name: Copy JS libraries (jdata, bjdata etc.)
run: |
mkdir -p build/js
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/video/introduction_video.mp4
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/HomePageComponents/Section1.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ArrowCircleDownIcon from "@mui/icons-material/ArrowCircleDown";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
// import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import SearchIcon from "@mui/icons-material/Search";
import {
Typography,
Expand Down Expand Up @@ -94,8 +94,7 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
},
}}
>
Efficiently manage and explore your databases and datasets with
ease.
Search Findable, Accessible, Interoperable, and Reusable datasets
</Typography>
</Box>
</Grid>
Expand Down Expand Up @@ -128,6 +127,7 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
"& label.Mui-focused": {
color: Colors.darkGreen, // label color when focused
fontWeight: "bold",
transform: "translate(12px, -22px) scale(0.75)", // translate(x, y) move label further up
padding: "5px",
borderRadius: "5px",
},
Expand Down
9 changes: 5 additions & 4 deletions src/components/HomePageComponents/Section3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ const Section3: React.FC<Section3Props> = ({ scrollToNext }) => {
onClick={handleOpen}
>
<img
src={`${process.env.PUBLIC_URL}/img/3cards_vertical.png`}
src={`${process.env.PUBLIC_URL}/img/section3_cards.png`}
alt="rendering feature info cards"
style={{
width: "100%",
width: "70%",
height: "auto",
}}
></img>
Expand All @@ -115,10 +115,11 @@ const Section3: React.FC<Section3Props> = ({ scrollToNext }) => {
</IconButton>

<video controls style={{ width: "100%", borderRadius: "4px" }}>
<source
{/* <source
src="https://neurojson.org/tutorials/overview/neurojsonio_volume_render_short.mp4"
type="video/mp4"
/>
/> */}
<source src="/video/preview_video.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</Box>
Expand Down
3 changes: 2 additions & 1 deletion src/components/NavBar/NavItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ const NavItems: React.FC = () => {
sx={{ mb: { xs: 1 } }}
>
{[
{ text: "ABOUT", url: "https://neurojson.org/Doc/Start" },
// { text: "ABOUT", url: "https://neurojson.org/Doc/Start" },
{ text: "ABOUT", url: RoutesEnum.ABOUT },
{ text: "WIKI", url: "https://neurojson.org/Wiki" },
{ text: "SEARCH", url: RoutesEnum.SEARCH },
{ text: "DATABASES", url: RoutesEnum.DATABASES },
Expand Down
Loading