storybook/docs/writing-docs/autodocs.mdx
2024-11-05 10:48:44 +00:00

268 lines
16 KiB
Plaintext
Raw Permalink 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: 'Automatic documentation and Storybook'
sidebar:
order: 1
title: Autodocs
---
<YouTubeCallout id="BLUmt0j7OLY" title="INSTANT documentation with Storybook 7 AUTODOCS" />
Storybook Autodocs is a powerful tool that can help you quickly generate comprehensive documentation for your UI components. By leveraging Autodocs, you're transforming your stories into living documentation which can be further extended with [MDX](./mdx.mdx) and [Doc Blocks](./doc-blocks.mdx) to provide a clear and concise understanding of your components' functionality.
Storybook infers the relevant metadata (e.g., [`args`](../writing-stories/args.mdx), [`argTypes`](../api/arg-types.mdx), [`parameters`](../writing-stories/parameters.mdx)) and automatically generates a documentation page with this information positioned at the root-level of your component tree in the sidebar.
![Storybook autodocs](../_assets/writing-docs/autodocs.png)
## Set up automated documentation
Autodocs is configured through [tags](../writing-stories/tags.mdx). If a [CSF](../api/csf.mdx) file contains at least one story tagged with `autodocs`, then a documentation page will be generated for that component.
To enable automatic documentation for all stories in a project, add it to `tags` in your `.storybook/preview.js|ts` file:
{/* prettier-ignore-start */}
<CodeSnippets path="tags-autodocs-in-preview.md" />
{/* prettier-ignore-end */}
You can also enable it at the component (or story) level:
{/* prettier-ignore-start */}
<CodeSnippets path="tags-autodocs-in-meta.md" />
{/* prettier-ignore-end */}
You can disable auto docs for a particular component by [removing the tag](../writing-stories/tags.mdx#removing-tags):
{/* prettier-ignore-start */}
<CodeSnippets path="tags-autodocs-remove-component.md" />
{/* prettier-ignore-end */}
Similarly, you can exclude a particular story from the auto docs page, by removing the tag:
{/* prettier-ignore-start */}
<CodeSnippets path="tags-autodocs-remove-story.md" />
{/* prettier-ignore-end */}
### Configure
In addition to enabling the feature with `tags`, you can extend your Storybook configuration file (i.e., `.storybook/main.js|ts|cjs`) and provide additional options to control how documentation gets created. Listed below are the available options and examples of how to use them.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-auto-docs-full-config.md" />
{/* prettier-ignore-end */}
| Option | Description |
| ------------- | ----------------------------------------------------------------------------------------------------- |
| `defaultName` | Renames the auto-generated documentation page<br /> Default: `docs: { defaultName: 'Documentation' }` |
### Write a custom template
<YouTubeCallout id="q8SY4yyNE6Q" title="Custom Autodocs with Storybook 7 Docs Page | Quick Tips" />
To replace the default documentation template used by Storybook, you can extend your UI configuration file (i.e., `.storybook/preview.js|ts`) and introduce a `docs` [parameter](./doc-blocks.mdx#customizing-the-automatic-docs-page). This parameter accepts a `page` function that returns a React component, which you can use to generate the required template. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-auto-docs-custom-template-function.md" />
{/* prettier-ignore-end */}
<Callout variant="info" icon="💡">
Internally, Storybook uses a similar implementation to generate the default template. See the Doc Blocks [API reference](./doc-blocks.mdx#available-blocks) to learn more about how Doc Blocks work.
</Callout>
Going over the code snippet in more detail. When Storybook starts up, it will override the default template with the custom one composed of the following:
1. A header with the component's metadata retrieved by the `Title`, `Subtitle`, and `Description` Doc Blocks.
2. The first story defined in the file via the `Primary` Doc Block with a handy set of UI controls to zoom in and out of the component.
3. An interactive table with all the relevant [`args`](../writing-stories/args.mdx) and [`argTypes`](../api/arg-types.mdx) defined in the story via the `Controls` Doc Block.
4. A overview of the remaining stories via the `Stories` Doc Block.
#### With MDX
You can also use MDX to generate the documentation template. This is useful in non-React projects where JSX-handling is not configured. Normally, when you create an MDX file in your project, it is treated as normal documentation. To indicate that an MDX file is a documentation template, supply the `isTemplate` property to its [`Meta`](../api/doc-blocks/doc-block-meta.mdx) Doc Block. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-mdx-template-with-prop.md" />
{/* prettier-ignore-end */}
Then you can use it in your `.storybook/preview.js|ts` or an individual story file by importing it:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-auto-docs-custom-mdx-template.md" />
{/* prettier-ignore-end */}
<Callout variant="info" icon="💡">
If you only need to override the documentation page for a single component, we recommend creating an MDX file and referencing it directly via the `<Meta of={} />` Doc Block.
</Callout>
### Generate a table of contents
Storybook's auto-generated documentation pages can be quite long and difficult to navigate. To help with this, you can enable the table of contents feature to provide a quick overview of the documentation page and allow users to jump to a specific section. To enable it, extend your Storybook UI configuration file (i.e., `.storybook/preview.js|ts`) and provide a `docs` [parameter](../writing-stories/parameters.mdx#global-parameters) with a `toc` property.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-enable-toc.md" />
{/* prettier-ignore-end */}
### Configure the table of contents
By default, the table of contents on the documentation page will only show the `h3` headings that are automatically generated. However, if you want to customize the table of contents, you can add more parameters to the `toc` property. The following options and examples of how to use them are available.
| Option | Description |
| --------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `contentsSelector` | Defines the container's CSS selector for search for the headings <br /> `toc: { contentsSelector: '.sbdocs-content' }` |
| `disable` | Hides the table of contents for the documentation pages <br /> `toc: { disable: true }` |
| `headingSelector` | Defines the list of headings to feature in the table of contents <br /> `toc: { headingSelector: 'h1, h2, h3' }` |
| `ignoreSelector` | Configures the table of contents to ignore specific headings or stories. By default, the table of contents will ignore all content placed within Story blocks <br /> `toc: { ignoreSelector: '.docs-story h2' }` |
| `title` | Defines a title caption for the table of contents. <br />Accepts one of: `string`, `null`, React element <br /> `toc: { title: 'Table of Contents' }` |
| `unsafeTocbotOptions` | Provides additional [`TocBot`](https://tscanlin.github.io/tocbot/) configuration options <br /> `toc: { unsafeTocbotOptions: { orderedList: true } }` |
<Callout variant="info">
The `contentsSelector`, `headingSelector`, and `ignoreSelector` properties allow additional customization. For more information on using them, see the [`Tocbot` documentation](https://tscanlin.github.io/tocbot/).
</Callout>
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-custom-toc.md" />
{/* prettier-ignore-end */}
#### Component-level configuration
If you want to customize the table of contents for a specific story, you can include a `toc` property in the story's default export and provide the required [configuration](#configure-the-table-of-contents). For example, if you need to hide the table of contents for a specific story, adjust your story as follows:
{/* prettier-ignore-start */}
<CodeSnippets path="my-component-disable-toc.md" />
{/* prettier-ignore-end */}
### Customize component documentation
Creating automated documentation with Storybook's Autodocs provides you with the starting point to build a sustainable documentation pattern. Nevertheless, it may not be suited for every case, and you may want to extend it and provide additional information. We recommend combining [MDX](./mdx.mdx) alongside Storybook's [Doc Blocks](./doc-blocks.mdx) for such cases to author your documentation.
## Advanced configuration
### Documenting multiple components
Sometimes it's helpful to document multiple components together. For example, a component librarys ButtonGroup and Button components might not make sense without one another.
Autodocs allows you to document your "main" component, defined by the `component` property, as well as one or more `subcomponents` related to it.
{/* prettier-ignore-start */}
<CodeSnippets path="list-story-with-subcomponents.md" />
{/* prettier-ignore-end */}
![Subcomponents in ArgTypes doc block](../_assets/writing-stories/doc-block-arg-types-subcomponents-for-list.png)
The main component and its subcomponents will show up in a tabbed version of the [`ArgTypes` doc block](./doc-blocks.mdx#argtypes). The tab titles will correspond to the keys of the `subcomponents` object.
If you want to organize your documentation differently for component groups, we recommend [using MDX](./mdx.mdx). It gives you complete control over how your components are displayed and supports any configuration.
### Customize the Docs Container
The Docs Container is the component that wraps up the documentation page. It's responsible for rendering the documentation page in Storybook's UI. You can customize it by creating your own component and updating your Storybook UI configuration file (i.e., `.storybook/preview.js|ts`) to reference it.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-auto-docs-custom-docs-container.md" />
{/* prettier-ignore-end */}
### Override the default theme
By default, Storybook provides two themes for the UI: `light` and `dark`. If you need to customize the theme used by the documentation to match the existing one, you can update your Storybook UI configuration file (i.e., `.storybook/preview.js|ts`) and apply it.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-auto-docs-override-theme.md" />
{/* prettier-ignore-end */}
### Working with custom MDX components
Out of the box, Storybook has a set of components that you can use to customize your documentation page. If you're working with a design system or component library and wish to add them to your documentation page, you can override the `MDXProvider` component inherited from `@mdx-js/react` with your own. However, there's a caveat to this, the component replacement will only have an impact if you're writing documentation using Markdown syntax (e.g., `#` for headings). Native HTML elements, such as `<h1>`, will not be replaced with your custom implementation.
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-preview-auto-docs-override-mdx-container.md" />
{/* prettier-ignore-end */}
<Callout variant="info" icon="💡">
This is not a Storybook issue but a detail of how MDX works. From their [migration guide](https://mdxjs.com/migrating/v2/#update-mdx-content):
“We now sandbox components, for lack of a better name. It means that when you pass a component for h1, it does get used for `# hi` but not for `<h1>hi</h1>`”
</Callout>
## Troubleshooting
### The table of contents doesn't render as expected
When using Autodocs's table of contents, you may encounter situations where it appears differently than expected. To help you resolve these problems, we have compiled a list of possible scenarios that may cause issues.
#### With simple documentation pages
If you have a documentation page with only one matching heading and create a table of contents for it, the table of contents will not be hidden by default. A potential solution for this issue would be to add a second heading or turn it off entirely.
#### With small screens
If the screen width is less than 1200px, the table of contents will be hidden by default. Currently, there's no built-in solution for this issue that doesn't impact the documentation page's style compatibility.
#### With MDX
If you're writing [unattached documentation](./mdx.mdx#writing-unattached-documentation) using MDX, you cannot customize the table of contents primarily due to the lack of support for defining parameters based on the current implementation. As a result, the table of contents will always revert to the default [configuration](#configure-the-table-of-contents) provided globally.
### The auto-generated documentation is not showing up in a monorepo setup
Out of the box, Storybook's Autodocs feature is built to generate documentation for your stories automatically. Nevertheless, if you're working with a monorepo setup (e.g., [`Yarn Workspaces`](https://yarnpkg.com/features/workspaces), [`pnpm Workspaces`](https://pnpm.io/workspaces)), you may run into issues where part of the documentation may not be generated for you. To help you troubleshoot those issues, we've prepared some recommendations that might help you.
Update your import statements to reference the component directly instead of the package's root. For example:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-fix-imports-autodocs-monorepo.md" />
{/* prettier-ignore-end */}
Additionally, if you're developing using TypeScript, you may need to update Storybook's configuration file (i.e., `.storybook/main.js|ts`) to include the following:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-main-fix-imports-autodocs-monorepo.md" />
{/* prettier-ignore-end */}
If you're still encountering issues, we recommend reaching out to the community using the default communication channels (e.g., [GitHub discussions](https://github.com/storybookjs/storybook/discussions/new?category=help)).
### The controls are not updating the story within the auto-generated documentation
If you turned off inline rendering for your stories via the [`inline`](../api/doc-blocks/doc-block-story.mdx#inline) configuration option, you would run into a situation where the associated controls are not updating the story within the documentation page. This is a known limitation of the current implementation and will be addressed in a future release.
**Learn more about Storybook documentation**
* Autodocs for creating documentation for your stories
* [MDX](./mdx.mdx) for customizing your documentation
* [Doc Blocks](./doc-blocks.mdx) for authoring your documentation
* [Publishing docs](./build-documentation.mdx) to automate the process of publishing your documentation