storybook/docs/get-started/whats-a-story.mdx
Charles de Dreuille 845077af85 Get started links
2024-06-18 09:12:30 +01:00

74 lines
4.3 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: What's a story?
sidebar:
order: 4
title: What's a story?
---
A story captures the rendered state of a UI component. Developers write multiple stories per component that describe all the “interesting” states a component can support.
When you installed Storybook, the CLI created example components that demonstrate the types of components you can build with Storybook: Button, Header, and Page.
Each example component has a set of stories that show the states it supports. You can browse the stories in the UI and see the code behind them in files that end with `.stories.js|ts`. The stories are written in [Component Story Format](../api/csf.mdx) (CSF), an ES6 modules-based standard for writing component examples.
Lets start with the `Button` component. A story is an object that describes how to render the component in question. Heres how to render `Button` in the “primary” state and export a story called `Primary`.
{/* prettier-ignore-start */}
<CodeSnippets path="button-story-with-args.md" usesCsf3 csf2Path="get-started/whats-a-story#snippet-button-story-with-args" />
{/* prettier-ignore-end */}
![Button story with args](../_assets/get-started/example-button-args.png)
View the rendered `Button` by clicking on it in the Storybook sidebar. Note how the values specified in [`args`](../writing-stories/args.mdx) are used to render the component and match those represented in the [Controls](../essentials/controls.mdx) tab. Using `args` in your stories has additional benefits:
* `Button`'s callbacks are logged into the [Actions](../essentials/actions.mdx) tab. Click to try it.
* `Button`'s arguments are dynamically editable in the Controls tab. Adjust the controls.
## Working with stories
Storybook makes it easy to work on one component in one state (aka a story) at a time. When you edit a component's code or its stories, Storybook will instantly re-render in the browser. No need to refresh manually.
### Create a new story
<If renderer="react">
If you're working on a component that does not yet have any stories, you can click the button in the sidebar to search for your component and have a basic story created for you.
<Video src="../_assets/get-started/new-component-story-from-plus-button-optimized.mp4" />
You can also create a story file for your new story. We recommend copy/pasting an existing story file next to the component source file, then adjusting it for your component.
</If>
<If notRenderer="react">
If you're working on a component that does not yet have any stories, you can create a story file for your component with a new story. We recommend copy/pasting an existing story file next to the component source file, then adjusting it for your component.
</If>
<Video src="../_assets/get-started/new-component-story-in-code-optimized.mp4" />
If you're working on a component that already has other stories, you can use the [Controls addon](../essentials/controls.mdx) to adjust the value of a control and then save those changes as a new story.
<Video src="../_assets/get-started/new-story-from-controls-optimized.mp4" />
Or, if you prefer, edit the story file's code to add a new named export for your story:
<Video src="../_assets/get-started/new-story-in-code-optimized.mp4" />
### Edit a story
Using the [Controls addon](../essentials/controls.mdx), update a control's value for a story. You can then save the changes to the story and the story file's code will be updated for you.
<Video src="../_assets/get-started/edit-story-from-controls-optimized.mp4" />
Of course, you can always update the story's code directly too:
<Video src="../_assets/get-started/edit-story-in-code-optimized.mp4" />
Stories are also helpful for checking that UI continues to look correct as you make changes. The `Button` component has four stories that show it in different use cases. View those stories now to confirm that your change to `Primary` didnt introduce unintentional bugs in the other stories.
<Video src="../_assets/get-started/example-button-browse-stories-optimized.mp4" />
Checking components stories as you develop helps prevent accidental regressions. [Tools that integrate with Storybook can automate this](../writing-tests/index.mdx) for you.
Now that weve seen the basic anatomy of a story lets see how we use Storybooks UI to develop stories.