storybook/docs/writing-docs/docs-page.md
Ryosuke 16c7a63057
Relative link to docs broken
The link to Storybook docs was relative, which on [the production site](https://storybook.js.org/docs/react/writing-docs/docs-page) links to the **next** branch, instead of the **master**.

Old link using relative:
`https://github.com/storybookjs/storybook/blob/next/addons/docs/README`

New link:
`https://github.com/storybookjs/storybook/blob/master/addons/docs/README.md`

Not sure if there's a way to use the relative link and have it point to master instead of next? But for now, hard-coded link will definitely work.
2020-09-30 11:04:40 -07:00

6.3 KiB
Raw Blame History

title
DocsPage

When you install Storybook Docs, DocsPage is the zero-config default documentation that all stories get out of the box. It aggregates your stories, text descriptions, docgen comments, args tables, and code examples into a single page for each component.

The best practice for docs is for each component to have its own set of documentation and stories.

Component parameter

Storybook uses the component key in the story files default export to extract the component's description and props.

<CodeSnippets paths={[ 'common/my-component-story.js.mdx', ]} />

Subcomponents parameter

Sometimes it's useful to document multiple components together. For example, a component librarys ButtonGroup and Button components might not make sense without one another.

DocsPage has the concept of a "primary" component that is defined by the component parameter. It also accepts one or more subcomponents.

<CodeSnippets paths={[ 'common/button-group-story-subcomponents.js.mdx', 'common/button-group-story-subcomponents.ts.mdx' ]} />

Subcomponents in Docs Page

Subcomponent ArgsTables will show up in a tabbed interface along with the primary component. 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. It gives you complete control over display and supports any configuration.

Replacing DocsPage

Replace DocsPage template with your own for the entire Storybook, a specific component, or a specific story.

Override the docs.page parameter:

  • With null to remove docs.
  • With MDX docs.
  • With a custom component

Story-level

Override the docs.page parameter in the story definition.

<CodeSnippets paths={[ 'common/button-story-disable-docspage.js.mdx', ]} />

Component-level

Override the docs.page parameter in the default export of the story file.

<CodeSnippets paths={[ 'common/button-story-disable-docspage-component.js.mdx', ]} />

Global-level

Override the docs.page parameter in .storybook/preview.js.

<CodeSnippets paths={[ 'common/storybook-preview-disable-docspage.js.mdx', ]} />

Remixing DocsPage using doc blocks

Doc blocks are the basic building blocks of Storybook Docs. DocsPage composes them to provide a reasonable UI documentation experience out of the box.

If you want to make minor customizations to the default DocsPage but dont want to write your own MDX you can remix DocsPage. That allows you to reorder, add, or omit doc blocks without losing Storybooks automatic docgen capabilities.

Here's an example of rebuilding DocsPage for the Button component using doc blocks:

<CodeSnippets paths={[ 'common/button-story-remix-docspage.js.mdx', 'common/button-story-remix-docspage.ts.mdx', ]} />

Apply a similar technique to remix the DocsPage at the story, component, or global level.

In addition, you can interleave your own components to customize the auto-generated contents of the page, or pass in different options to the blocks to customize their appearance. Read more about Doc Blocks.

Story file names

Unless you use a custom webpack configuration, all of your story files should have the suffix *.stories.@(j|t)sx?. For example, "Badge.stories.js" or "Badge.stories.tsx". This tells Storybook and its docs preset to display the docs based on the file contents.

Inline stories vs. iframe stories

DocsPage displays all the stories of a component in one page. You have the option of rendering those stories inline or in an iframe.

By default, we render React and Vue stories inline. Stories from other supported frameworks will render in an <iframe> by default.

The iframe creates a clean separation between your code and Storybooks UI. But using an iframe has disadvantages. You have to explicitly set the height of iframe stories or youll see a scroll bar. And certain dev tools might not work right.

Render your frameworks stories inline using two docs configuration options in tandem, inlineStories and prepareForInline.

Setting inlineStories to true tells Storybook to stop putting your stories in an iframe. The prepareForInline accepts a function that transforms story content from your given framework to something React can render (Storybooks UI is built in React).

Different frameworks will need to approach this in different ways. Angular, for example, might convert its story content into a custom element (you can read about that here).

Heres an example of how to render Vue stories inline. The following docs config block uses prepareForInline along with an effect hook provided by @egoist/vue-to-react.

<CodeSnippets paths={[ 'common/storybook-preview-prepareforinline.js.mdx', ]} />

With this function, anyone using the docs addon for @storybook/vue can make their stories render inline, either globally with the inlineStories docs parameter, or on a per-story-basis using the inline prop on the <Story> doc block.

If you come up with an elegant and flexible implementation for the prepareForInline function for your own framework, let us know. We'd love to make it the default configuration to make inline stories more accessible for a larger variety of frameworks!