mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-21 17:11:39 -07:00
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import {Link, useIntl} from 'gatsby-plugin-intl';
|
|
import {Grid} from '@trussworks/react-uswds';
|
|
|
|
import DatasetCard from '../DatasetCard';
|
|
import J40MainGridContainer from '../J40MainGridContainer';
|
|
import {hyphenizeString} from '../../../cypress/integration/common/helpers';
|
|
|
|
import * as styles from './dsContainer.module.scss';
|
|
import * as METHODOLOGY_COPY from '../../data/copy/methodology';
|
|
import {PAGES_ENDPOINTS} from '../../data/constants';
|
|
// import DatasetsButton from '../DatasetsButton';
|
|
|
|
|
|
const DatasetContainer = () => {
|
|
const intl = useIntl();
|
|
|
|
return (
|
|
<>
|
|
<J40MainGridContainer fullWidth={true} blueBackground={false}>
|
|
<J40MainGridContainer
|
|
dataCy={`${hyphenizeString(METHODOLOGY_COPY.DATASETS.HEADING.defaultMessage)}-block`}>
|
|
|
|
<Grid row>
|
|
<Grid col={12}>
|
|
<h2>{METHODOLOGY_COPY.DATASETS_RICH_TEXT.HEADING}</h2>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid row gap className={styles.alignItemsCenter}>
|
|
<Grid desktop={{col: 7}}>
|
|
<p>{intl.formatMessage(METHODOLOGY_COPY.DATASETS.INFO)}</p>
|
|
<p>{intl.formatMessage(METHODOLOGY_COPY.DATASETS.CENSUS_DISCLAIMER)}</p>
|
|
</Grid>
|
|
<Grid desktop={{col: 1}}>
|
|
</Grid>
|
|
<Grid desktop={{col: 4}}>
|
|
{/* <DatasetsButton href= {intl.locale === 'es' ? DATA_SURVEY_LINKS.ES : DATA_SURVEY_LINKS.EN} /> */}
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid row>
|
|
<Grid col={12}>
|
|
<div className={styles.datasetCardsContainer}>
|
|
{METHODOLOGY_COPY.INDICATORS.map((card, index) => <DatasetCard
|
|
key={index}
|
|
datasetCardProps={card}
|
|
/>)}
|
|
</div>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<div className={styles.returnToTop}>
|
|
<Link className={'usa-link'} to={PAGES_ENDPOINTS.METHODOLOGY}>
|
|
{METHODOLOGY_COPY.RETURN_TO_TOP.LINK}
|
|
</Link>
|
|
</div>
|
|
|
|
</J40MainGridContainer>
|
|
</J40MainGridContainer>
|
|
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default DatasetContainer;
|