title |
---|
How to write stories |
A story captures the rendered state of a UI component. It's an object with annotations that describe the component's behavior and appearance given a set of arguments.
Storybook uses the generic term arguments (args for short) when talking about React’s props
, Vue’s props
, Angular’s @Input
, and other similar concepts.
A component’s stories are defined in a story file that lives alongside the component file. The story file is for development-only, and it won't be included in your production bundle. In your filesytem, it looks something like this:
components/
├─ Button/
│ ├─ Button.js | ts | jsx | tsx | vue | svelte
│ ├─ Button.stories.js | ts | jsx | tsx
We define stories according to the Component Story Format (CSF), an ES6 module-based standard that is easy to write and portable between tools.
The key ingredients are the default export that describes the component, and named exports that describe the stories.
The default export metadata controls how Storybook lists your stories and provides information used by addons. For example, here’s the default export for a story file Button.stories.js|ts
:
<CodeSnippets paths={[ 'react/button-story-default-export-with-component.js.mdx', 'react/button-story-default-export-with-component.ts.mdx', 'vue/button-story-default-export-with-component.js.mdx', 'vue/button-story-default-export-with-component.ts.mdx', 'angular/button-story-default-export-with-component.ts.mdx', 'svelte/button-story-default-export-with-component.js.mdx', 'svelte/button-story-default-export-with-component.ts.mdx', 'web-components/button-story-default-export-with-component.js.mdx', 'web-components/button-story-default-export-with-component.ts.mdx', 'html/button-story-default-export.js.mdx', 'html/button-story-default-export.ts.mdx', 'solid/button-story-default-export-with-component.js.mdx', 'solid/button-story-default-export-with-component.ts.mdx', ]} />
Starting with Storybook version 7.0, story titles are analyzed statically as part of the build process. The default export must contain a title
property that can be read statically or a component
property from which an automatic title can be computed. Using the id
property to customize your story URL must also be statically readable.
Use the named exports of a CSF file to define your component’s stories. We recommend you use UpperCamelCase for your story exports. Here’s how to render Button
in the “primary” state and export a story called Primary
.
<CodeSnippets paths={[ 'react/button-story-with-args.js.mdx', 'react/button-story-with-args.ts.mdx', 'vue/button-story-with-args.3.js.mdx', 'vue/button-story-with-args.3.ts.mdx', 'angular/button-story-with-args.ts.mdx', 'web-components/button-story-with-args.js.mdx', 'web-components/button-story-with-args.ts.mdx', 'svelte/button-story-with-args.js.mdx', 'svelte/button-story-with-args.ts.mdx', 'html/button-story-with-args.js.mdx', 'html/button-story-with-args.ts.mdx', 'preact/button-story-with-args.js.mdx', 'solid/button-story-with-args.js.mdx', 'solid/button-story-with-args.ts.mdx', ]} usesCsf3 csf2Path="get-started/whats-a-story#snippet-button-story-with-args" />
React Hooks are convenient helper methods to create components using a more streamlined approach. You can use them while creating your component's stories if you need them, although you should treat them as an advanced use case. We recommend args as much as possible when writing your own stories. As an example, here’s a story that uses React Hooks to change the button's state:
<CodeSnippets paths={[ 'react/button-story.with-hooks.js.mdx', 'react/button-story.with-hooks.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-button-story-with-hooks" />
Solid Signals are convenient helper methods to create components using a more streamlined approach. You can use them while creating your component's stories if you need them, although you should treat them as an advanced use case. We recommend args as much as possible when writing your own stories. As an example, here’s a story that uses Solid Signals to change the button's state:
<CodeSnippets paths={[ 'solid/button-story.with-hooks.js.mdx', 'solid/button-story.with-hooks.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-button-story-with-hooks" />
You can rename any particular story you need. For instance, to give it a more accurate name. Here's how you can change the name of the Primary
story:
<CodeSnippets paths={[ 'react/button-story-rename-story.js.mdx', 'react/button-story-rename-story.ts.mdx', 'vue/button-story-rename-story.js.mdx', 'vue/button-story-rename-story.ts.mdx', 'angular/button-story-rename-story.ts.mdx', 'web-components/button-story-rename-story.js.mdx', 'web-components/button-story-rename-story.ts.mdx', 'svelte/button-story-rename-story.js.mdx', 'svelte/button-story-rename-story.ts.mdx', 'html/button-story-rename-story.js.mdx', 'html/button-story-rename-story.ts.mdx', 'solid/button-story-rename-story.js.mdx', 'solid/button-story-rename-story.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-button-story-rename-story" />
Your story will now be shown in the sidebar with the given text.
A story is an object that describes how to render a component. You can have multiple stories per component, and those stories can build upon one another. For example, we can add Secondary and Tertiary stories based on our Primary story from above.
<CodeSnippets paths={[ 'react/button-story-using-args.js.mdx', 'react/button-story-using-args.ts.mdx', 'vue/button-story-using-args.3.js.mdx', 'vue/button-story-using-args.3.ts.mdx', 'angular/button-story-using-args.ts.mdx', 'web-components/button-story-using-args.js.mdx', 'web-components/button-story-using-args.ts.mdx', 'svelte/button-story-using-args.js.mdx', 'svelte/button-story-using-args.ts.mdx', 'html/button-story-using-args.js.mdx', 'html/button-story-using-args.ts.mdx', 'solid/button-story-using-args.js.mdx', 'solid/button-story-using-args.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-button-story-using-args" />
What’s more, you can import args
to reuse when writing stories for other components, and it's helpful when you’re building composite components. For example, if we make a ButtonGroup
story, we might remix two stories from its child component Button
.
<CodeSnippets paths={[ 'react/button-group-story.js.mdx', 'react/button-group-story.ts.mdx', 'angular/button-group-story.ts.mdx', 'vue/button-group-story.3.js.mdx', 'vue/button-group-story.3.ts.mdx', 'web-components/button-group-story.js.mdx', 'web-components/button-group-story.ts.mdx', 'svelte/button-group-story.js.mdx', 'svelte/button-group-story.ts.mdx', 'solid/button-group-story.js.mdx', 'solid/button-group-story.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-button-group-story" />
When Button’s signature changes, you only need to change Button’s stories to reflect the new schema, and ButtonGroup’s stories will automatically be updated. This pattern allows you to reuse your data definitions across the component hierarchy, making your stories more maintainable.
That’s not all! Each of the args from the story function are live editable using Storybook’s Controls panel. It means your team can dynamically change components in Storybook to stress test and find edge cases.
You can also use the Controls panel to edit or save a new story after adjusting its control values.
Addons can enhance args. For instance, Actions auto-detects which args are callbacks and appends a logging function to them. That way, interactions (like clicks) get logged in the actions panel.
Storybook's play
function and the @storybook/addon-interactions
are convenient helper methods to test component scenarios that otherwise require user intervention. They're small code snippets that execute once your story renders. For example, suppose you wanted to validate a form component, you could write the following story using the play
function to check how the component responds when filling in the inputs with information:
<CodeSnippets paths={[ 'react/login-form-with-play-function.js.mdx', 'react/login-form-with-play-function.ts.mdx', 'angular/login-form-with-play-function.ts.mdx', 'vue/login-form-with-play-function.js.mdx', 'vue/login-form-with-play-function.ts.mdx', 'web-components/login-form-with-play-function.js.mdx', 'web-components/login-form-with-play-function.ts.mdx', 'svelte/login-form-with-play-function.js.mdx', 'svelte/login-form-with-play-function.ts.mdx', 'solid/login-form-with-play-function.js.mdx', 'solid/login-form-with-play-function.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-login-form-with-play-function" />
Without the help of the play
function and the @storybook/addon-interactions
, you had to write your own stories and manually interact with the component to test out each use case scenario possible.
Parameters are Storybook’s method of defining static metadata for stories. A story’s parameters can be used to provide configuration to various addons at the level of a story or group of stories.
For instance, suppose you wanted to test your Button component against a different set of backgrounds than the other components in your app. You might add a component-level backgrounds
parameter:
<CodeSnippets paths={[ 'angular/parameters-in-meta.ts.mdx', 'web-components/parameters-in-meta.js.mdx', 'web-components/parameters-in-meta.ts.mdx', 'common/parameters-in-meta.js.mdx', 'common/parameters-in-meta.ts.mdx', ]} />
This parameter would instruct the backgrounds addon to reconfigure itself whenever a Button story is selected. Most addons are configured via a parameter-based API and can be influenced at a global, component and story level.
Decorators are a mechanism to wrap a component in arbitrary markup when rendering a story. Components are often created with assumptions about ‘where’ they render. Your styles might expect a theme or layout wrapper, or your UI might expect specific context or data providers.
A simple example is adding padding to a component’s stories. Accomplish this using a decorator that wraps the stories in a div
with padding, like so:
<CodeSnippets paths={[ 'react/button-story-component-decorator.js.mdx', 'react/button-story-component-decorator.ts.mdx', 'vue/button-story-component-decorator.js.mdx', 'vue/button-story-component-decorator.ts.mdx', 'angular/button-story-component-decorator.ts.mdx', 'web-components/button-story-component-decorator.js.mdx', 'web-components/button-story-component-decorator.ts.mdx', 'svelte/button-story-component-decorator.js.mdx', 'svelte/button-story-component-decorator.ts.mdx', 'svelte/margindecorator.with-margin-component.js.mdx', 'svelte/margindecorator.with-margin-component.ts.mdx', 'html/button-story-component-decorator.js.mdx', 'html/button-story-component-decorator.ts.mdx', 'solid/button-story-component-decorator.js.mdx', 'solid/button-story-component-decorator.ts.mdx', ]} />
Decorators can be more complex and are often provided by addons. You can also configure decorators at the story, component and global level.
Sometimes you may have two or more components created to work together. For instance, if you have a parent List
component, it may require child ListItem
components.
<CodeSnippets paths={[ 'react/list-story-starter.js.mdx', 'react/list-story-starter.ts.mdx', 'angular/list-story-starter.ts.mdx', 'vue/list-story-starter.js.mdx', 'vue/list-story-starter.ts.mdx', 'web-components/list-story-starter.js.mdx', 'web-components/list-story-starter.ts.mdx', 'html/list-story-starter.js.mdx', 'html/list-story-starter.ts.mdx', 'solid/list-story-starter.js.mdx', 'solid/list-story-starter.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-list-story-starter" />
In such cases, it makes sense to render a different function for each story:
<CodeSnippets paths={[ 'react/list-story-expanded.js.mdx', 'react/list-story-expanded.ts.mdx', 'angular/list-story-expanded.ts.mdx', 'vue/list-story-expanded.js.mdx', 'vue/list-story-expanded.ts.mdx', 'web-components/list-story-expanded.js.mdx', 'web-components/list-story-expanded.ts.mdx', 'html/list-story-expanded.js.mdx', 'html/list-story-expanded.ts.mdx', 'solid/list-story-expanded.js.mdx', 'solid/list-story-expanded.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-list-story-expanded" />
You can also reuse story data from the child ListItem
in your List
component. That’s easier to maintain because you don’t have to update it in multiple places.
<CodeSnippets paths={[ 'react/list-story-reuse-data.js.mdx', 'react/list-story-reuse-data.ts.mdx', 'angular/list-story-reuse-data.ts.mdx', 'vue/list-story-reuse-data.3.js.mdx', 'vue/list-story-reuse-data.3.ts.mdx', 'web-components/list-story-reuse-data.js.mdx', 'web-components/list-story-reuse-data.ts.mdx', 'html/list-story-reuse-data.js.mdx', 'html/list-story-reuse-data.ts.mdx', 'solid/list-story-reuse-data.js.mdx', 'solid/list-story-reuse-data.ts.mdx', ]} usesCsf3 csf2Path="writing-stories/#snippet-list-story-reuse-data" />
Note that there are disadvantages in writing stories like this as you cannot take full advantage of the args mechanism and composing args as you build even more complex composite components. For more discussion, see the multi component stories workflow documentation.