This is an interactive map that will point volunteers to vaccine trials happening in their area.
If you are new to the project please read this and fill the forms.
https://github.com/c19-rnd-dashboard/c19-rnd-dashboard-ui/projects/1
On the project board you can find the tickets to contribute, if you find one you want to help with assign it to yourself and move it to the In Progress
list, so we don't step on each other.
This is an example spreadsheet data with many products populated, here we can see the data we can work with and propose data structures we could consume as front end.
All ENV variables should be set on src/constants/config
for better visibility, and one time setup.
Storybook ENV variables will only show up if they are prefixed with STORYBOOK, and react variables will only show up if they are prefixed with REACT_APP. So if a variable needs to be picked up by both environments then we need to load it like this...
// src/constants/config.js
export const myAwesomeVar =
process.env.REACT_APP_MY_AWESOME_VAR ||
process.env.STORYBOOK_MY_AWESOME_VAR ||
'optional default value'
To add the api key for Mapbox, please generate a key from https://www.mapbox.com/ and add to your .env (or .env.local).
REACT_APP_MAPBOX_ACCESS_TOKEN=<Key>
STORYBOOK_MAPBOX_ACCESS_TOKEN=<key>
# only one of those needed at a time.
https://storybook-covid-19-treatment-dashboard.netlify.app/
You can create stories co-located with the files (this is recomended) and also inside the stories
folder. This storybook will be deployed for the master branch and for each PR to the frosty-kepler
endpoint on netlify.
This mock file would be for the main endpoint which will have the base data needed to fill the dashboard, please update as necesary.
Datastructure we have so far, for an asset (vaccine or treatment):
Primary Key: product_id
{
"brandName": "",
"chemicalName": "mrna-1273",
"conditionOrDisease": "covid-19",
"countries": "united states",
"countryCodes": "usa",
"currentStatus": "phase 1",
"indication": "covid-19",
"interventionType": "vaccine - prophylactic",
"moleculeType": "nucleic acid based therapies/vaccines",
"notes": "mrna-based vaccine",
"numSites": "2",
"otherPartners": "cepi",
"phase": "1",
"preferredName": "mrna-1273",
"productId": 1,
"productType": "",
"repurposed": "new",
"sponsors": "moderna,national institute of allergy and infectious diseases",
"status": "ongoing",
"therapeuticApproach": "unknown",
"trialId": "nct04283461",
"siteLocations": [
{
"name": "Hospital Pkwy",
"city": "San Jose",
"state": "California",
"country": "USA",
"lat": 37.239746,
"lon": -121.802344
}
]
}
All components should go under the src/components
folder. The best practice is for each component to have its own folder with tests
, mocks
, index
, actualComponent
and stories
. All this are optional use your best judgement for discerning when to add or leave out one of these files.
For example:
- components
|- MyAwesomeComponent
|- index.js
|- MyAwesomeComponent.jsx
|- MyAwesomeComponent.spec.jsx
|- MyAwesomeComponent.stories.jsx
// index.js
export { MyAwesomeComponent } from './MyAwesomeComponent'
// MyAwesomeComponent.spec.jsx
import React from 'react'
import { shallow } from 'enzyme'
it('should do something awesome', () => {
// ...
})
// MyAwesomeComponent.jsx
import React from 'react'
import PropTypes from 'prop-types'
const propTypes = {}
const defaultTypes = {}
export const MyAwesomeComponent = () => {}
MyAwesomeComponent.propTypes = propTypes
MyAwesomeComponent.defaultTypes = defaultTypes
// MyAwesomeComponent.stories.jsx
import React from 'react'
import { MyAwesomeComponent } from './MyAwesomeComponent'
export default {
title: 'Awesome Component',
}
export const AwesomeStory = () => <MyAwesomeComponent />
In the project directory, you can run:
yarn start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
yarn test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
yarn build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
yarn eject
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.