diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-16 20:17:14 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-16 20:17:14 -0500 |
commit | 071632e2bee59d64b4d196ed3512af7f24c6b994 (patch) | |
tree | e3e01aad8142475bbaedcc7cf1dbc697e2ac62a9 /src/App.js | |
parent | aa74fa66ef19ba2fbbe5bbb18550e1913be354ea (diff) |
add positiveTests table
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -4,6 +4,7 @@ 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 = "https://ritcoviddashboard.com/api/v0/history"; @@ -33,7 +34,18 @@ function App() { const local = DateTime.local().zoneName; const lastUpdate = DateTime.fromSQL(latest.last_updated, { zone: "UTC" }).setZone(local); const priorUpdate = DateTime.fromSQL(prior.last_updated, { zone: "UTC" }).setZone(local); - + let positiveCases = []; + for (let i = 1; i < data.length; i++) { + positiveCases.push({ + date: data[i].last_updated, + value: ( + ((data[i].total_students - data[i - 1].total_students) * 100) / + (data[i].tests_administered - data[i - 1].tests_administered) + ).toFixed(1), + }); + } + positiveCases = positiveCases.filter((o) => o.value > 0 && o.value <= 100); + console.log(positiveCases); return ( <BrowserRouter> <div className="App"> @@ -145,6 +157,9 @@ function App() { })} /> </Route> + <Route path="/positivetests"> + <HistoryTable name="Positive Tests" data={positiveCases} /> + </Route> <Route path="/beds"> <History name="Bed Availability" |