Skip to content

The dashboard provides information on the outbreak and prevalence of COVID-19 in The Netherlands

License

Notifications You must be signed in to change notification settings

NeeLonGithub/nl-covid19-data-dashboard

 
 

Repository files navigation

NL Coronavirus Dashboard

The dashboard provides information on the outbreak and prevalence of COVID-19 in The Netherlands. It combines measured and modelled data from various sources to give a broad perspective on the subject.

Contact

If you want to contact the dashboard team, feel free to open an issue for technical questions, bug reports or security findings. If you have a generic question or remark about the corona policy of the Dutch government, please consult the frequently asked questions or contact page on the dashboard.

Development & Contribution process

The core team works directly from this open-source repository. If you plan to propose changes, we recommend opening an issue beforehand where we can discuss your planned changes. This increases the chance that we might be able to use your contribution (or it avoids doing work if there are reasons why we wouldn't be able to use it).

Packages

The project is set up as a monorepo and therefore the code is organized in multiple packages.

  • app: The main application that contains the front-end part of the dashboard. README
  • cli: Command-line tools for things like data validation.
  • cms: Configurations for the Sanity content management system. README
  • common: Commonly shared code that multiple packages are using, like types and utils.
  • e2e: End-to-end tests using Cypress
  • icons: A React icon component library, used by the CMS and by app. README

Getting started (quickly)

You can run these commands to quickly get started. We advise you to read what's happening behind the scenes by reading the app README

$ yarn
$ yarn bootstrap
$ yarn dev

Usage

In this project we use Yarn instead of NPM, so the documentation assumes you have the yarn executable installed on your system.

If you would like to run the code on your local machine check out the readme documentation of the app and (optionally the) cms packages.

Coding Standards

Without describing in detail all the rules we tend to follow here are some worth noting:

  • All filenames are written in kebab-case.
  • We use named exports where possible. They improve typing and help refactoring.
  • We aim to stop using barrel files (using an index file in a folder to bundle exports for the consuming code). Barrel files require manual maintenance and are therefore prone to neglect if forgotten. Also, imports are auto-generated and collapsable by the IDE thus gives us no advantage.
  • When writing complex components, we like them to have their own folder with sub-folders for logic and components that contain code which is only used internally by the component. In the case of logic it can also be a file logic.ts if there is not a lot of business logic. When a component and sub-components share some local types they are often put in a separate types.ts file to avoid circular dependencies.
  • Booleans are prefixed with is/has/should etc.
  • Data schema properties and locale keys for the CMS are all snake_cased. These could be viewed as external data sources / APIs.
  • Event props follow a pattern of onEventName for the component props API. For handling the event we aim to use a name that describes what the function does as opposed to use handleEventNameSubject. Specifically, if the function is not specifically created to handle an event or if the function doings can comfortably be described in a function name.
  • We prefer to use function expressions over named function declarations. This means const doSomething = () => {} instead of function doSomething(){}.
  • Short functions, especially lambda's, are okay to write on a single line.
  • Short if-statements are okay to put on a single line, especially if it only calls a single command: if (isGoingToHappening()) doSomething();
  • We avoid using boolean && doSomething(); inside the component's JavaScript logic, but do use it inside the component's JSX ({boolean && ( ... )}) to conditionally render (parts of) the component.
  • We avoid unnecessary short-hand variable names like arr for array or i for index or acc for a reduce accumulator.
  • We use the following branch names:
    • feature/COR-XXX-descriptive-name-of-ticket-branch for features
    • bugfix/COR-XXX-descriptive-name-of-ticket-branch for bug fixes
    • hotfix/COR-XXX-descriptive-name-of-ticket-branch for hotfixes
    • task/COR-XXX-descriptive-name-of-ticket-branch for bigger features that are best reviewed in smaller chunks
  • We use commit messages according to: https://www.conventionalcommits.org/en/v1.0.0/
    • feat(optional-scope): commit description example for features
    • fix(optional-scope): commit description example for fixes
    • chore(optional-scope): commit description example for cleanups

Developer Documentation

For developers actively working on the platform we recommend reading the documentation here.

About

The dashboard provides information on the outbreak and prevalence of COVID-19 in The Netherlands

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.7%
  • JavaScript 1.1%
  • Other 0.2%