storybook-addon-docs-tabs

A Storybook addon that adds tabs to the Docs Addon.

Usage no npm install needed!

<script type="module">
  import storybookAddonDocsTabs from 'https://cdn.skypack.dev/storybook-addon-docs-tabs';
</script>

README

storybook-addon-docs-tabs

A Storybook addon that adds tabs to the Docs Addon.

Note: This addon is a little bit hacky. The storybook api does not support something like this at all. But you can still use this addon because it is still using mdx and its "normal" api.

Getting started

1. Install

npm install --save-dev storybook-addon-designs
# yarn add -D storybook-addon-designs

2. Add new Container to .storybook/preview.js

import { DocsContainer } from "@storybook/addon-docs/blocks";
import TabContainer from "../src/TabContainer";

export const parameters = {
  docs: {
    container: ({ children, context }) => (
      <DocsContainer context={context}>
        <TabContainer context={context}>{children}</TabContainer>
      </DocsContainer>
    ),
  },
};

2. Hide Tab Stories from the sidebar in .storybook/manager-head.html

<style>
  [id^="hidden"],
  [data-parent-id^="hidden"] {
    display: none !important;
  }
</style>

3. Add jsx in .storybook/tsconfig.json

Optional: If you havent configured jsx

{
  "extends": "../tsconfig.app.json",
  "compilerOptions": {
    "jsx": "react"
  }
}

4. Add react preset in .storybook/.babelrc

Optional: If you havent configured jsx

{
  "presets": [["@babel/react", { "runtime": "automatic" }]]
}

Usage in story

Set id of story

Unfortunately this is necessary because of the limited Storybook api. Any unique string can be used as id.

Prefix the stories title with hidden/ to hide it in the sidebar.

import { Story, Meta, ArgsTable, Source } from "@storybook/addon-docs";

<Meta
  id="simple-button-implementation"
  title="hidden/SimpleButtonImplementation"
  component={TestComponent}
/>

Import Tabs

import { Meta } from "@storybook/addon-docs";
import _ as DesignTab from "./design-tab.stories.mdx";
import _ as ImplementationTab from "./implementation-tab.stories.mdx";

<Meta
  title="Example/Tab Example"
  parameters={{
    tabs: [
      { label: "Design", mdx: DesignTab },
      { label: "Implementation", mdx: ImplementationTab },
    ],
  }}
/>

Add Header CTA and Footer

You can extend the TabContainer with a custom call to action and a custom footer which is displayed on every page.

property input type description
footerElement JSX.Element Displays your component on every page bottom
additionalHeaderElement JSX.Element Displays your component inside the header next to the title

Example

{container: ({ children, context }) => (
  <DocsContainer context={context}>
    <TabContainer
      context={context}
      footerElement={<Footer />}
      additionalHeaderElement={<Header />}
    >
      {children}
    </TabContainer>
  </DocsContainer>
)},