From e9b9cd2cd88e453a3a35cf3f672ba965660b9ff2 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Wed, 31 Aug 2022 12:31:25 -0400 Subject: Update the dashboard with a message about the lack of any dashboards --- src/pages/Index.jsx | 106 ++++++++++++++++++++++++++-------------------------- 1 file changed, 52 insertions(+), 54 deletions(-) (limited to 'src/pages/Index.jsx') diff --git a/src/pages/Index.jsx b/src/pages/Index.jsx index 7f196e0..5e4c788 100644 --- a/src/pages/Index.jsx +++ b/src/pages/Index.jsx @@ -1,62 +1,60 @@ -import Card from "../components/Card"; import "./Index.css"; -const Index = (props) => { - const response = props.response; - if (response.loading) { - return
Loading...
; - } - - const data = response.data; +const Index = () => { + return ( +
+

2022-2023 Dashboard

+

+ RIT is not providing a COVID dashboard for the 2022-2023 semester. As such, I have no source for any + data to update this dashboard. +

+

+ At the beginning of the semester, rit.edu/ready claimed that a new + dashboard would be published, as visible in{" "} + + this snapshot taken August 2nd on archive.org + + . However, that was removed sometime between August 15th and August 31st, as seen in{" "} + + this snapshot taken August 31st. + {" "} + The updated site did claim "The level of COVID RNA found in this week’s wastewater samples is slightly + higher than last spring". +

- const latest = data[data.length - 1]; - const prior = data[data.length - (1 + props.timeDifference)]; +

+ There is a{" "} + + PawPrints petition to restore the COVID dashboard + {" "} + so students can see the current level of risk. If you're concerned about RIT's handling of the pandemic, + you should sign this! Unless RIT gives us the dashboard back, we have no visiblity into how many cases + there are on campus. +

- return ( -
-
-
- This dashboard has been refreshed for the new semester. Historical data from the 2020-2021 school - year is available at 2020.ritcoviddashboard.com. Data - from the Fall 2021 semester is available at{" "} - 2021.ritcoviddashboard.com. -
-
-
-
Total Positive Cases Since January 10 (First Day of Classes)
-
- - -
-
+
-
-
New Positive Cases From Past 14 Days
-
- - -
-
+

Prior Dashboards

+

+ The dashboards from the last two years are still online. I'll be keeping them up indefinitely so + everyone can see RIT's handling of the pandemic. +

+

+ The dashboard for the 2020-2021 school year is available at{" "} + + 2020.ritcoviddashboard.com + +

+

+ The dashboard for the 2021-2022 school year is available at{" "} + + 2021.ritcoviddashboard.com + +

+

+ If you would like the raw data I've collected, or have any questions, concerns, or comments, please + reach out to me at gkg1648@rit.edu +

); }; -- cgit v1.2.3