betterplace / betterplace-design-system

Home Page:https://betterplace.github.io/betterplace-design-system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Betterplace Design System

This is the repository for betterplace's design system: https://betterplace.github.io/betterplace-design-system

The system uses Storybook as a tool for developing a component library, guidelines and documentation, that work across all betterplace platforms.

πŸ”§ Setup

Install prerequisites

Open a terminal and enter the following commands one by one in order to install the tools necessary for running the project:

  1. Install Homebrew: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  2. Install asdf: brew install asdf
  3. Install the required asdf plugins:
  • asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
  • asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
  • asdf plugin-add yarn

Install the project

To run the project you first need to download all the files to your computer and install some dependencies:

  1. Clone the Git repository: git clone git@github.com:betterplace/betterplace-design-system.git
  2. Change to the directory where all the project files live: cd betterplace-design-system
  3. Install global dependencies (see .tool-versions): asdf install
  4. Install project's dependencies: yarn install

Run the project

  1. If you aren't already there, change to the directory where all the project files live: cd betterplace-design-system
  2. Start the server and run Storybook in your browser: yarn storybook
    • This might fail after updating the Git repository. In that case, run yarn install again.
  3. The browser will open automatically once it's finished. If not, you can open it manually: http://localhost:6006/

πŸ’» Development

Scripts

Command Description
yarn storybook Start and open storybook in the browser.
yarn build-storybook Build static storybook output.
yarn build-tokens Generate all CSS variables from tokens.

Design Tokens

We use Design Tokens exported by Figma Tokens and generate CSS variables from these tokens using Style Dictionary.

The tokens input file is located in config/tokens.json (the exported file from Figma). The generated output is located in the build folder. Each theme is generated into its own file with variables, that would override each other. This is by design, because we only include one of these at a time. For example, theme org would include build/css/themes/org.css. Additionally, a globals.css is generated, which includes only unique global tokens.

To re-generate tokens with style-dictionary, run the following command: yarn build-tokens

Customizing Storybook UI

  • you can adjust theme options in .storybook/betterplace-theme.js
  • if you need more control, write your CSS in .storybook/manager-head.html
  • static assets (images, fonts, ...) are located in the public folder

πŸ“¦ Data model

πŸ§ͺ Tests

🚒 Deployment

πŸ“’ Further documentation

πŸ“– License

Copyright 2022, gut.org gAG

About

https://betterplace.github.io/betterplace-design-system

License:Apache License 2.0


Languages

Language:TypeScript 89.6%Language:JavaScript 6.9%Language:EJS 2.3%Language:HTML 0.6%Language:Shell 0.3%Language:CSS 0.3%