|
| 1 | +import { PackageManagerTabs } from '@theme'; |
| 2 | + |
1 | 3 | # Use Storybook |
| 4 | + |
| 5 | +[Storybook](https://storybook.js.org/) is a powerful tool for developing UI components in isolation for React, Vue, and other frameworks. It enables you to build and test components independently, which can accelerate both development and testing. |
| 6 | + |
| 7 | +[storybook-rsbuild](https://github.com/rspack-contrib/storybook-rsbuild) is the Rsbuild powered Storybook builder, and provided the framework integration for React, Vue3 and vanilla JavaScript. The coherent Rsbuild system could make Storybook use an unified configuration with Rslib. |
| 8 | + |
| 9 | +:::tip |
| 10 | +You can create a new project with Storybook by using [create-rslib](/guide/start/quick-start#creating-an-rslib-project). |
| 11 | +::: |
| 12 | + |
| 13 | +## Getting Started |
| 14 | + |
| 15 | +### Setup a Rslib project |
| 16 | + |
| 17 | +This is the prerequisite for setting up Storybook. You need to have a Rslib project with components that you want to showcase in Storybook, check out [Solution](/guide/solution) to setup a Rslib project. |
| 18 | + |
| 19 | +### Add Storybook to project |
| 20 | + |
| 21 | +Set up a Storybook project with an existing Rslib project. To use React, Vue 3, vanilla JavaScript, or other frameworks, you must first install the appropriate Storybook framework package. For installation instructions, refer to the [Storybook Rsbuild documentation](https://storybook.rsbuild.dev/guide/framework.html). |
| 22 | + |
| 23 | +Using React as an example, at this step you need to: |
| 24 | + |
| 25 | +1. Install the dependencies for Storybook Rsbuild React framework. The essential ones include |
| 26 | + |
| 27 | + - [storybook](https://www.npmjs.com/package/@storybook/addon-essentials): The Storybook core. |
| 28 | + - [@storybook/addon-essentials](https://www.npmjs.com/package/@storybook/addon-essentials): a curated collection of addons to bring out the best of Storybook. |
| 29 | + - [@rsbuild/core](https://www.npmjs.com/package/@rsbuild/core): Storybook builder. |
| 30 | + - [storybook-addon-rslib](https://www.npmjs.com/package/storybook-addon-rslib): This addon will make Storybook Rsbuild could derive Rsbuild configuration from Rslib config file. |
| 31 | + The addon will automatically read the Rslib configuration and apply it to Storybook Rsbuild, ensuring that the configuration is unified. You can check the [storybook-addon-rslib](https://storybook.rsbuild.dev/guide/integrations/rslib.html) documentation for available options. |
| 32 | + |
| 33 | + <PackageManagerTabs |
| 34 | + command={{ |
| 35 | + npm: 'npm add storybook @storybook/addon-essentials storybook-addon-rslib @rsbuild/core -D', |
| 36 | + yarn: 'yarn add storybook @storybook/addon-essentials storybook-addon-rslib @rsbuild/core -D', |
| 37 | + pnpm: 'pnpm add storybook @storybook/addon-essentials storybook-addon-rslib @rsbuild/core -D', |
| 38 | + bun: 'bun add storybook @storybook/addon-essentials storybook-addon-rslib @rsbuild/core -D', |
| 39 | + }} |
| 40 | + /> |
| 41 | + |
| 42 | + The dependencies may vary for each framework, please refer to the [Storybook Rsbuild documentation](https://storybook.rsbuild.dev/guide/framework.html) for details. In this React example, we will install [storybook-rsbuild-react](https://www.npmjs.com/package/storybook-react-rsbuild) as the framework integration. |
| 43 | + |
| 44 | +2. Configure the Storybook configuration file `.storybook/main.js`, specify the stories and addons, and set the framework with corresponding framework integration. |
| 45 | + |
| 46 | + ```js title=".storybook/main.js" |
| 47 | + export default { |
| 48 | + stories: [ |
| 49 | + '../stories/**/*.mdx', |
| 50 | + '../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)', |
| 51 | + ], |
| 52 | + addons: ['@storybook/addon-essentials', 'storybook-addon-rslib'], |
| 53 | + framework: 'storybook-react-rsbuild', // storybook-react-rsbuild for example |
| 54 | + }; |
| 55 | + ``` |
| 56 | + |
| 57 | + 3. Add a simple story to the `stories` directory. For example, create a `Button.stories.js` file with the following content: |
| 58 | + |
| 59 | + ```js title="stories/Button.stories.js" |
| 60 | + import { Button } from '../src/Button'; |
| 61 | + |
| 62 | + const meta = { |
| 63 | + title: 'Example/Button', |
| 64 | + component: Button, |
| 65 | + }; |
| 66 | + |
| 67 | + export default meta; |
| 68 | + |
| 69 | + export const Primary = { |
| 70 | + args: { |
| 71 | + primary: true, |
| 72 | + label: 'Button', |
| 73 | + }, |
| 74 | + }; |
| 75 | + ``` |
| 76 | + |
| 77 | +:::tip |
| 78 | +In case you are using [Yarn Plug-n-Play](https://yarnpkg.com/features/pnp) or your project is set up within a mono repository environment, you might run into issues with module resolution. In such cases, you can add an `getAbsolutePath('storybook-addon-rslib')` function to resolve the addon. Check the [Storybook's FAQ](https://storybook.js.org/docs/faq#how-do-i-fix-module-resolution-in-special-environments) for more information. |
| 79 | +::: |
| 80 | + |
| 81 | +There you go, you could start and build the Storybook server with the following command: |
| 82 | + |
| 83 | +```bash |
| 84 | +npx storybook dev // development mode |
| 85 | +npx storybook build // build static files |
| 86 | +``` |
| 87 | + |
| 88 | +Check out more details in the [Storybook Rsbuild documentation](https://storybook.rsbuild.dev/) and the [Storybook documentation](https://storybook.js.org/docs/react/get-started/introduction). |
| 89 | + |
| 90 | +{/* TODO: */} |
| 91 | +{/* ## Module Federation */} |
| 92 | + |
| 93 | +## Example |
| 94 | + |
| 95 | +- [React component library + Rslib + Storybook](https://github.com/rspack-contrib/storybook-rsbuild/tree/main/sandboxes/rslib-react-component) |
0 commit comments