From db75b8ae76a551b6176fd70f259479046644ea42 Mon Sep 17 00:00:00 2001 From: Vim <86254807+vim-usds@users.noreply.github.com> Date: Wed, 23 Nov 2022 12:07:21 -0800 Subject: [PATCH] Adds post 1.0 updates (#2105) - closes #2104 - updates statistical areas link - closes #2103 - CAPs on NO and PARTIALLY - closes #2099 - Update press release on Alert and FAQs - closes #2101 - global replace high school degree to high school diploma - add comparison chart to FAQ - update .env file with comp chart route to S3 - update snapshots --- client/.env.development | 1 + client/.env.production | 1 + client/VIEW_MAP_DATA.md | 2 +- .../__snapshots__/Categories.test.tsx.snap | 2 +- .../__snapshots__/DonutCopy.test.tsx.snap | 2 +- .../__snapshots__/J40Header.test.tsx.snap | 12 ++++++- .../TractPrioritization.test.tsx | 12 +++---- .../TractPrioritization.test.tsx.snap | 24 ++++++------- client/src/data/copy/about.tsx | 2 +- client/src/data/copy/common.tsx | 3 +- client/src/data/copy/downloads.tsx | 4 +-- client/src/data/copy/explore.tsx | 6 ++-- client/src/data/copy/faqs.tsx | 5 ++- client/src/data/copy/methodology.tsx | 4 +-- client/src/intl/en.json | 14 ++++---- .../src/pages/frequently-asked-questions.tsx | 2 +- .../tests/__snapshots__/about.test.tsx.snap | 19 ++++++++-- .../tests/__snapshots__/contact.test.tsx.snap | 12 ++++++- .../__snapshots__/downloads.test.tsx.snap | 12 ++++++- .../freqAskedQuestions.test.tsx.snap | 36 +++++++++++++++++-- .../__snapshots__/methodology.test.tsx.snap | 14 ++++++-- .../__snapshots__/publicEng.test.tsx.snap | 12 ++++++- .../techSupportDoc.test.tsx.snap | 12 ++++++- 23 files changed, 162 insertions(+), 51 deletions(-) diff --git a/client/.env.development b/client/.env.development index 9ff224c4d..ee88299b0 100644 --- a/client/.env.development +++ b/client/.env.development @@ -26,6 +26,7 @@ GATSBY_FILE_DL_PATH_1_0_SHAPE_FILE_ZIP=downloadable/1.0-shapefile-codebook.zip GATSBY_FILE_DL_PATH_1_0_INSTRUCT_PDF=downloadable/cejst-instructions-for-federal-agencies.pdf GATSBY_FILE_DL_PATH_1_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf GATSBY_FILE_DL_PATH_1_0_TSD_PDF=downloadable/1.0-cejst-technical-support-document.pdf +GATSBY_FILE_DL_PATH_1_0_TOOL_COMP_PDF=downloadable/1.0-climate-and-environmental-burden-tool-comparison.pdf GATSBY_FILE_DL_PATH_TSD_ES_PDF=downloadable/cejst-technical-support-document-es.pdf GATSBY_FILE_DL_PATH_HOW_TO_COMMUNITIES_PDF=downloadable/draft-communities-list.pdf diff --git a/client/.env.production b/client/.env.production index ecda08219..8afbe0159 100644 --- a/client/.env.production +++ b/client/.env.production @@ -23,6 +23,7 @@ GATSBY_FILE_DL_PATH_1_0_SHAPE_FILE_ZIP=downloadable/1.0-shapefile-codebook.zip GATSBY_FILE_DL_PATH_1_0_INSTRUCT_PDF=downloadable/cejst-instructions-for-federal-agencies.pdf GATSBY_FILE_DL_PATH_1_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf GATSBY_FILE_DL_PATH_1_0_TSD_PDF=downloadable/1.0-cejst-technical-support-document.pdf +GATSBY_FILE_DL_PATH_1_0_TOOL_COMP_PDF=downloadable/1.0-climate-and-environmental-burden-tool-comparison.pdf GATSBY_FILE_DL_PATH_TSD_ES_PDF=downloadable/cejst-technical-support-document-es.pdf GATSBY_FILE_DL_PATH_HOW_TO_COMMUNITIES_PDF=downloadable/draft-communities-list.pdf diff --git a/client/VIEW_MAP_DATA.md b/client/VIEW_MAP_DATA.md index 616c7fe8b..e6aa2c432 100644 --- a/client/VIEW_MAP_DATA.md +++ b/client/VIEW_MAP_DATA.md @@ -189,7 +189,7 @@ When zooming in (the zoom number will increase), thus aka 'high' zoom levels, th "Poverty (Less than 200% of federal poverty line) (percentile)":0.36, // EDUCATION_PROPERTY_PERCENTILE - "Percentage of individuals age 25 or over with less than high school degree (percentile)":0.08, + "Percentage of individuals age 25 or over with less than high school diploma (percentile)":0.08, // LINGUISTIC_ISOLATION_PROPERTY_PERCENTILE "Linguistic isolation (percent) (percentile)":0.05, diff --git a/client/src/components/Categories/__snapshots__/Categories.test.tsx.snap b/client/src/components/Categories/__snapshots__/Categories.test.tsx.snap index 7c11380bc..e1d3e3696 100644 --- a/client/src/components/Categories/__snapshots__/Categories.test.tsx.snap +++ b/client/src/components/Categories/__snapshots__/Categories.test.tsx.snap @@ -537,7 +537,7 @@ exports[`rendering of the Categories checks if component renders 1`] = ` > high school education - (i.e. graduated with a high school degree) + (i.e. graduated with a high school diploma)
diff --git a/client/src/components/DonutCopy/__snapshots__/DonutCopy.test.tsx.snap b/client/src/components/DonutCopy/__snapshots__/DonutCopy.test.tsx.snap index 12bcaad0a..3654b358e 100644 --- a/client/src/components/DonutCopy/__snapshots__/DonutCopy.test.tsx.snap +++ b/client/src/components/DonutCopy/__snapshots__/DonutCopy.test.tsx.snap @@ -10,7 +10,7 @@ exports[`rendering of DonutCopy Component checks if component renders when adjac- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
{FAQS_COPY.FAQ_ANSWERS.Q12_P2}
{FAQS_COPY.FAQ_ANSWERS.Q12_P3}
- {/*{FAQS_COPY.FAQ_ANSWERS.Q12_P4}
*/} +{FAQS_COPY.FAQ_ANSWERS.Q12_P4}
> ), ( diff --git a/client/src/pages/tests/__snapshots__/about.test.tsx.snap b/client/src/pages/tests/__snapshots__/about.test.tsx.snap index be27a6aba..0870bb64e 100644 --- a/client/src/pages/tests/__snapshots__/about.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/about.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
@@ -490,8 +500,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis The tool shows information about the burdens that communities experience. It uses datasets to identify indicators of burdens. The tool shows these burdens in census tracts. Census tracts are small units of geography. Census tract boundaries for statistical areas diff --git a/client/src/pages/tests/__snapshots__/contact.test.tsx.snap b/client/src/pages/tests/__snapshots__/contact.test.tsx.snap index 4c09683ac..9585d25d7 100644 --- a/client/src/pages/tests/__snapshots__/contact.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/contact.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
diff --git a/client/src/pages/tests/__snapshots__/downloads.test.tsx.snap b/client/src/pages/tests/__snapshots__/downloads.test.tsx.snap index 153cb00d9..1f24c3c45 100644 --- a/client/src/pages/tests/__snapshots__/downloads.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/downloads.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
diff --git a/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap b/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap index 8796cb71f..30830e93a 100644 --- a/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
@@ -921,6 +931,18 @@ exports[`rendering of the DatasetContainer checks if various text fields are visIn contrast, the CEJST will help Federal agencies to identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative.
++ + This chart + + is helpful for understanding how the CEJST differs from some of the other Federal environmental screening tools. +
- The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in November, 2022. The tool is no longer in beta. + The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in + + November, 2022 + + . The tool is no longer in beta.
The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data. diff --git a/client/src/pages/tests/__snapshots__/methodology.test.tsx.snap b/client/src/pages/tests/__snapshots__/methodology.test.tsx.snap index c8b092211..d3829962b 100644 --- a/client/src/pages/tests/__snapshots__/methodology.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/methodology.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
@@ -975,7 +985,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis > high school education - (i.e. graduated with a high school degree) + (i.e. graduated with a high school diploma) diff --git a/client/src/pages/tests/__snapshots__/publicEng.test.tsx.snap b/client/src/pages/tests/__snapshots__/publicEng.test.tsx.snap index 38c415e2e..a9e5b964e 100644 --- a/client/src/pages/tests/__snapshots__/publicEng.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/publicEng.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .
diff --git a/client/src/pages/tests/__snapshots__/techSupportDoc.test.tsx.snap b/client/src/pages/tests/__snapshots__/techSupportDoc.test.tsx.snap index 28a28ad48..ba94f5b40 100644 --- a/client/src/pages/tests/__snapshots__/techSupportDoc.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/techSupportDoc.test.tsx.snap @@ -361,7 +361,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis- The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, CEQ’s press release will be coming soon. + The Council on Environmental Quality (CEQ) made the version 1.0 of the tool available on 11/22/2022. For more information about the improvements to the tool, read CEQ's + + press release + + .