Skip to content

Commit 64302de

Browse files
authored
Merge pull request #185 from EnCiv/transparent-navbar#182
Transparent navbar#182
2 parents 2659448 + 22a4a1a commit 64302de

File tree

2 files changed

+72
-12
lines changed

2 files changed

+72
-12
lines changed

app/components/top-nav-bar.jsx

+49-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://github.com/EnCiv/civil-pursuit/issues/52
2-
32
// https://github.com/EnCiv/civil-pursuit/issues/144
3+
// https://github.com/EnCiv/civil-pursuit/issues/182
44

55
'use strict'
66

@@ -188,15 +188,41 @@ const TopNavBar = props => {
188188
// Define the styles using the theme object
189189
const useStylesFromThemeFunction = createUseStyles(theme => ({
190190
colors: props => ({
191-
color: props.mode === 'dark' ? 'white' : theme.colors.darkModeGray,
191+
color: (() => {
192+
if (props.mode === 'dark' || props.mode === 'transparent') {
193+
return 'white'
194+
} else if (props.mode === 'light') {
195+
return theme.colors.lightModeColor
196+
} else {
197+
return theme.colors.darkModeGray
198+
}
199+
})(),
192200
}),
193201
topNavBar: props => ({
194202
width: '100%',
203+
zIndex: theme.zIndexes.menu, // The navbar appears below other blocks without zIndex
204+
position: (() => {
205+
if (props.mode === 'transparent') {
206+
return 'absolute'
207+
} else {
208+
return ''
209+
}
210+
})(),
195211
display: 'flex',
196212
justifyContent: 'center',
197213
alignItems: 'center',
198214
fontSize: '1rem',
199-
backgroundColor: props.mode === 'dark' ? theme.colors.darkModeGray : 'white',
215+
backgroundColor: (() => {
216+
if (props.mode === 'dark') {
217+
return theme.colors.darkModeGray
218+
} else if (props.mode === 'light') {
219+
return theme.colors.lightModeColor
220+
} else if (props.mode === 'transparent') {
221+
return 'transparent'
222+
} else {
223+
return 'white'
224+
}
225+
})(),
200226
}),
201227

202228
columnAligner: props => ({
@@ -238,15 +264,16 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
238264
gap: '0.4rem',
239265
transform: 'translateX(-50%)',
240266
alignItems: 'baseline',
241-
zIndex: theme.zIndexes.menu,
242267
[`@media (max-width: ${theme.condensedWidthBreakPoint})`]: {
243268
display: 'none',
244269
},
245270
},
246271
mobileMenuContainer: props => ({
272+
padding: '1.25rem 1.25rem',
247273
display: 'flex',
248274
width: '80%',
249-
background: props.mode === 'dark' ? theme.colors.darkModeGray : theme.colors.encivYellow,
275+
background:
276+
props.mode === 'dark' || props.mode === 'transparent' ? theme.colors.darkModeGray : theme.colors.encivYellow,
250277
flexDirection: 'column',
251278
justifyContent: 'left',
252279
[`@media (min-width: ${theme.condensedWidthBreakPoint})`]: {
@@ -269,7 +296,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
269296
},
270297
'&:hover': {
271298
background: theme.colors.encivYellow,
272-
color: props.mode === 'dark' ? 'black' : 'white',
299+
color: props.mode === 'dark' || props.mode === 'transparent' ? 'black' : 'white',
273300
},
274301
'&:focus': {
275302
outline: `${theme.focusOutline}`,
@@ -283,7 +310,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
283310
cursor: 'default',
284311
background: 'none',
285312
border: 'none',
286-
padding: '0 0 1rem 0',
313+
padding: '0.5rem',
287314
margin: '0',
288315
whiteSpace: 'nowrap',
289316
[`@media (max-width: ${theme.condensedWidthBreakPoint})`]: {
@@ -322,7 +349,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
322349
textAlign: 'left',
323350
'&:hover': {
324351
background: theme.colors.encivYellow,
325-
color: props.mode === 'dark' ? 'black' : 'white',
352+
color: props.mode === 'dark' || props.mode === 'transparent' ? 'black' : 'white',
326353
},
327354
'&:focus': {
328355
outline: `${theme.focusOutline}`,
@@ -336,13 +363,13 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
336363
cursor: 'pointer',
337364
background: 'none',
338365
border: 'none',
339-
padding: '0 0 1rem 0',
366+
padding: '0.5rem',
340367
margin: '0',
341368
whiteSpace: 'nowrap',
342369
textAlign: 'left',
343370
'&:hover': {
344371
background: theme.colors.encivYellow,
345-
color: props.mode === 'dark' ? 'black' : 'white',
372+
color: props.mode === 'dark' || props.mode === 'transparent' ? 'black' : 'white',
346373
},
347374
'&:focus': {
348375
outline: `${theme.focusOutline}`,
@@ -364,7 +391,17 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
364391
width: '15%',
365392
height: 'auto',
366393
fontSize: '1.5rem',
367-
background: props.mode === 'dark' ? theme.colors.darkModeGray : 'white',
394+
background: (() => {
395+
if (props.mode === 'dark') {
396+
return theme.colors.darkModeGray
397+
} else if (props.mode === 'light') {
398+
return theme.colors.lightModeColor
399+
} else if (props.mode === 'transparent') {
400+
return 'transparent'
401+
} else {
402+
return 'white'
403+
}
404+
})(),
368405
border: 'none',
369406
display: 'flex',
370407
justifyContent: 'center',
@@ -374,7 +411,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
374411
},
375412
'&:hover': {
376413
background: theme.colors.encivYellow,
377-
color: props.mode === 'dark' ? 'black' : 'white',
414+
color: props.mode === 'dark' || props.mode === 'transparent' ? 'black' : 'white',
378415
},
379416
}),
380417
menuList: {

stories/top-nav-bar.stories.jsx

+23
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export default {
3838
viewport: {
3939
viewports: INITIAL_VIEWPORTS,
4040
},
41+
backgrounds: {
42+
default: 'gray',
43+
values: [{ name: 'gray', value: '#808080' }],
44+
},
4145
},
4246
}
4347

@@ -173,6 +177,25 @@ export const DarkModeMobile = {
173177
},
174178
}
175179

180+
export const TransparentMode = {
181+
args: {
182+
menu: menuArray,
183+
mode: 'transparent',
184+
},
185+
}
186+
187+
export const TransparentMobileMode = {
188+
args: {
189+
menu: menuArray,
190+
mode: 'transparent',
191+
},
192+
parameters: {
193+
viewport: {
194+
defaultViewport: 'iphonex',
195+
},
196+
},
197+
}
198+
176199
export const VariableParentDiv = () => {
177200
document.getElementsByTagName('body')[0].style.width = '100%' // this is a hack to force full with even through index.css has a media query keeping it at 982
178201
return (

0 commit comments

Comments
 (0)