├── .appveyor.yml ├── .cargo-ok ├── .gitignore ├── .travis.yml ├── LICENSE-MIT ├── README.md ├── app ├── cargo-module.d.ts └── index.ts ├── frontend ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ ├── app.rs │ ├── data.rs │ ├── data_source.rs │ ├── graph.rs │ ├── graph_render.rs │ └── lib.rs ├── global.css ├── index.html └── package.json /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.cargo-ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # covplot 2 | 3 | A wasm web app for plotting CoVID-19 case data in the browser. 4 | -------------------------------------------------------------------------------- /app/cargo-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/app/cargo-module.d.ts -------------------------------------------------------------------------------- /app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/app/index.ts -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /frontend/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/Cargo.lock -------------------------------------------------------------------------------- /frontend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/Cargo.toml -------------------------------------------------------------------------------- /frontend/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/app.rs -------------------------------------------------------------------------------- /frontend/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/data.rs -------------------------------------------------------------------------------- /frontend/src/data_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/data_source.rs -------------------------------------------------------------------------------- /frontend/src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/graph.rs -------------------------------------------------------------------------------- /frontend/src/graph_render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/graph_render.rs -------------------------------------------------------------------------------- /frontend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/frontend/src/lib.rs -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/global.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbowens/covplot/HEAD/package.json --------------------------------------------------------------------------------