Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMU-GDMU-CHINA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2024 Competition
SMU-GDMU-CHINA
Commits
03ccc259
Commit
03ccc259
authored
5 months ago
by
Yifeng Wang
Browse files
Options
Downloads
Patches
Plain Diff
test
parent
3690a8dc
No related branches found
No related tags found
No related merge requests found
Pipeline
#443352
failed
5 months ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/components/Navbar copy.css
+89
-0
89 additions, 0 deletions
src/components/Navbar copy.css
src/components/Navbar copy.tsx
+62
-0
62 additions, 0 deletions
src/components/Navbar copy.tsx
src/components/Navbar.tsx
+58
-20
58 additions, 20 deletions
src/components/Navbar.tsx
with
209 additions
and
20 deletions
src/components/Navbar copy.css
0 → 100644
+
89
−
0
View file @
03ccc259
@import
url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500&display=swap')
;
.nav-icon
{
margin-right
:
8px
;
font-size
:
1em
;
vertical-align
:
middle
;
}
.apple-navbar
{
/* background-color: rgba(255, 255, 255, 0.8); */
background-color
:
rgba
(
245
,
245
,
220
,
0.8
);
backdrop-filter
:
saturate
(
180%
)
blur
(
20px
);
border-bottom
:
1px
solid
rgba
(
0
,
0
,
0
,
0.1
);
padding
:
0
;
display
:
flex
;
justify-content
:
center
;
}
.apple-brand
{
padding
:
0
20px
;
margin-right
:
auto
;
}
.apple-logo
{
height
:
68px
;
width
:
auto
;
}
.apple-nav
{
font-family
:
'SF Pro Display'
,
-apple-system
,
BlinkMacSystemFont
,
'Segoe UI'
,
Roboto
,
Oxygen
,
Ubuntu
,
Cantarell
,
'Open Sans'
,
'Helvetica Neue'
,
sans-serif
;
margin-right
:
auto
;
}
.apple-nav
.nav-link
,
.apple-nav
.dropdown-toggle
{
display
:
flex
;
align-items
:
center
;
color
:
#000
;
font-size
:
20px
;
font-weight
:
300
;
padding
:
12px
20px
;
transition
:
opacity
0.2s
ease
;
}
.apple-nav
.nav-link
:hover
,
.apple-nav
.dropdown-toggle
:hover
{
opacity
:
0.65
;
}
.apple-nav
.dropdown-menu
{
background-color
:
rgba
(
255
,
255
,
255
,
0.8
);
backdrop-filter
:
saturate
(
180%
)
blur
(
20px
);
border
:
none
;
border-radius
:
8px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
.apple-nav
.dropdown-item
{
color
:
#000
;
font-size
:
18px
;
font-weight
:
300
;
padding
:
10px
20px
;
}
.apple-nav
.dropdown-item
:hover
{
background-color
:
rgba
(
0
,
0
,
0
,
0.05
);
}
.apple-toggler
{
border
:
none
;
padding
:
0
20px
;
}
.apple-toggler
:focus
{
box-shadow
:
none
;
}
@media
(
max-width
:
991px
)
{
.apple-navbar
{
padding
:
10px
0
;
justify-content
:
flex-start
;
}
.apple-nav
.nav-link
,
.apple-nav
.dropdown-toggle
{
padding
:
10px
20px
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/components/Navbar copy.tsx
0 → 100644
+
62
−
0
View file @
03ccc259
import
Nav
from
"
react-bootstrap/Nav
"
;
import
BootstrapNavbar
from
"
react-bootstrap/Navbar
"
;
import
NavDropdown
from
"
react-bootstrap/NavDropdown
"
;
import
{
Link
}
from
"
react-router-dom
"
;
import
Pages
from
"
../pages.ts
"
;
import
{
Container
}
from
"
react-bootstrap
"
;
import
"
./Navbar.css
"
;
// 添加这行来引入自定义 CSS 文件的
export
function
Navbar
()
{
const
pages
=
Pages
.
map
((
item
,
pageIndex
)
=>
{
if
(
"
folder
"
in
item
&&
item
.
folder
)
{
const
folderItems
=
item
.
folder
.
map
((
subpage
,
subpageIndex
)
=>
{
if
(
subpage
.
path
)
{
return
(
<
NavDropdown
.
Item
key
=
{
`subpage-
${
pageIndex
}
-
${
subpageIndex
}
`
}
as
=
{
Link
}
to
=
{
subpage
.
path
}
className
=
"custom-dropdown-menu"
>
{
subpage
.
name
}
</
NavDropdown
.
Item
>
);
}
});
return
(
<
NavDropdown
key
=
{
`page-
${
pageIndex
}
`
}
title
=
{
item
.
name
}
id
=
"basic-nav-dropdown"
className
=
"custom-dropdown-menu"
>
{
folderItems
}
</
NavDropdown
>
);
}
else
if
(
"
path
"
in
item
&&
item
.
path
)
{
return
(
<
Nav
.
Link
key
=
{
`page-
${
pageIndex
}
`
}
as
=
{
Link
}
to
=
{
item
.
path
}
className
=
"custom-dropdown-menu"
>
{
item
.
name
}
</
Nav
.
Link
>
);
}
});
return
(
<
BootstrapNavbar
expand
=
"lg"
className
=
"apple-navbar"
fixed
=
"top"
>
<
Container
fluid
>
<
BootstrapNavbar
.
Brand
as
=
{
Link
}
to
=
"/"
className
=
"apple-brand"
>
<
img
src
=
"https://static.igem.wiki/teams/5378/lesser-panda/logo.webp"
className
=
"apple-logo"
alt
=
"Logo"
/>
</
BootstrapNavbar
.
Brand
>
<
BootstrapNavbar
.
Toggle
aria-controls
=
"basic-navbar-nav"
className
=
"apple-toggler"
/>
<
BootstrapNavbar
.
Collapse
id
=
"basic-navbar-nav"
>
<
Nav
className
=
"ms-auto apple-nav"
>
{
pages
}
</
Nav
>
</
BootstrapNavbar
.
Collapse
>
</
Container
>
</
BootstrapNavbar
>
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/components/Navbar.tsx
+
58
−
20
View file @
03ccc259
// 导入图标
import
Nav
from
"
react-bootstrap/Nav
"
;
import
BootstrapNavbar
from
"
react-bootstrap/Navbar
"
;
import
NavDropdown
from
"
react-bootstrap/NavDropdown
"
;
import
{
Link
}
from
"
react-router-dom
"
;
import
Pages
from
"
../pages.ts
"
;
import
{
Container
}
from
"
react-bootstrap
"
;
import
"
./Navbar.css
"
;
// 添加这行来引入自定义 CSS 文件的
import
"
./Navbar.css
"
;
// 导入更多图标
import
{
FaHome
,
FaFolder
,
FaInfo
,
FaFlask
,
FaUsers
,
FaCog
,
FaBook
,
FaTrophy
,
FaLightbulb
,
FaChartBar
}
from
"
react-icons/fa
"
;
// 创建一个图标映射对象
const
iconMap
=
{
Home
:
FaHome
,
About
:
FaInfo
,
Team
:
FaUsers
,
Project
:
FaFlask
,
Parts
:
FaCog
,
Lab
:
FaBook
,
Human
:
FaUsers
,
Model
:
FaChartBar
,
Results
:
FaTrophy
,
Implementation
:
FaLightbulb
,
// 添加更多映射...
};
export
function
Navbar
()
{
const
pages
=
Pages
.
map
((
item
,
pageIndex
)
=>
{
if
(
"
folder
"
in
item
&&
item
.
folder
)
{
const
folderItems
=
item
.
folder
.
map
((
subpage
,
subpageIndex
)
=>
{
if
(
subpage
.
path
)
{
const
SubIcon
=
iconMap
[
subpage
.
name
]
||
FaFolder
;
return
(
<
NavDropdown
.
Item
key
=
{
`subpage-
${
pageIndex
}
-
${
subpageIndex
}
`
}
...
...
@@ -19,7 +48,7 @@ export function Navbar() {
to
=
{
subpage
.
path
}
className
=
"custom-dropdown-menu"
>
{
subpage
.
name
}
<
SubIcon
className
=
"nav-icon"
/>
{
subpage
.
name
}
</
NavDropdown
.
Item
>
);
}
...
...
@@ -27,7 +56,11 @@ export function Navbar() {
return
(
<
NavDropdown
key
=
{
`page-
${
pageIndex
}
`
}
title
=
{
item
.
name
}
title
=
{
<>
<
FaFolder
className
=
"nav-icon"
/>
{
item
.
name
}
</>
}
id
=
"basic-nav-dropdown"
className
=
"custom-dropdown-menu"
>
...
...
@@ -35,28 +68,33 @@ export function Navbar() {
</
NavDropdown
>
);
}
else
if
(
"
path
"
in
item
&&
item
.
path
)
{
const
Icon
=
iconMap
[
item
.
name
]
||
FaFolder
;
return
(
<
Nav
.
Link
key
=
{
`page-
${
pageIndex
}
`
}
as
=
{
Link
}
to
=
{
item
.
path
}
className
=
"custom-dropdown-menu"
key
=
{
`page-
${
pageIndex
}
`
}
as
=
{
Link
}
to
=
{
item
.
path
}
className
=
"custom-dropdown-menu"
>
{
item
.
name
}
<
Icon
className
=
"nav-icon"
/>
{
item
.
name
}
</
Nav
.
Link
>
);
}
});
return
(
<
BootstrapNavbar
expand
=
"lg"
className
=
"apple-navbar"
fixed
=
"top"
>
<
Container
fluid
>
<
BootstrapNavbar
.
Brand
as
=
{
Link
}
to
=
"/"
className
=
"apple-brand"
>
<
img
src
=
"https://static.igem.wiki/teams/5378/lesser-panda/logo.webp"
className
=
"apple-logo"
alt
=
"Logo"
/>
</
BootstrapNavbar
.
Brand
>
<
BootstrapNavbar
.
Toggle
aria-controls
=
"basic-navbar-nav"
className
=
"apple-toggler"
/>
<
BootstrapNavbar
.
Collapse
id
=
"basic-navbar-nav"
>
<
Nav
className
=
"ms-auto apple-nav"
>
{
pages
}
</
Nav
>
</
BootstrapNavbar
.
Collapse
>
</
Container
>
</
BootstrapNavbar
>
);
return
(
<
BootstrapNavbar
expand
=
"lg"
className
=
"apple-navbar"
fixed
=
"top"
>
<
Container
fluid
>
<
BootstrapNavbar
.
Brand
as
=
{
Link
}
to
=
"/"
className
=
"apple-brand"
>
<
img
src
=
"https://static.igem.wiki/teams/5378/lesser-panda/logo.webp"
className
=
"apple-logo"
alt
=
"Logo"
/>
</
BootstrapNavbar
.
Brand
>
<
BootstrapNavbar
.
Toggle
aria-controls
=
"basic-navbar-nav"
className
=
"apple-toggler"
/>
<
BootstrapNavbar
.
Collapse
id
=
"basic-navbar-nav"
>
<
Nav
className
=
"ms-auto apple-nav"
>
{
pages
}
</
Nav
>
</
BootstrapNavbar
.
Collapse
>
</
Container
>
</
BootstrapNavbar
>
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment