Skip to content
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

docs: add State of React Native 2024 banner #6831

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/docs-reanimated/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,12 @@ const config = {
},
],
},
// State of React Native survey banner
announcementBar: {
id: 'state-of-react-native-2024',
content: ' ',
backgroundColor: '#03c',
textColor: '#fff',
backgroundColor: '#b1dfd0',
textColor: '#001a72',
},
footer: {
style: 'light',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,28 @@ import React from 'react';
import clsx from 'clsx';
import ArrowButton from './ArrowButton';
import styles from './styles.module.css';
import useBaseUrl from '@docusaurus/useBaseUrl';

export default function AnnouncementBarContent(props) {
return (
<div className={clsx(styles.content, props.className)}>
<div className={styles.wrapper}>
<strong className={styles.headline}>App.js Conf 2024</strong>
<img
className={styles.logo}
src={useBaseUrl('/img/state-of-react-native-logo.svg')}
alt="State of React Native logo"
/>
<strong className={styles.headline}>State of React Native 2024</strong>
<p className={styles.subText}>
An Expo & React Native conference in Europe is back, May 22-24 in
Kraków, Poland!
Have a few minutes and want to shape the future of React Native?
</p>
</div>
<a
className={styles.link}
href="https://appjs.co/"
href="https://survey.stateofreactnative.com/"
target="_blank"
rel="noreferrer noopener">
<span className={styles.linkTitle}>Learn More</span>
<span className={styles.linkTitle}>Fill out the survey now!</span>
<div className={styles.linkArrowContainer}>
<ArrowButton className={styles.linkArrow} />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
margin: 0 auto;
max-width: 1440px;

padding: 1rem 1.5rem;
padding: 8px 16px;
}

.logo {
height: 36px;
width: 36px;
margin: auto;
grid-area: logo;
}

.content a {
Expand All @@ -15,18 +22,22 @@
.wrapper {
display: flex;
flex-direction: row;
gap: 1rem;
gap: 8px;
align-items: center;
justify-content: center;
}

.headline {
font-size: 16px;
grid-area: headline;
text-wrap: nowrap;
}

p.subText {
font-size: 14px;
text-wrap: balance;
margin: 0;
grid-area: subText;
}

a.link {
Expand All @@ -38,29 +49,36 @@ a.link {
flex-direction: row;
align-items: center;
gap: 6px;
font-size: 12px;
font-size: 14px;
padding: 4px 12px;
border: 1px solid var(--swm-off-white);
border-radius: 6px;
background-color: var(--swm-off-white);
transition: 0.2s ease-in-out;
border: 1px solid var(--swm-navy-light-100);
background-color: var(--swm-navy-light-100);
transition: all 0.2s ease-in-out;
}

.linkTitle {
color: #03c;
color: var(--swm-white);
font-weight: 500;
text-wrap: nowrap;
transition: all 0.2s ease-in-out;
}

.link:hover {
background-color: var(--swm-navy-light-20);
border-color: var(--swm-navy-light-20);
background-color: var(--swm-white);
border-color: var(--swm-navy-light-100);
text-decoration: none;
}

.link:hover .linkTitle,
.link:hover .linkArrow {
color: var(--swm-navy-light-100);
}

.linkArrow {
width: 16px;
height: 16px;
color: #03c;
color: var(--swm-white);
transition: all 0.2s ease-in-out;
}

.linkArrowContainer {
Expand All @@ -73,15 +91,27 @@ a.link {
gap: 12px;
}
.wrapper {
flex-direction: column;
align-items: flex-start;
display: grid;
grid-template-columns: 50px 1fr;
grid-template-areas:
'logo headline'
'logo subText';
gap: 0;
align-items: center;
}
}

@media screen and (max-width: 768px) {
.content {
flex-direction: column;
align-items: flex-start;
padding: 1rem 1.5rem;
padding: 8px 16px;
}
}

@media screen and (max-width: 450px) {
.link {
width: 100%;
justify-content: center;
}
}
6 changes: 3 additions & 3 deletions packages/docs-reanimated/src/theme/AnnouncementBar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ function AnnouncementBar() {
return null;
}

// hide announcement bar after app.js
// hide announcement bar at the end of the State of React Native survey
const today = new Date();
const endOfAppJS = new Date('2024-05-25T00:00:00.000Z');
if (today > endOfAppJS) {
const endOfStateOfReactNative = new Date('2025-01-08T00:00:00.000Z');
if (today > endOfStateOfReactNative) {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
.announcementBar {
display: flex;
font-size: var(--docusaurus-announcement-bar-font-size);
background-image: url(/static/img/appjs.svg), linear-gradient(#03c, #03c);
background-position: 0;
background-size: cover;
color: var(--swm-off-white);
Expand Down Expand Up @@ -34,6 +33,11 @@
opacity: 1;
}

.announcementBarClose svg g {
stroke: var(--swm-navy-light-100);
stroke-width: 2;
}

.announcementBarContent {
flex: 1 1 auto;
}
Expand Down Expand Up @@ -71,3 +75,11 @@
display: none;
}
}

@media screen and (max-width: 450px) {
.buttonContainer {
padding-top: 0;
align-items: center;
justify-content: center;
}
}
1 change: 0 additions & 1 deletion packages/docs-reanimated/static/img/appjs.svg

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading