-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor card wrapper top bar #13655
Conversation
Size Change: -4 B (0%) Total Size: 910 kB ℹ️ View Unchanged
|
762c431
to
dcefc55
Compare
dcefc55
to
c47b974
Compare
@@ -1505,6 +1506,8 @@ export const WithNoGap = () => { | |||
{...basicCardProps} | |||
imagePositionOnDesktop="left" | |||
isOnwardContent={true} | |||
showTopBarDesktop={false} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Onwards content doesn't have a top bar on mobile or desktop, so adding these props make sense for this story
@@ -407,7 +407,7 @@ export const Card = ({ | |||
index = 0, | |||
isFlexSplash, | |||
showTopBarDesktop = true, | |||
showTopBarMobile = false, | |||
showTopBarMobile = true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before this change, a top bar would be shown on mobile if either showTopBarDesktop
or showTopBarMobile
was true
@@ -752,10 +752,10 @@ export const Card = ({ | |||
return ( | |||
<CardWrapper | |||
format={format} | |||
showTopBarDesktop={!isOnwardContent && showTopBarDesktop} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Carousel calling the card component now specifies that there shouldn't be a top bar at both screen sizes when the card is Onwards Content, so this extra check isn't needed.
c47b974
to
d5151de
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good find, thanks for taking the time to do this ✨ 🧹
Seen on PROD (merged by @domlander 10 minutes and 3 seconds ago) Please check your changes! |
What does this change?
We have a couple of props
showTopBarMobile
andshowTopBarDesktop
that we pass into theCardWrapper
component. The former works as you'd expect: if true, a horizontal line will be shown above the card on mobile screen sizes. However, the latter does not work as you'd expect. A top bar is shown at all device sizes if this prop is true. This PR refactors this behaviour so that ifshowTopBarDesktop
is true, a horizontal line will be shown above the card on desktop screen sizes.Why?
Code health.