storybook/docs/sharing/storybook-composition.md
2022-06-28 23:10:40 +01:00

113 lines
4.6 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: 'Storybook Composition'
---
Composition allows you to browse components from any Storybook accessible via URL inside your local Storybook. You can compose any [Storybook published online](./publish-storybook.md) or running locally no matter the view layer, tech stack, or dependencies.
![Storybook reference external](./reference-external-storybooks-composition.jpg)
Youll see the composed Storybooks stories in the sidebar alongside your own. This unlocks common workflows that teams often struggle with:
- 👩‍💻 UI developers can quickly reference prior art without switching between Storybooks.
- 🎨 Design systems can expand adoption by composing themselves into their users Storybooks.
- 🛠 Frontend platform can audit how components are used across projects.
- 📚 View multiple Storybooks with different tech stacks in one place
![Storybook composition](./combine-storybooks.png)
## Compose published Storybooks
In your [`.storybook/main.js`](../configure/overview.md#configure-story-rendering) file add a `refs` field with information about the reference Storybook. Pass in a URL to a statically built Storybook.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-main-ref-remote.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
<div class="aside">
💡 Limitation: Addons in composed Storybooks will not work as they normally do in non-composed Storybook.
</div>
## Compose local Storybooks
You can also compose multiple Storybooks that are running locally. For instance, if you have a React Storybook and a Angular Storybook running on different ports you can update your configuration file (i.e., `.storybook/main.js`) and reference them;
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-main-ref-local.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
Adding this configuration will combine both the React and Angular Storybooks into your current one. When either of these changes, youll see the changes being applied automatically. Enabling you to develop both frameworks in sync.
## Compose Storybooks per environment
You can also compose Storybooks based on the current development environment (e.g, development, staging, production). For instance if the project you're working on has already a published Storybook, but also includes a version with cutting edge features not yet released you can adjust the composition based on that. For example:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-main-ref-per-environment.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
<div class="aside">
💡 Similar to the other fields available in Storybooks configuration file, the `refs` field can also be a function that accepts a config parameter containing Storybooks configuration object. Check the [Webpack documentation](../builders/webpack.md#extending-storybooks-webpack-config) to learn more about it.
</div>
### Improve your Storybook composition
So far we've seen how we can use composition with local or published Storybooks. One thing worth mentioning as your Storybook will grow in time with your own stories, or through composition with other Storybooks, is that you can optimize the deployment process by including the following command in your workflow, run from your project root:
```shell
npx storybook extract
```
<div class="aside">
`storybook extract` uses [Puppeteer](https://www.npmjs.com/package/puppeteer), which downloads and installs Chromium. Set the environment `SB_CHROMIUM_PATH` to configure your local Chromium installation.
</div>
Running this command will generate a `stories.json` file in the default build directory (`storybook-static`) with the information related to your Storybook. Heres an example of the file contents:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-extract-result.json.mdx',
]}
/>
<!-- prettier-ignore-end -->
Linking to a Storybook deployed using this approach will yield all the stories and other relevant information displayed in the UI.
If you need, you can also add additional arguments to this command. For instance, if you want to generate the stories.json file into a custom directory you can use the following:
```shell
npx storybook extract my-built-storybook-directory my-other-directory/stories.json
```
When executed it will lookup a built Storybook in the `my-built-storybook-directory` and create the `stories.json` file in the `my-other-directory` with all the necessary information.
<div class="aside">
💡 If you need to use the arguments, youll need to include both of them or the command will fail.
</div>