storybook/docs/addons/writing-presets.mdx
2024-06-17 18:22:07 +01:00

155 lines
8.4 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: 'Write a preset addon'
sidebar:
order: 4
title: Write a preset
---
Storybook presets are pre-configured settings or configurations that enable developers quickly set up and customize their environment with a specific set of features, functionalities, or integrations.
## How presets work
Preset addons allow developers to compose various configuration options and plugins via APIs to integrate with Storybook and customize its behavior and functionality. Typically, presets are separated into two files, each with its specific role.
### Local presets
This type of preset allows you to encapsulate and organize configurations specific to the addon, including [builder](../builders/index.mdx) support, [Babel](https://babeljs.io/), or third-party integrations. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-local-preset.md" />
{/* prettier-ignore-end */}
### Root-level presets
This type of preset is user-facing and responsible for registering the addon without any additional configuration from the user by bundling Storybook-related features (e.g., [parameters](../writing-stories/parameters.mdx)) via the [`previewAnnotations`](../api/main-config/main-config-preview-annotations.mdx) and UI related features (e.g., addons) via the `managerEntries` API. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-root-preset.md" />
{/* prettier-ignore-end */}
## Presets API
When writing a preset, you can access a select set of APIs to interact with the Storybook environment, including the supported builders (e.g., Webpack, Vite), the Storybook configuration, and UI. Below are the available APIs you can use when writing a preset addon.
### Babel
To customize Storybook's Babel configuration and add support for additional features, you can use the [`babelDefault`](../api/main-config/main-config-babel-default.mdx) API. It will apply the provided configuration ahead of any other user presets, which can be further customized by the end user via the [`babel`](../api/main-config/main-config-babel.mdx) configuration option. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-preset-babelDefault.md" />
{/* prettier-ignore-end */}
<Callout variant="info">
The Babel configuration is only applied to frameworks that use Babel internally. If you enable it for a framework that uses a different compiler, like [SWC](https://swc.rs/) or [esbuild](https://esbuild.github.io/), it will be ignored.
</Callout>
### Builders
By default, Storybook provides support for the leading industry builders, including [Webpack](../builders/webpack.mdx) and [Vite](../builders/vite.mdx). If you need additional features for any of these builders, you can use APIs to extend the builder configuration based on your specific needs.
#### Vite
If you are creating a preset and want to include Vite support, the `viteFinal` API can be used to modify the default configuration and enable additional features. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-preset-viteFinal.md" />
{/* prettier-ignore-end */}
#### Webpack
To customize the Webpack configuration in Storybook to add support for additional file types, apply specific loaders, configure plugins, or make any other necessary modifications, you can use the `webpackFinal` API. Once invoked, it will extend the default Webpack configuration with the provided configuration. An example of this would be:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-preset-webpackFinal.md" />
{/* prettier-ignore-end */}
### ManagerEntries
If you're writing a preset that loads third-party addons, which you may not have control over, but require access to specific features or additional configuration, you can use the `managerEntries` API. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-root-preset-manager-entries.md" />
{/* prettier-ignore-end */}
### PreviewAnnotations
If you need additional settings to render stories for a preset, like [decorators](../writing-stories/decorators.mdx) or [parameters](../writing-stories/parameters.mdx), you can use the `previewAnnotations` API. For example, to apply a decorator to all stories, create a preview file that includes the decorator and make it available to the preset as follows:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-addons-preset-preview.md" />
{/* prettier-ignore-end */}
## Advanced configuration
The presets API is designed to be flexible and allow you to customize Storybook to your specific needs, including using presets for more advanced use cases without publishing them. In such cases, you can rely on a private preset. These private presets contain configuration options meant for development purposes and not for end-users. The `.storybook/main.js|ts` file is an example of such a private preset that empowers you to modify the behavior and functionality of Storybook.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-main-advanced-config-example.md" />
{/* prettier-ignore-end */}
### Addons
For addon consumers, the [`managerEntries`](#managerentries) API can be too technical, making it difficult to use. To make it easier to add addons to Storybook, the preset API provides the [`addons`](../api/main-config/main-config-addons.mdx) API, which accepts an array of addon names and will automatically load them for you. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-main-register-example-addon.md" />
{/* prettier-ignore-end */}
The array of values supports references to additional presets and addons that should be included in the manager. Storybook will automatically detect whether the provided value is a preset or an addon and load it accordingly.
### Entries
Entries are the place to register entry points for the preview. This feature can be utilized to create a configure-storybook preset that automatically loads all `*.stories.js` files into Storybook, eliminating the need for users to copy-paste the same configuration repeatedly.
### UI configuration
The Storybook preset API also provides access to the UI configuration, including the `head` and `body` HTML elements of the preview, configured by the [`previewHead`](../api/main-config/main-config-preview-head.mdx) and [`previewBody`](../api/main-config/main-config-preview-body.mdx) APIs. Both allow you to set up Storybook in a way that is similar to using the [`preview-head.html`](../configure/story-rendering.mdx#adding-to-head) and [`preview-body.html`](../configure/story-rendering.mdx#adding-to-body) files. These methods accept a string and return a modified version, injecting the provided content into the HTML element.
{/* prettier-ignore-start */}
<CodeSnippets path="main-config-preview.md" />
{/* prettier-ignore-end */}
Additionally, if you need to customize the manager (i.e., where Storybooks search, navigation, toolbars, and addons render), you can use the [`managerHead`](../api/main-config/main-config-manager-head.mdx) to modify the UI, similar to how you would do it with the `manager-head.html` file. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-custom-manager-head.md" />
{/* prettier-ignore-end */}
However, if you need, you can also customize the template used by Storybook to render the UI. To do so, you can use the `previewMainTemplate` API and provide a reference for a custom template created as a `ejs` file. For an example of how to do this, see the [template](https://github.com/storybookjs/storybook/blob/next/code/builders/builder-webpack5/templates/preview.ejs) used by the Webpack 5 builder.
## Troubleshooting
### Storybook doesn't load files in my preset
As Storybook relies on [esbuild](https://esbuild.github.io/) instead of Webpack to build the UI, presets that depend on the `managerWebpack` API to configure the manager or load additional files other than CSS or images will no longer work. We recommend removing it from your preset and adjusting your configuration to convert any additional files to JavaScript.
**Learn more about the Storybook addon ecosystem**
* [Types of addons](./addon-types.mdx) for other types of addons
* [Writing addons](./writing-addons.mdx) for the basics of addon development
* Presets for preset development
* [Integration catalog](./integration-catalog.mdx) for requirements and available recipes
* [API reference](./addons-api.mdx) to learn about the available APIs