1
1
import { useState } from 'react' ;
2
2
import useMediaQuery from '@mui/material/useMediaQuery' ;
3
- import { useTheme } from '@mui/material/styles' ;
3
+ import { type Theme , useTheme } from '@mui/material/styles' ;
4
4
import { Link } from 'react-router-dom' ;
5
5
import {
6
6
AppBar ,
@@ -16,7 +16,6 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
16
16
import MenuBookIcon from '@mui/icons-material/MenuBook' ;
17
17
import { ReactComponent as UnleashLogo } from 'assets/img/logoDarkWithText.svg' ;
18
18
import { ReactComponent as UnleashLogoWhite } from 'assets/img/logoWithWhiteText.svg' ;
19
- import { ReactComponent as CelebatoryUnleashLogo } from 'assets/img/unleashHoliday.svg' ;
20
19
21
20
import { DrawerMenu } from './DrawerMenu/DrawerMenu' ;
22
21
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig' ;
@@ -28,6 +27,10 @@ import { Notifications } from 'component/common/Notifications/Notifications';
28
27
import InviteLinkButton from './InviteLink/InviteLinkButton/InviteLinkButton' ;
29
28
import { useUiFlag } from 'hooks/useUiFlag' ;
30
29
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' ;
31
34
32
35
const HeaderComponent = styled ( AppBar ) ( ( { theme } ) => ( {
33
36
backgroundColor : theme . palette . background . application ,
@@ -68,11 +71,13 @@ const StyledNav = styled('nav')({
68
71
flexGrow : 1 ,
69
72
} ) ;
70
73
71
- const StyledUnleashLogoWhite = styled ( UnleashLogoWhite ) ( { width : '150px' } ) ;
74
+ const StyledCelebratoryLogo = styled ( CelebratoryUnleashLogo ) ( {
75
+ height : '50px' ,
76
+ } ) ;
72
77
73
- const StyledUnleashLogo = styled ( UnleashLogo ) ( { width : '150px ' } ) ;
78
+ const StyledUnleashLogoWhite = styled ( UnleashLogoWhite ) ( { height : '50px ' } ) ;
74
79
75
- const StyledCelebatoryLogo = styled ( CelebatoryUnleashLogo ) ( { width : '150px ' } ) ;
80
+ const StyledUnleashLogo = styled ( UnleashLogo ) ( { height : '50px ' } ) ;
76
81
77
82
const StyledLink = styled ( Link ) ( ( { theme } ) => focusable ( theme ) ) ;
78
83
@@ -99,7 +104,12 @@ const Header = () => {
99
104
const smallScreen = useMediaQuery ( theme . breakpoints . down ( 'lg' ) ) ;
100
105
const [ openDrawer , setOpenDrawer ] = useState ( false ) ;
101
106
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 ( ) ;
103
113
104
114
if ( smallScreen ) {
105
115
return (
@@ -131,6 +141,40 @@ const Header = () => {
131
141
< HeaderComponent position = 'static' >
132
142
< ContainerComponent >
133
143
< 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
+
134
178
< StyledUserContainer >
135
179
< CommandBar />
136
180
< Divider
0 commit comments