@open-inwoner/design-tokens

0.0.5-alpha.0 • Public • Published

Design Tokens

The Open Inwoner Project (OIP) has the goal to follow the NL Design System. We organize the design tokens in JSON files and use them within the Open Inwoner backend project.

For any component that OIP has that corresponds with a community component, we use the community classes. But for any component that OIP has that does not have an NLDS equivalent, we use our own OIP brand tokens. We also set OIP (brand/component) tokens in case we have certain values that are used repeatedly, like for example border-radius.

Long term goal is to make it possible for different municipalities to make their own design-tokens and then simply switch themes in OIP.

Using tokens

If you are only consuming the design tokens, the easiest integration path is adding the NPM-package in your own project.

Add this package to your project

This package can be added to your project as an NPM node module: after building the node, you will only need to work with its rendered CSS.

Get the node module from https://www.npmjs.com/package/@open-inwoner/design-tokens

npm i @open-inwoner/design-tokens

Usage

Install the necessary modules (from inside the open-inwoner-design-tokens directory):

npm ci --legacy-peer-deps

Generate the CSS files

npm run build

Import the CSS in your own CSS files by using our theme class in your Master HTML template

<html lang="nl" class="view openinwoner-theme">
.openinwoner-theme {
. . .
}

Developing and using tokens

In case you do not just wish to consume, but add completely new tokens or adjust their values, follow these steps. Then, import the desired build target artifact and run your usual build chain.

Specify the design tokens in JSON files, which are picked up and merged using the style-dictionary library. The resulting packages include various build targets, such as ES6 modules, CSS variables files, SASS vars... to be consumed in downstream projects.

The draft Design Token Format drives the structure of these design tokens.

For adding or changing design tokens, we recommend installing the package locally and using npm workspaces or npm link for the least-friction experience. You can include the package as a git-submodule and leverage npm workspaces with instructions in the downstream projects.

This allows you to create atomic PRs with design token changes, while being able to develop against the newest changes.

Run:

npm start

to start the watcher which will re-build on changes.

To prettify files:

Run:

npm run format

Naming pattern

Because of the way style-dictionary works, you have to pay close attention to the structure of the tokens. E.g. if you have two tokens definition files like:

{
  "oip": {
    "color": {
      "fg": {
        "value": "#000000"
      }
    }
  }
}
{
  "oip": {
    "color": {
      "fg": {
        "muted": {
          "value": "#000000"
        }
      }
    }
  }
}

Then only --oip-color-fg will be emitted since the merged object sees a value key at the oip.color.fg path.

You can usually avoid this by sticking to a structure adhering to:

<prefix>.<component>.<modifier>.<UIState>.<CSSProperty>

Where UIState can be blank or a value like hover, active...

Alternatively, if the structure is not that important, you can put the tokens on the same level, e.g.:

{
  "oip": {
    "color": {
      "fg-muted": {
        "value": "#000000"
      }
    }
  }
}

The latter form is harder to keep track off across files though.

Add as a submodule instead of NPM

In the root folder of your project, create a dir or directly add the submodule in its own directory:

cd open-inwoner-design-tokens

git submodule add git@github.com:maykinmedia/open-inwoner-design-tokens.git

git status

git submodule update --init

Do not forget to commit these changes to your repository.

If you are using Github actions, add these to your script:

      - uses: actions/checkout@v3
        with:
          submodules: 'true'

In order to update an existing Git submodule, you need to execute the “git submodule update” with the “–remote” and the “–merge” option.

git submodule update --remote --merge

Package Sidebar

Install

npm i @open-inwoner/design-tokens

Weekly Downloads

368

Version

0.0.5-alpha.0

License

EUPL-1.2

Unpacked Size

53.9 kB

Total Files

15

Last publish

Collaborators

  • maykinmedia