mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-31 20:21:17 -07:00
* Add initial side nav * Add Download page as a sub-page under Meth&Data - udpate S3 file path in .envs - remove the DownloadPacket component - move download copy from methodology to download - modify header to use two types of navs: -- mobile (with sub-pages) and -- desktop (without subpages) - create a SubPageNav component - add SubPagNav to Meth and Download page - update snapshots - add global CSS overide to remove minus sign on mobile nav link accordion as it's permanently open * Remove the update tag above Public eng button * Make the 3rd bullet on explore page update on 5/25 * Make the RFI box text change after 5/25/22 * Update site with RFI expired copy, remove Alerts - add Spanish translations - update snapshots * Fix typo on XLS file path * Refactor HowYouCanHelp to standard form * Add custom download links with icons - add new DownloadLink compnent - add Spanish translations * Update download file sizes * Allow meth&data nav link to collapse on mobile
260 lines
7.5 KiB
TypeScript
260 lines
7.5 KiB
TypeScript
import React, {useState} from 'react';
|
|
import {Link, useIntl} from 'gatsby-plugin-intl';
|
|
import {
|
|
Header,
|
|
NavMenuButton,
|
|
PrimaryNav,
|
|
Grid,
|
|
NavDropDownButton,
|
|
Menu,
|
|
} from '@trussworks/react-uswds';
|
|
import BetaBanner from '../BetaBanner';
|
|
import J40MainGridContainer from '../J40MainGridContainer';
|
|
import GovernmentBanner from '../GovernmentBanner';
|
|
import Language from '../Language';
|
|
import {useWindowSize} from 'react-use';
|
|
|
|
// @ts-ignore
|
|
import siteLogo from '../../images/j40-logo-v2.png';
|
|
import * as styles from './J40Header.module.scss';
|
|
import * as COMMON_COPY from '../../data/copy/common';
|
|
import {PAGES_ENDPOINTS} from '../../data/constants';
|
|
|
|
/**
|
|
* The J40Header component will control how the header looks for both mobile and desktop
|
|
*
|
|
* The Header is defined as
|
|
* 1. Two rows of Banners (ie, official gov website and beta site)
|
|
* 2. Logo and Nav Links Row
|
|
* 3. Any Alerts
|
|
*
|
|
* @return {JSX.Element}
|
|
*/
|
|
const J40Header = () => {
|
|
const intl = useIntl();
|
|
const {width} = useWindowSize();
|
|
|
|
// Logo text
|
|
const logoLine1 = intl.formatMessage(COMMON_COPY.HEADER.TITLE_LINE_1);
|
|
const logoLine2 = intl.formatMessage(COMMON_COPY.HEADER.TITLE_LINE_2);
|
|
|
|
/**
|
|
* State variable to control the toggling of mobile menu button
|
|
*/
|
|
const [mobileNavOpen, setMobileNavOpen] = useState(false);
|
|
const toggleMobileNav = (): void =>
|
|
setMobileNavOpen((prevOpen) => !prevOpen);
|
|
|
|
/**
|
|
* State variable to hold the open/close state of each nav dropdown. This will allow for two
|
|
* dropdown that are being used, each corresponding to an index in the state array:
|
|
*
|
|
* index 0 = Data & Methodology dropdown (being used)
|
|
* index 1 = About dropdown (removed for now)
|
|
*/
|
|
const [isOpen, setIsOpen] = useState([true]);
|
|
const onToggle = (index: number): void => {
|
|
setIsOpen((prevIsOpen) => {
|
|
const newIsOpen = [true];
|
|
newIsOpen[index] = !prevIsOpen[index];
|
|
return newIsOpen;
|
|
});
|
|
};
|
|
|
|
/**
|
|
* On mobile, the Methodology & Data page should have two sub-nav links. This defines
|
|
* the array that will hold these links
|
|
*/
|
|
const methPageSubNavLinks = [
|
|
<Link
|
|
to={PAGES_ENDPOINTS.METHODOLOGY}
|
|
key={'methodology'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-methodology'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.METHODOLOGY)}
|
|
</Link>,
|
|
<Link
|
|
to={PAGES_ENDPOINTS.DOWNLOADS}
|
|
key={'downloads'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-downloads'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.DOWNLOADS)}
|
|
</Link>,
|
|
// <Link
|
|
// to={PAGES_ENDPOINTS.TSD}
|
|
// key={'tsd'}
|
|
// activeClassName="usa-current"
|
|
// data-cy={'nav-link-technical-support-docs'}>
|
|
// {intl.formatMessage(COMMON_COPY.HEADER.TSD)}
|
|
// </Link>,
|
|
];
|
|
|
|
/**
|
|
* In the future, we may want to add sub-pages to the About page. This array will
|
|
* define the sub-pages for the About page.
|
|
*/
|
|
// const aboutSubNavLinks = [
|
|
// <Link
|
|
// to={PAGES_ENDPOINTS.ABOUT}
|
|
// key={'about'}
|
|
// activeClassName="usa-current"
|
|
// data-cy={'nav-link-about'}>
|
|
// {intl.formatMessage(COMMON_COPY.HEADER.ABOUT)}
|
|
// </Link>,
|
|
// <Link
|
|
// to={PAGES_ENDPOINTS.FAQS}
|
|
// key={'faqs'}
|
|
// activeClassName="usa-current"
|
|
// data-cy={'nav-link-faqs'}>
|
|
// {intl.formatMessage(COMMON_COPY.HEADER.FAQs)}
|
|
// </Link>,
|
|
// <Link
|
|
// to={PAGES_ENDPOINTS.PUBLIC_ENG}
|
|
// key={'publicEng'}
|
|
// activeClassName="usa-current"
|
|
// data-cy={'nav-link-public-engagement'}>
|
|
// {intl.formatMessage(COMMON_COPY.HEADER.PUBLIC_ENG)}
|
|
// </Link>,
|
|
// ];
|
|
|
|
|
|
/**
|
|
* This is the array that holds the navigation links and eventually is the one
|
|
* that is passed to the render function. It only defines Explore, About and
|
|
* Contact.
|
|
*
|
|
* The Methodology & Data link is passed in depending on screen size.
|
|
*
|
|
* For mobile: the Methodology & Data link should have sub-pages
|
|
* For desktop: the Methodology & Data link should NOT have sub-pages
|
|
*/
|
|
const navLinks = [
|
|
<Link
|
|
to={PAGES_ENDPOINTS.EXPLORE}
|
|
key={'explore-map'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-explore-the-map'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.EXPLORE)}
|
|
</Link>,
|
|
<Link
|
|
to={PAGES_ENDPOINTS.ABOUT}
|
|
key={'about'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-about'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.ABOUT)}
|
|
</Link>,
|
|
<Link
|
|
to={PAGES_ENDPOINTS.CONTACT}
|
|
key={'contact'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-contact'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.CONTACT)}
|
|
</Link>,
|
|
<div key={'language'}>
|
|
<Language isDesktop={false}/>
|
|
</div>,
|
|
];
|
|
|
|
// For mobile: the Methodology & Data link should have sub-pages
|
|
const MethPageNavWithSubPages = () =>
|
|
<>
|
|
<NavDropDownButton
|
|
key="methDropDown"
|
|
label={intl.formatMessage(COMMON_COPY.HEADER.METHODOLOGY)}
|
|
menuId="methMenu"
|
|
isOpen={isOpen[0]}
|
|
onToggle={(): void => onToggle(0)}
|
|
data-cy={'nav-dropdown-methodology'}
|
|
>
|
|
</NavDropDownButton>
|
|
<Menu
|
|
id='methMenu'
|
|
type='subnav'
|
|
items={methPageSubNavLinks}
|
|
isOpen={isOpen[0]}
|
|
>
|
|
</Menu>
|
|
</>;
|
|
|
|
// For desktop: the Methodology & Data link should NOT have sub-pages
|
|
const MethPageNav = () =>
|
|
<Link
|
|
to={PAGES_ENDPOINTS.METHODOLOGY}
|
|
key={'methodology'}
|
|
activeClassName="usa-current"
|
|
data-cy={'nav-link-methodology'}>
|
|
{intl.formatMessage(COMMON_COPY.HEADER.METHODOLOGY)}
|
|
</Link>;
|
|
|
|
// Modify navLinks to choose the appropriate Methodology & Data nav link depending on screen size
|
|
navLinks.splice(1, 0, width > 1024 ? <MethPageNav/> : <MethPageNavWithSubPages/>);
|
|
|
|
return (
|
|
<Header basic={true} role={'banner'}>
|
|
|
|
{/* Banners */}
|
|
<GovernmentBanner />
|
|
<BetaBanner/>
|
|
|
|
{/* Logo and Navigation */}
|
|
<J40MainGridContainer>
|
|
|
|
<Grid className={styles.logoNavRow} row>
|
|
|
|
{/* Logo */}
|
|
<Grid col={1}>
|
|
<img className={styles.logo} src={siteLogo} alt={`${logoLine1} ${logoLine2}`} />
|
|
</Grid>
|
|
|
|
{/* Logo Title */}
|
|
<Grid col={6}>
|
|
<div className={styles.logoTitle}>
|
|
<div>{logoLine1}</div>
|
|
<div className={styles.title2BetaPill}>
|
|
<div> {logoLine2} </div>
|
|
<div className={styles.betaPill}>BETA</div>
|
|
</div>
|
|
</div>
|
|
</Grid>
|
|
|
|
{/* Nav links */}
|
|
<Grid col={'fill'} className={styles.navLinks}>
|
|
|
|
<NavMenuButton
|
|
key={'mobileMenuButton'}
|
|
onClick={toggleMobileNav}
|
|
label="Menu">
|
|
</NavMenuButton>
|
|
<PrimaryNav
|
|
items={navLinks}
|
|
mobileExpanded={mobileNavOpen}
|
|
onToggleMobileNav={toggleMobileNav}
|
|
>
|
|
</PrimaryNav>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</J40MainGridContainer>
|
|
|
|
{/* Alert */}
|
|
{/* {<J40MainGridContainer>
|
|
<Alert
|
|
className={styles.alert}
|
|
type="info"
|
|
heading={intl.formatMessage(COMMON_COPY.ALERTS.ALERT_2_TITLE.TITLE)}>
|
|
{COMMON_COPY.ALERTS.ALERT_2_DESCRIPTION}
|
|
</Alert>
|
|
|
|
<Alert
|
|
className={styles.alert}
|
|
type="info"
|
|
heading={intl.formatMessage(COMMON_COPY.ALERTS.ALERT_1_TITLE.TITLE)}>
|
|
{COMMON_COPY.ALERTS.ALERT_1_DESCRIPTION}
|
|
</Alert>
|
|
</J40MainGridContainer>
|
|
} */}
|
|
</Header>
|
|
);
|
|
};
|
|
|
|
export default J40Header;
|