All Projects → chromaui → Learnstorybook.com

chromaui / Learnstorybook.com

Licence: mit
Static site and content for Storybook tutorials

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Learnstorybook.com

Learnstorybook Code
Code for Learn Storybook
Stars: ✭ 249 (-89.13%)
Mutual labels:  learning, design-system, storybook
learn-react-typescript
Learning React contents with TypeScript (Hooks, Redux)
Stars: ✭ 15 (-99.35%)
Mutual labels:  learning, storybook
react-toolkit
Flexible components html + css + react using BEM convention. Maybe, you can call it "Design System" !
Stars: ✭ 89 (-96.12%)
Mutual labels:  storybook, design-system
ripple
Ripple is the frontend framework for Single Digital Presence, delivered using Nuxt and Vue.js
Stars: ✭ 36 (-98.43%)
Mutual labels:  storybook, design-system
mod-uk-design-system
Build web applications that meet the Defence Digital service standards
Stars: ✭ 78 (-96.6%)
Mutual labels:  storybook, design-system
pebble
Pebble Design System
Stars: ✭ 14 (-99.39%)
Mutual labels:  storybook, design-system
elements
Lovingly crafted ui components based on web components. Works well with all Frameworks - including Angular, React and Vue.
Stars: ✭ 42 (-98.17%)
Mutual labels:  storybook, design-system
orfium-ictinus
This repo will include the building blocks to create the Orfium Parthenons to come ...
Stars: ✭ 20 (-99.13%)
Mutual labels:  storybook, design-system
marble
Marble is the design system used by The Metropolitan Museum of Art 🏛
Stars: ✭ 14 (-99.39%)
Mutual labels:  component-driven, design-system
Storybook Design Token
The Storybook Design Token Addon allows you to generate design token documentation from your stylesheets.
Stars: ✭ 252 (-89%)
Mutual labels:  design-system, storybook
Matchbox
🔥 A react UI component library
Stars: ✭ 58 (-97.47%)
Mutual labels:  design-system, storybook
react-ecommerce
E-commerce monorepo application using NextJs, React, React-native, Design-System and Graphql with Typescript
Stars: ✭ 136 (-94.06%)
Mutual labels:  storybook, design-system
Stardust
🎨Tiller Design System
Stars: ✭ 19 (-99.17%)
Mutual labels:  storybook, design-system
smores-react
🍭 Marshmallow React components
Stars: ✭ 34 (-98.52%)
Mutual labels:  storybook, design-system
cuida
A design system built by Sysvale, using storybook and Vue components
Stars: ✭ 16 (-99.3%)
Mutual labels:  storybook, design-system
vuetify-component-lib-template
Template for creating a component library/design system using Vue.js and Vuetify.js.
Stars: ✭ 35 (-98.47%)
Mutual labels:  storybook, design-system
React95
A React components library with Win95 UI
Stars: ✭ 1,779 (-22.35%)
Mutual labels:  storybook, design-system
react-uswds
USWDS 3.0 components built in React
Stars: ✭ 108 (-95.29%)
Mutual labels:  storybook, design-system
ui-kit
D2iQ UI Kit
Stars: ✭ 29 (-98.73%)
Mutual labels:  storybook, design-system
sodium-ui
Sodium is a simple, modular and customizable web component library to build elegant and accessible UI pieces for your React Application.
Stars: ✭ 23 (-99%)
Mutual labels:  storybook, design-system

Learn Storybook

Learn Storybook teaches you how to use Storybook and Component-Driven Development to build UIs from scratch. We walk through core concepts from building and testing to deployment. Using engaging guides and content, we hope to get you up to speed on Storybook best practices in a fast and approachable way.

Contribute

Contributions to Learn Storybook are encouraged! If it’s something small like grammar, punctuation, or even a code snippet, first check the open pull requests to see if it's already being addressed, if it's not, then open up a pull request. If it’s a bigger change like adding a new guide or chapter, add an issue for discussion before getting started.

You'll find the guides and chapters in the /content directory. Content is organized at the guide level. Within the /content directory, you'll find directories for the current guides that are offered. Within each guide directory, you can see the chapters that make up that guide.

We love translations of our guides to new languages. That helps the Storybook community learn in the language they're most comfortable with. Find out more ».

Traditional Chinese translation is converted from Simplified Chinese using OpenCC. Please help us correct any idiomatic errors.

Who made LearnStorybook.com?

The text, code, and production were contributed by Chromatic. The tutorial was inspired by Chromatic’s popular GraphQL + React tutorial series

Develop

Install packages yarn

This project relies on some content from the main Storybook repo. To fetch it, run:

yarn extract-sb-docs-metadata

Start development server with yarn dev

Contributors

Adding new content

Thanks for taking the time to contribute and add content to Learn Storybook! The tutorials below reference file paths, which will be represented in this format:

/content/:guide/:framework?/:language/:chapter.md

Path parts that are prefixed with a colon (:) are meant to be dynamic names that are chosen by you. :guide becomes intro-to-storybook or whatever you decide to use for your content. If a path part is followed by a question mark (?), then it is optional.

Add a guide

  1. Within the /content directory, add a directory for your new guide: /content/:guide. The name you choose for the directory will be used as the slug for the directory when you access it in a browser.

  2. Add a new file, index.md, to your newly created directory: /content/:guide/index.md. This file will contain the content and metadata for your guide that will be used to populate the site. Using intro-to-storybook's index.md as an example, populate the following required frontmatter fields with meaningful content about your guide:

