Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
fcf23f00
Commit
fcf23f00
authored
Feb 19, 2025
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] make `isActive` flag optional in featured network config
parent
a5ea1a16
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
NetworkMenuLink.tsx
ui/snippets/networkMenu/NetworkMenuLink.tsx
+16
-1
No files found.
ui/snippets/networkMenu/NetworkMenuLink.tsx
View file @
fcf23f00
...
...
@@ -12,7 +12,7 @@ interface Props extends FeaturedNetwork {
isMobile
?:
boolean
;
}
const
NetworkMenuLink
=
({
title
,
icon
,
isActive
,
isMobile
,
url
,
invertIconInDarkMode
}:
Props
)
=>
{
const
NetworkMenuLink
=
({
title
,
icon
,
isActive
:
isActiveProp
,
isMobile
,
url
,
invertIconInDarkMode
}:
Props
)
=>
{
const
colors
=
useColors
();
const
darkModeFilter
=
{
filter
:
'
brightness(0) invert(1)
'
};
const
style
=
useColorModeValue
({},
invertIconInDarkMode
?
darkModeFilter
:
{});
...
...
@@ -27,6 +27,21 @@ const NetworkMenuLink = ({ title, icon, isActive, isMobile, url, invertIconInDar
/>
);
const
isActive
=
(()
=>
{
if
(
isActiveProp
!==
undefined
)
{
return
isActiveProp
;
}
try
{
const
itemOrigin
=
new
URL
(
url
).
origin
;
const
currentOrigin
=
window
.
location
.
origin
;
return
itemOrigin
===
currentOrigin
;
}
catch
(
error
)
{
return
false
;
}
})();
return
(
<
Box
as=
"li"
listStyleType=
"none"
>
<
Flex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment