Skip to content

feat: Launch survey #153

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

Merged
merged 7 commits into from
Apr 29, 2024
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
45 changes: 30 additions & 15 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ module.exports = {
projectName: 'gulpjs.github.io',
// The theme
themeConfig: {
announcementBar: {
id: 'state_of_gulp',
content:
`We're seeking your feedback until May 31st—participate in the <a href="https://www.surveyhero.com/c/9sfd37mk" target="_blank" rel="noopener noreferrer nofollow">Gulp Developer Survey</a> today!`,
isCloseable: false,
},
colorMode: {
defaultMode: 'light',
disableSwitch: true,
Expand Down Expand Up @@ -170,25 +176,34 @@ module.exports = {
// flexBasis: '80px',
// },
// },
{
href: 'https://word.tips/',
src: 'sponsor-logos/word-tips.png',
alt: 'WordTips logo',
title: 'WordTips',
style: {
flexBasis: '150px',
},
},
// Stopped donating on June 15th, 2022
// Stopped donating in Sept 2023
// {
// href: 'https://developer.americanexpress.com',
// src: 'sponsor-logos/american-express.svg',
// alt: 'American Express',
// title: 'American Express',
// href: 'https://word.tips/',
// src: 'sponsor-logos/word-tips.png',
// alt: 'WordTips logo',
// title: 'WordTips',
// style: {
// flexBasis: '145px',
// flexBasis: '150px',
// },
// },
{
href: 'https://developer.americanexpress.com',
src: 'sponsor-logos/american-express.svg',
alt: 'American Express',
title: 'American Express',
style: {
flexBasis: '145px',
},
},
{
href: 'https://webweekly.email/',
src: 'sponsor-logos/web-weekly.svg',
alt: 'Web Weekly - Your friendly web dev newsletter',
title: 'Web Weekly - Your friendly web dev newsletter',
style: {
flexBasis: '175px',
}
}
]
},
stylesheets: [
Expand Down
20 changes: 20 additions & 0 deletions src/theme/AnnouncementBar/CloseButton/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react';
import clsx from 'clsx';
import {translate} from '@docusaurus/Translate';
import IconClose from '@theme/Icon/Close';
import styles from './styles.module.css';
export default function AnnouncementBarCloseButton(props) {
return (
<button
type="button"
aria-label={translate({
id: 'theme.AnnouncementBar.closeButtonAriaLabel',
message: 'Close',
description: 'The ARIA label for close button of announcement bar',
})}
{...props}
className={clsx('clean-btn close', styles.closeButton, props.className)}>
<IconClose width={14} height={14} strokeWidth={3.1} />
</button>
);
}
4 changes: 4 additions & 0 deletions src/theme/AnnouncementBar/CloseButton/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.closeButton {
padding: 0;
line-height: 0;
}
17 changes: 17 additions & 0 deletions src/theme/AnnouncementBar/Content/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';
import clsx from 'clsx';
import {useThemeConfig} from '@docusaurus/theme-common';
import styles from './styles.module.css';
export default function AnnouncementBarContent(props) {
const {announcementBar} = useThemeConfig();
const {content} = announcementBar;
return (
<div
{...props}
className={clsx(styles.content, props.className)}
// Developer provided the HTML, so assume it's safe.
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{__html: content}}
/>
);
}
10 changes: 10 additions & 0 deletions src/theme/AnnouncementBar/Content/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.content {
font-size: 1rem;
text-align: center;
padding: 5px 0;
}

.content a {
color: var(--ifm-color-primary);
text-decoration: underline;
}
29 changes: 29 additions & 0 deletions src/theme/AnnouncementBar/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';
import {useThemeConfig} from '@docusaurus/theme-common';
import {useAnnouncementBar} from '@docusaurus/theme-common/internal';
import AnnouncementBarCloseButton from '@theme/AnnouncementBar/CloseButton';
import AnnouncementBarContent from '@theme/AnnouncementBar/Content';
import styles from './styles.module.css';
export default function AnnouncementBar() {
const {announcementBar} = useThemeConfig();
const {isActive, close} = useAnnouncementBar();
if (!isActive) {
return null;
}
const {backgroundColor, textColor, isCloseable} = announcementBar;
return (
<div
className={styles.announcementBar}
style={{backgroundColor, color: textColor}}
role="banner">
{isCloseable && <div className={styles.announcementBarPlaceholder} />}
<AnnouncementBarContent className={styles.announcementBarContent} />
{isCloseable && (
<AnnouncementBarCloseButton
onClick={close}
className={styles.announcementBarClose}
/>
)}
</div>
);
}
38 changes: 38 additions & 0 deletions src/theme/AnnouncementBar/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.announcementBar {
display: flex;
align-items: center;
height: 64px;
background-color: var(--ifm-color-secondary);
color: var(--ifm-color-white);
}

html[data-announcement-bar-initially-dismissed='true'] .announcementBar {
display: none;
}

.announcementBarPlaceholder {
flex: 0 0 10px;
}

.announcementBarClose {
flex: 0 0 30px;
align-self: stretch;
}

.announcementBarContent {
flex: 1 1 auto;
}

@media print {
.announcementBar {
display: none;
}
}

@media (min-width: 997px) {

.announcementBarPlaceholder,
.announcementBarClose {
flex-basis: 50px;
}
}
4 changes: 2 additions & 2 deletions src/theme/BackerSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ function BackerSection() {
</div>
<div className={styles.tier}>
<h3 className={styles.tierTitle}>$5 each month</h3>
<p>We'll rotate your avatar through the individual contributors banner below.</p>
<p>In the future, we'll rotate your avatar through an individual contributors banner below.</p>
<ExternalLink href="https://github.com/sponsors/gulpjs?tier_id=24680" className={styles.tierButton}>Donate $5</ExternalLink>
</div>
<div className={styles.tier}>
<h3 className={styles.tierTitle}>$10 each month</h3>
<p>We'll thank you on Twitter and rotate your avatar through the individual contributors banner below.</p>
<p>We'll thank you on Twitter and, in the future, rotate your avatar through an individual contributors banner below.</p>
<ExternalLink href="https://github.com/sponsors/gulpjs?tier_id=24681" className={styles.tierButton}>Donate $10</ExternalLink>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions static/sponsor-logos/web-weekly.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy