1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
import React from "react";
import useSWR from "swr";
import { DateTime } from "luxon";
import { BrowserRouter, Route, Switch, Link } from "react-router-dom";
import MainPage from "./MainPage";
import History from "./History";
import HistoryTable from "./HistoryTable";
import "./App.css";
const url = "/data.json";
function App() {
let { data: rawData, error: error } = useSWR(url);
const [timeDifference, setTimeDifference] = React.useState(1);
const [showAllTime, setShowAllTime] = React.useState(false);
if (error)
return (
<div className="App">
<h1>RIT Covid Dashboard</h1>
<h2>An error occurred</h2>
</div>
);
if (!rawData)
return (
<div className="App">
<h1>RIT Covid Dashboard</h1>
<h2>Loading latest data...</h2>
</div>
);
// rawData = rawData.slice(0, 177);
let data = rawData;
console.log(data.length);
const local = DateTime.local().zoneName;
const semesterStart = DateTime.fromISO("2021-01-01");
// if (!showAllTime) {
// data = rawData.filter((d) => {
// let date = DateTime.fromSQL(d.last_updated, { zone: "UTC" }).setZone(local);
// return date > semesterStart;
// });
// const last = rawData[rawData.length - data.length - 1];
// data = data.map((d) => {
// return {
// alert_level: d.alert_level,
// beds_available: d.beds_available,
// isolation_off_campus: d.isolation_off_campus,
// isolation_on_campus: d.isolation_on_campus,
// last_updated: d.last_updated,
// new_staff: d.new_staff,
// new_students: d.new_students,
// quarantine_off_campus: d.quarantine_off_campus,
// quarantine_on_campus: d.quarantine_on_campus,
// tests_administered: d.tests_administered - last.tests_administered,
// total_staff: d.total_staff - last.total_staff,
// total_students: d.total_students - last.total_students,
// };
// });
// }
const latest = data[data.length - 1];
const prior = data[data.length - (1 + timeDifference)];
return (
<BrowserRouter>
<div className="App">
<h1 className="text-4xl">
<Link to="/">RIT Covid Dashboard</Link>
</h1>
{/*
<h3>
Last Updated:{" "}
{lastUpdate.toLocaleString({
weekday: "long",
month: "long",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
})}
</h3>
<h4 className="text-sm text-gray-600">
Prior Update:{" "}
{priorUpdate.toLocaleString({
weekday: "long",
month: "long",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
})}{" "}
({timeDifference == 1 ? "one day ago" : timeDifference == 5 ? "one week ago" : "two weeks ago"})
</h4>
*/}
{/* <button
onClick={() => setTimeDifference(timeDifference == 1 ? 5 : timeDifference == 5 ? 10 : 1)}
className="bg-transparent text-sm hover:bg-orange-400 text-gray-600 hover:text-white py-1 my-1 px-2 border border-orange-300 hover:border-transparent rounded transition ease-in-out duration-300"
>
Use {timeDifference == 10 ? "one day" : timeDifference == 5 ? "two weeks" : "one week"} ago
</button>
<button
onClick={() => setShowAllTime(showAllTime ? false : true)}
className="bg-transparent text-sm hover:bg-orange-400 text-gray-600 hover:text-white py-1 my-1 px-2 border border-orange-300 hover:border-transparent rounded transition ease-in-out duration-300"
>
Show {showAllTime ? "current semester" : "all time"}
</button> */}
<br />
<Switch>
<Route exact path="/">
<MainPage data={data} timeDifference={timeDifference} showAllTime={showAllTime} />
</Route>
<Route path="/totalstudents">
<History
name="Total Student Cases"
data={data.map((d) => {
return { value: d.total_students, date: d.last_updated };
})}
/>
</Route>
<Route path="/totalstaff">
<History
name="Total Staff Cases"
data={data.map((d) => {
return { value: d.total_staff, date: d.last_updated };
})}
/>
</Route>
<Route path="/newstudents">
<History
name="New Student Cases"
data={data.map((d) => {
return { value: d.new_students, date: d.last_updated };
})}
/>
</Route>
<Route path="/newstaff">
<History
name="New Staff Cases"
data={data.map((d) => {
return { value: d.new_staff, date: d.last_updated };
})}
/>
</Route>
<Route path="/quarantineoncampus">
<History
name="Quarantine On Campus"
data={data.map((d) => {
return { value: d.quarantine_on_campus, date: d.last_updated };
})}
/>
</Route>
<Route path="/quarantineoffcampus">
<History
name="Quarantine Off Campus"
data={data.map((d) => {
return { value: d.quarantine_off_campus, date: d.last_updated };
})}
/>
</Route>
<Route path="/isolationoncampus">
<History
name="Isolation On Campus"
data={data.map((d) => {
return { value: d.isolation_on_campus, date: d.last_updated };
})}
/>
</Route>
<Route path="/isolationoffcampus">
<History
name="Isolation Off Campus"
data={data.map((d) => {
return { value: d.isolation_off_campus, date: d.last_updated };
})}
/>
</Route>
<Route path="/tests">
<History
name="Tests Administered"
data={data.map((d) => {
return { value: d.tests_administered, date: d.last_updated };
})}
/>
</Route>
<Route path="/beds">
<History
name="Bed Availability"
data={data.map((d) => {
return { value: d.beds_available, date: d.last_updated };
})}
/>
</Route>
</Switch>
<br />
<p>
By Galen Guyer. Source available on{" "}
<a className="text-blue-700" href="https://github.com/galenguyer/rit-covid-dashboard">
GitHub
</a>{" "}
(
<a className="text-blue-700" href="https://github.com/galenguyer/rit-covid-dashboard/issues">
Report Issue
</a>
)
</p>
<p>
<a className="text-blue-700" href="https://galenguyer.com/projects/ritcoviddashboard">
API Documentation
</a>
</p>
</div>
</BrowserRouter>
);
}
export default App;
|