---
title:
heroDescription:
description:
overview:
themeColor:
---
  1. See the guide frontmatter section for additional customization options, many of which you'll want to use in order to create a guide that feels complete.

  2. Populate the guide content in markdown underneath the frontmatter. This content shows up on the guide page after the table of contents. For example, you can insert images, call out frameworks, or provide details about the project contained within the guide.

  3. Visit your guide at http://localhost:8000/:guide

Add a chapter

If you are translating a chapter that already exists in a different language, skip to step 2.

If you are writing a new chapter for a language that already exists, skip to step 3.

  1. Decide if your guide should be organized by framework. Will the examples and messaging be specific to the reader's framework of choice? If so, add an additional directory for the framework: /content/:guide/:framework. If not, carry on to the next step -- you will put your translation directories and chapters inside the /content/:guide directory.

  2. Add a directory for the language that you will use to write your chapter. The naming of this language directory is important and should mirror what has been used in other guides for similar translations. Additionally, a helper is used across the app to transform the language into a human readable name, so make sure to update that helper if you are adding a language that has not yet been used. Know of a better way to convert this language into something more readable? Start an issue and let us know your idea.

  3. Add a new file for the chapter that you are going to write:

/content/:guide/:framework?/:language/:chapter.md

  1. Update the guide's toc frontmatter. Each time you add a new chapter, make sure to go back and update the guide's toc in order to populate the Table of Contents as well as control the order of the chapters. Using the name of the file that you just created in step 3, go back to the guide frontmatter and update the toc:
toc: [":chapter"]
  1. Populate the chapter frontmatter.

  2. Populate the chapter content in markdown underneath the frontmatter.

  3. Visit your chapter at http://localhost:8000/:guide/:chapter or by going to http://localhost:8000/:guide/ and subsequently navigating to your chapter from the Table of Contents.

Guide frontmatter


Required


title

The primary name for your guide. What is it called?

description

A relatively short description of the guide. Used primarily in the primary navigation tooltip menu.

heroDescription

A message about the guide that will live prominently on the guide page. Why is this guide important? What is the context around the guide that helps reinforce the importance of moving forward to read the guide?

overview

A section on the guide page discussing the things you will learn in the guide.

themeColor

A named color, hex, rgba value, etc. Basically anything you can use in the color css property.

toc

A list and the corresponding order of the chapters in the guide. Short for "Table of Contents". List items should map to the file name of the chapter.


Suggested


codeGithubUrl

The URL to the repository that has the code examples for your guide. Used in combination with the commit frontmatter in the chapter to link chapters to their corresponding code examples.

coverImagePath

The primary image for the guide. Used on the guide page.

thumbImagePath

A thumbnail representation of the cover image. Used in smaller places such as the guide list on the index page.

contributorCount

A string representation of the amount of contributors to this guide. Since the Github API only shows contributors to the repo as a whole rather than specific directories, we do this manually for now. Know of a better way? Start an issue and let us know your idea.

authors

A list of authors of the guide. Format:

authors:
  [
    {
      src: "",
      name: "",
      detail: "",
    },
  ]

contributors

A list of contributors to the guide. Format:

contributors:
  [
    {
      src: "",
      name: "",
      detail: "",
    },
  ]

heroAnimationName

An animation to use on the guide's hero image, which corresponds with a named export from the animation styles file. The export must contain the entire CSS property and value for the animation.

twitterShareText

The text content for the tweet that is auto-populated when people choose to share the guide on Twitter. The URL that is included in the tweet is auto-generated based on the guide, but the individual guide can control the messaging before the link.

Chapter frontmatter


Required


title

The primary name for the chapter. What is it called?

tocTitle

Specify a different title to only be used for the Table of Contents sections.

description

A brief description of the chapter. Shown underneath the chapter title on the chapter page as well as in the Table of Contents on the guide page.


Suggested


commit

The short commit hash that maps to the commit on the code example repo for this chapter.


Current Guide Status

Currently, the Intro to Storybook tutorial features the following translations. Some are updated; others are not. If you want to get acquainted with Storybook and you are a native speaker of any of the languages detailed below. Help us out updating the translations. Leave a comment on the issue above.

Framework Translation Updated
React English
Spanish
Portuguese
ZH-TW
Mainland Chinese
Dutch
Korean
Japanese
French
German
React Native English
Spanish
Vue English
Spanish
Portuguese
French
Mainland Chinese
Angular English
Spanish
Portuguese
Japanese
Svelte English
Spanish
Ember English

The Design Systems for Developers tutorial features the following translations. Some are updated; some are not. If you want to expand your Storybook knowledge and learn how to build an industry-grade component library, and you're a native speaker of any of the languages, detailed below. Help us out by updating the translations. Comment in the issue above.

Translation Updated
English
Korean
Portuguese

The Create an Addon tutorial features the following translations. If you want to learn about the addon ecosystem and you're a native speaker of any of the languages, detailed below. Help us out by updating the translations. Leave a Comment on the issue above.

Translation Updated
English
French
Spanish

The Visual Testing handbook features the following translations. If you want to learn more about testing and solid workflows that can help you as a frontend developer, and you're a native speaker of any of the languages, detailed below. Help us out by updating the translations. Leave a comment on the issue above.

Translation Updated
English
Spanish
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].