A library of React components for the municipality of The Hague
The Municipality of The Hague React UI-components library is constructed, so that re-use by other government organisations is possible with minimal effort. The UI-components are available in a basic styling and through the use of Design Tokens it is possible to give the components your own (corporate) identity. Within the Municipality of The Hague the components are used for:
- Corporate website (Wordpress - Open Web Concept)
- Satelite websites (Wordpress)
- OpenSource eForms (OpenFormulieren - Dimpact)
- Portal (MijnDenHaag - collaboration with Amsterdam and Dimpact)
npm install @gemeente-denhaag/components-react
import React, { Component } from "react";
import { MyComponent } from "@gemeente-denhaag/components-react";
class Example extends Component {
render() {
return <MyComponent />;
}
}
- Clone this repository
- Install npm go here for instructions. Make sure to install version
16.13.0
or higher. - Install pnpm using these instructions.
- Run the following command to install all development dependencies:
pnpm install --frozen-lockfile
Be sure to install IDE plugins for ESlint, Prettier, JSONLint and Stylelint if available.
The project folders are structured in the following way:
The src
folder houses both our components
and our storybook stories
, these are both in their own folders.
Our components are sorted into several categories, where each category has its own parent folder.
All of our components are their own package and managed with pnpm.
In order to test components we use storybook.\
If you have not yet run build then please run the build. If you already have run this command then skip this next command:
pnpm run build
To run storybook locally we start it with the following command:
pnpm run storybook
We don't need to re-run the command over-and-over because storybook should detect changed files ✨automagically✨ and refresh the displayed components.
In order to create a new npm package we need to create a package.json file for it inside it's folder. Start by filling it with the following information:
{
"name": "@gemeente-denhaag/{component_name}",
"version": "0.1.0",
"description": "A short description of the component",
"bugs": "https://github.com/nl-design-system/denhaag/issues",
"author": "Municipality of The Hague",
"license": "EUPL-1.2",
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"import": "./dist/mjs/index.js",
"default": "./dist/cjs/index.js"
},
"./index.css": "./dist/index.css"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": ["dist"],
"repository": {
"type": "git",
"url": "https://github.com/nl-design-system/denhaag.git",
"directory": "{path/to/component}"
},
"scripts": {
"build": "rollup -c ../../rollup.config.mjs",
"clean": "rimraf dist tsconfig.tsbuildinfo"
},
"dependencies": {}
}
Don't forget to add all needed dependencies for your component to the dependencies section of the component's package.json
.
We will also need to add our component to the meta-package which installs all of the Den Haag react components in the same category. We can do this by adding it to the list of dependencies.
The file we need is located here: components/[CATEGORY]/package.json
An entry should be structured like this:
"@gemeente-denhaag/{component_name}": "workspace:*"
Similarly, if you create a new category we need to add the category package to the list of dependencies in the meta-package which installs all of the Den Haag react components.
This file is located here: components/package.json
An entry should be structured in the same way as above.
With Express we created an CSP environment to test our components in. This is a local environment that can be used to test our components in a environment with CSP headers in place. To start the CSP environment run the following command:
node server.js
Certain Components available in this repository may become part of the NL Design System component library. When you contribute to this project you allow your contributions to be made a part of the NL Design System component library. The NL Design System project maintainers decide which components will be included in their component library.
Our public issue tracker is located here. Before reporting an issue make sure to check if a similar issue already exists. When reporting an issue give detailed information about the issue and how to reproduce it if applicable.
Chromatic supports us with a free starter plan for open source.