storybook/docs/sharing/storybook-composition.mdx
2024-07-09 23:44:05 +01:00

76 lines
3.7 KiB
Plaintext
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'
sidebar:
order: 4
title: 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.mdx) or running locally no matter the view layer, tech stack, or dependencies.
![Storybook reference external](../_assets/sharing/reference-external-storybooks-composition.png)
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](../_assets/sharing/combine-storybooks.png)
## Compose published Storybooks
In your [`.storybook/main.js|ts`](../configure/index.mdx#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 path="main-config-refs.md" />
{/* prettier-ignore-end */}
<Callout variant="warning">
Addons in composed Storybooks will not work as they normally do in a non-composed Storybook.
</Callout>
## Compose local Storybooks
You can also compose multiple Storybooks that are running locally. For instance, if you have a React Storybook and an Angular Storybook running on different ports, you can update your configuration file (i.e., `.storybook/main.js|ts`) and reference them as follows:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-main-ref-local.md" />
{/* prettier-ignore-end */}
Adding this configuration will combine React and Angular Storybooks into your current one. Youll see the changes being applied automatically when either of these changes. 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 already has 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 path="main-config-refs-with-function.md" />
{/* prettier-ignore-end */}
<Callout variant="info" icon="💡">
Similar to other fields available in Storybooks configuration file, the `refs` field can also be a function that accepts a `config` parameter containing Storybooks configuration object. See the [API reference](../api/main-config/main-config-refs.mdx) for more information.
</Callout>
## Troubleshooting
### Storybook composition is not working with my project
If you're working with an outdated Storybook version or have a project-specific requirement that prevents you from updating your Storybook to the latest version, you can rely on the Storybook CLI to generate the `index.json` file when you deploy your Storybook. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-extract-specific-version.md" />
{/* prettier-ignore-end */}
<Callout variant="info">
The usage of a specific version of the CLI is intended as the `extract` command is not available in Storybook 8.0 or higher. It also requires you to provide additional configuration to generate the `index.json` file accurately. See the [previous documentation](../../../release-7-6/docs/sharing/storybook-composition.mdx) for more information.
</Callout>