2023-01-19 17:52:36 +00:00

135 lines
6.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 'Setup Storybook'
---
Now that youve learned what stories are and how to browse them, lets demo working on one of your components.
Pick a simple component from your project, like a Button, and write a `.stories.js`, or a `.stories.mdx` file to go along with it. It might look something like this:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'react/your-component.js.mdx',
'react/your-component.ts.mdx',
'angular/your-component.ts.mdx',
'vue/your-component.2.js.mdx',
'vue/your-component.ts-2.ts.mdx',
'vue/your-component.3.js.mdx',
'vue/your-component.ts-3.ts.mdx',
'web-components/your-component.js.mdx',
'web-components/your-component.ts.mdx',
'svelte/your-component.js.mdx',
'html/your-component.js.mdx',
'html/your-component.ts.mdx',
'preact/your-component.js.mdx',
]}
usesCsf3
csf2Path="get-started/setup#snippet-your-component"
/>
<!-- prettier-ignore-end -->
Go to your Storybook to view the rendered component. Its OK if it looks a bit unusual right now.
Depending on your technology stack, you also might need to configure the Storybook environment further.
## Configure Storybook for your stack
Storybook comes with a permissive [default configuration](../configure/overview.md). It attempts to customize itself to fit your setup. But its not foolproof.
Your project may have additional requirements before components can be rendered in isolation. This warrants customizing configuration further. There are three broad categories of configuration you might need.
<details>
<summary>Build configuration like Webpack and Babel</summary>
If you see errors on the CLI when you run the `yarn storybook` command, you likely need to make changes to Storybooks build configuration. Here are some things to try:
- [Presets](../addons/addon-types.md) bundle common configurations for various technologies into Storybook. In particular, presets exist for Create React App, SCSS and Ant Design.
- Specify a custom [Babel configuration](../configure/babel.md#custom-babel-config) for Storybook. Storybook automatically tries to use your projects config if it can.
- Adjust the [Webpack configuration](../builders/webpack.md) that Storybook uses. Try patching in your own configuration if needed.
</details>
<details>
<summary>Runtime configuration</summary>
If Storybook builds but you see an error immediately when connecting to it in the browser, in that case, chances are one of your input files is not compiling/transpiling correctly to be interpreted by the browser. Storybook supports evergreen browsers, but you may need to check the Babel and Webpack settings (see above) to ensure your component code works correctly.
</details>
<details id="component-context" name="component-context">
<summary>Component context</summary>
If a particular story has a problem rendering, often it means your component expects a specific environment is available to the component.
A common frontend pattern is for components to assume that they render in a specific “context” with parent components higher up the rendering hierarchy (for instance, theme providers).
Use [decorators](../writing-stories/decorators.md) to “wrap” every story in the necessary context providers. The [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering) file allows you to customize how components render in Canvas, the preview iframe. See how you can wrap every component rendered in Storybook with [Styled Components](https://styled-components.com/) `ThemeProvider`, [Vue's Fontawesome](https://github.com/FortAwesome/vue-fontawesome), or with an Angular theme provider component in the example below.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'react/storybook-preview-with-styled-components-decorator.js.mdx',
'react/storybook-preview-with-styled-components-decorator.story-function.js.mdx',
'vue/storybook-preview-with-library-decorator.2-library.js.mdx',
'vue/storybook-preview-with-library-decorator.3-library.js.mdx',
'vue/storybook-preview-with-hoc-component-decorator.2-component.js.mdx',
'vue/storybook-preview-with-hoc-component-decorator.3-component.js.mdx',
'vue/storybook-preview-with-mixin-decorator.2-mixin.js.mdx',
'angular/storybook-preview-with-styled-components-decorator.ts.mdx'
]}
/>
<!-- prettier-ignore-end -->
</details>
## Render component styles
Storybook isnt opinionated about how you generate or load CSS. It renders whatever DOM elements you provide. But sometimes, things wont “look right” out of the box.
You may have to configure your CSS tooling for Storybooks rendering environment. Here are some tips on what could help:
<details>
<summary>CSS-in-JS like styled-components and Emotion</summary>
If you are using CSS-in-JS, chances are your styles are working because theyre generated in JavaScript and served alongside each component. Theme users may need to add a decorator to `.storybook/preview.js`, [see above](#component-context).
</details>
<details>
<summary>@import CSS into components</summary>
Storybook allows you to import CSS files in your components directly. But in some cases you may need to [tweak its Webpack configuration](../builders/webpack.md#extendingstorybooks-webpack-config). Angular components require [a special import](../configure/styling-and-css.md#importing-css-files).
</details>
<details>
<summary>Global imported styles</summary>
If you have global imported styles, create a file called [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering) and import the styles there. They will be added by Storybook automatically for all stories.
</details>
<details>
<summary>Add external CSS or webfonts in the &lt;head&gt;</summary>
Alternatively, if you want to inject a CSS link tag to the `<head>` directly (or some other resource like a webfont link), you can use [`.storybook/preview-head.html`](../configure/story-rendering.md#adding-to-&#60head&#62) to add arbitrary HTML.
</details>
<details>
<summary>Load fonts or images from a local directory</summary>
If you're referencing fonts or images from a local directory, you'll need to configure the Storybook script to [serve the static files](../configure/images-and-assets.md).
</details>
## Load assets and resources
If you want to [link to static files](../configure/images-and-assets.md) in your project or stories (e.g., `/fonts/XYZ.woff`), use the `-s path/to/folder` flag to specify a static folder to serve from when you start up Storybook. To do so, edit the `storybook` and `build-storybook` scripts in `package.json`.
We recommend serving external resources and assets requested in your components statically with Storybook. It ensures that assets are always available to your stories.