Skip to content

Commit 18346d1

Browse files
authored
feat: admin menu: unleash logo in header - links to dashboard (#9676)
1 parent f6e786a commit 18346d1

File tree

1 file changed

+50
-6
lines changed

1 file changed

+50
-6
lines changed

frontend/src/component/menu/Header/Header.tsx

+50-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from 'react';
22
import useMediaQuery from '@mui/material/useMediaQuery';
3-
import { useTheme } from '@mui/material/styles';
3+
import { type Theme, useTheme } from '@mui/material/styles';
44
import { Link } from 'react-router-dom';
55
import {
66
AppBar,
@@ -16,7 +16,6 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
1616
import MenuBookIcon from '@mui/icons-material/MenuBook';
1717
import { ReactComponent as UnleashLogo } from 'assets/img/logoDarkWithText.svg';
1818
import { ReactComponent as UnleashLogoWhite } from 'assets/img/logoWithWhiteText.svg';
19-
import { ReactComponent as CelebatoryUnleashLogo } from 'assets/img/unleashHoliday.svg';
2019

2120
import { DrawerMenu } from './DrawerMenu/DrawerMenu';
2221
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
@@ -28,6 +27,10 @@ import { Notifications } from 'component/common/Notifications/Notifications';
2827
import InviteLinkButton from './InviteLink/InviteLinkButton/InviteLinkButton';
2928
import { useUiFlag } from 'hooks/useUiFlag';
3029
import { CommandBar } from 'component/commandBar/CommandBar';
30+
import { ThemeMode } from 'component/common/ThemeMode/ThemeMode';
31+
import { ReactComponent as CelebratoryUnleashLogo } from 'assets/img/unleashHoliday.svg';
32+
import { ReactComponent as CelebratoryUnleashLogoWhite } from 'assets/img/unleashHolidayDark.svg';
33+
import { useNewAdminMenu } from 'hooks/useNewAdminMenu';
3134

3235
const HeaderComponent = styled(AppBar)(({ theme }) => ({
3336
backgroundColor: theme.palette.background.application,
@@ -68,11 +71,13 @@ const StyledNav = styled('nav')({
6871
flexGrow: 1,
6972
});
7073

71-
const StyledUnleashLogoWhite = styled(UnleashLogoWhite)({ width: '150px' });
74+
const StyledCelebratoryLogo = styled(CelebratoryUnleashLogo)({
75+
height: '50px',
76+
});
7277

73-
const StyledUnleashLogo = styled(UnleashLogo)({ width: '150px' });
78+
const StyledUnleashLogoWhite = styled(UnleashLogoWhite)({ height: '50px' });
7479

75-
const StyledCelebatoryLogo = styled(CelebatoryUnleashLogo)({ width: '150px' });
80+
const StyledUnleashLogo = styled(UnleashLogo)({ height: '50px' });
7681

7782
const StyledLink = styled(Link)(({ theme }) => focusable(theme));
7883

@@ -99,7 +104,12 @@ const Header = () => {
99104
const smallScreen = useMediaQuery(theme.breakpoints.down('lg'));
100105
const [openDrawer, setOpenDrawer] = useState(false);
101106
const toggleDrawer = () => setOpenDrawer((prev) => !prev);
102-
const celebatoryUnleash = useUiFlag('celebrateUnleash');
107+
const celebratoryUnleash = useUiFlag('celebrateUnleash');
108+
const headerLogo = (theme: Theme) => ({
109+
height: '50px',
110+
marginLeft: theme.spacing(1.5),
111+
});
112+
const adminMenu = useNewAdminMenu();
103113

104114
if (smallScreen) {
105115
return (
@@ -131,6 +141,40 @@ const Header = () => {
131141
<HeaderComponent position='static'>
132142
<ContainerComponent>
133143
<StyledNav>
144+
<ConditionallyRender
145+
condition={adminMenu}
146+
show={
147+
<StyledLink
148+
to='/personal'
149+
sx={headerLogo}
150+
aria-label='Home'
151+
>
152+
<ThemeMode
153+
darkmode={
154+
<ConditionallyRender
155+
condition={celebratoryUnleash}
156+
show={
157+
<CelebratoryUnleashLogoWhite />
158+
}
159+
elseShow={
160+
<StyledUnleashLogoWhite aria-label='Unleash logo' />
161+
}
162+
/>
163+
}
164+
lightmode={
165+
<ConditionallyRender
166+
condition={celebratoryUnleash}
167+
show={<StyledCelebratoryLogo />}
168+
elseShow={
169+
<StyledUnleashLogo aria-label='Unleash logo' />
170+
}
171+
/>
172+
}
173+
/>
174+
</StyledLink>
175+
}
176+
/>
177+
134178
<StyledUserContainer>
135179
<CommandBar />
136180
<Divider

0 commit comments

Comments
 (0)