mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-27 15:31:40 -07:00
Re-order nav links, update download box to include shapefiles, squish pages (#1538)
* Re-order nav links, update download box to include shapefiles, squishy pages (#1536) * Add dropdown to navigation links - add download page - move main pages tests to their own folder - add download and public eng snapshot test - remove public engagement button on each page - swap index with cejst - update cypress ENDPOINTS - upate gatsby-config sitemap - update snapshots - cypress tests are failing * Make all page endpoints constants - fix all cypress tests - refactor all test to use LegacyTests/constants/PAGES_ENDPOINTS - gatsby-config to use PAGES_ENDPOINTS - remove ScoreStepList component - update J40Header to use constants.PAGES_ENDPOINTS - update snapshots - there are 3 locations to update PAGES_ENDPOINTS, namely 1. LegacyTests/constants.tsx 2. constants.tsx 3. gatsby-config * Add two placeholder pages - FAQs - TSD * remove dropdown from navigation menu - remove dropdown from gherkin tests - update snapshots * Add back public engagement button to all pages - add send button in area detail alt tag to i18n - modify public engagement button to have same CSS as send feedback button - update snapshots * Update download box to include shapefile downloads - refator download packet scss - add shapefile URL to .env files - update tests - index forwarding pattern - update snapshots * Add FAQ link to About page * Update footer - add PEC - add RFI - add github link * Update the staging link URL and title * Update download Box to match design sync - update FAQ link copy * Add comment for reason of commented code
This commit is contained in:
parent
69edbe520e
commit
92501e4715
71 changed files with 4400 additions and 605 deletions
|
@ -17,6 +17,7 @@ export const simpleLink = (href:string) => (str:string) => <a href={href}>{str}<
|
|||
// eslint-disable-next-line max-len
|
||||
export const linkFn = (to:string, isInternal:boolean, isOpenNewTab:boolean) => (str:string) => <LinkTypeWrapper linkText={str} internal={isInternal} url={to} openUrlNewTab={isOpenNewTab}/>;
|
||||
|
||||
export const RFI_LINK = `https://www.federalregister.gov/d/2022-03920`;
|
||||
|
||||
export const FEEDBACK_EMAIL = 'Screeningtool-Support@omb.eop.gov';
|
||||
|
||||
|
@ -89,6 +90,26 @@ export const HEADER = defineMessages({
|
|||
defaultMessage: 'Contact',
|
||||
description: 'Navigate to the about page. This is Header navigate item to the Contact page',
|
||||
},
|
||||
DOWNLOADS: {
|
||||
id: 'common.pages.header.downloads',
|
||||
defaultMessage: 'Downloads',
|
||||
description: 'Navigate to the about page. This is Header navigate item to the downloads page',
|
||||
},
|
||||
FAQs: {
|
||||
id: 'common.pages.header.faqs',
|
||||
defaultMessage: 'Frequently asked questions',
|
||||
description: 'Navigate to the about page. This is Header navigate item to the faqs page',
|
||||
},
|
||||
PUBLIC_ENG: {
|
||||
id: 'common.pages.header.public.eng',
|
||||
defaultMessage: 'Engagement calendar',
|
||||
description: 'Navigate to the about page. This is Header navigate item to the public eng page',
|
||||
},
|
||||
TSD: {
|
||||
id: 'common.pages.header.tsd',
|
||||
defaultMessage: 'Technical Support Document',
|
||||
description: 'Navigate to the about page. This is Header navigate item to the technical support document page',
|
||||
},
|
||||
});
|
||||
|
||||
// Footer
|
||||
|
@ -108,6 +129,21 @@ export const FOOTER = defineMessages({
|
|||
defaultMessage: 'More information',
|
||||
description: 'Navigate to the about page. This is Footer column header',
|
||||
},
|
||||
ENG_CAL: {
|
||||
id: 'common.pages.footer.eng.cal.text',
|
||||
defaultMessage: 'Engagement calender',
|
||||
description: 'Navigate to the about page. This is Footer eng.cal.gov link text',
|
||||
},
|
||||
RFI: {
|
||||
id: 'common.pages.footer.rfi.text',
|
||||
defaultMessage: 'Request for Infomation',
|
||||
description: 'Navigate to the about page. This is Footer rfi link text',
|
||||
},
|
||||
RFI_LINK: {
|
||||
id: 'common.pages.footer.rfi.link',
|
||||
defaultMessage: RFI_LINK,
|
||||
description: 'Navigate to the about page. This is Footer rfi link',
|
||||
},
|
||||
WHITEHOUSE: {
|
||||
id: 'common.pages.footer.whitehouse.text',
|
||||
defaultMessage: 'Whitehouse.gov',
|
||||
|
@ -138,11 +174,6 @@ export const FOOTER = defineMessages({
|
|||
defaultMessage: 'Whitehouse logo',
|
||||
description: 'Navigate to the about page. This is Footer Whitehouse logo alt text',
|
||||
},
|
||||
QUESTIONS: {
|
||||
id: 'common.pages.footer.questionsheader',
|
||||
defaultMessage: 'Have a question about government services?',
|
||||
description: 'Navigate to the about page. This is Footer column header',
|
||||
},
|
||||
FIND_CONTACT: {
|
||||
id: 'common.pages.footer.findcontact',
|
||||
defaultMessage: 'Find a contact at USA.gov',
|
||||
|
@ -153,6 +184,21 @@ export const FOOTER = defineMessages({
|
|||
defaultMessage: 'https://www.usa.gov/',
|
||||
description: 'Navigate to the about page. This is Footer find contact link text',
|
||||
},
|
||||
CONTRIBUTE: {
|
||||
id: 'common.pages.footer.contribute.header',
|
||||
defaultMessage: 'Want to contribute?',
|
||||
description: 'Navigate to the about page. This is third Footer column header',
|
||||
},
|
||||
GITHUB_LINK_TEXT: {
|
||||
id: 'common.pages.footer.github.link.text',
|
||||
defaultMessage: 'Check out the code on GitHub',
|
||||
description: 'Navigate to the about page. This is Footer github link text',
|
||||
},
|
||||
GITHUB_LINK: {
|
||||
id: 'common.pages.footer.findcontact.link',
|
||||
defaultMessage: 'https://github.com/usds/justice40-tool',
|
||||
description: 'Navigate to the about page. This is Footer find contact link text',
|
||||
},
|
||||
CONTACT: {
|
||||
id: 'common.pages.footer.contactheader',
|
||||
defaultMessage: 'Contact',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue