storybook/docs/get-started/whats-a-story.md
Kyle Gach f096fb34ee
Merge pull request #17658 from fbredius/preact-code-snippet
Docs: Add remaining Preact code snippets for Get-Started section
2022-03-16 12:19:16 -06:00

99 lines
4.2 KiB
Markdown
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"
---
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.
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` or `.stories.ts`. The stories are written in Component Story Format (CSF)--an ES6 modules-based standard--for writing component examples.
Lets start with the `Button` component. A story is a function 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
paths={[
'react/button-story.js.mdx',
'react/button-story.ts.mdx',
'react/button-story.mdx.mdx',
'angular/button-story.ts.mdx',
'angular/button-story.mdx.mdx',
'vue/button-story.js.mdx',
'vue/button-story.mdx.mdx',
'svelte/button-story.js.mdx',
'svelte/button-story.native-format.mdx',
'svelte/button-story.mdx.mdx',
'web-components/button-story.js.mdx',
'html/button-story.js.mdx',
'html/button-story.ts.mdx',
'preact/button-story.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
![Initial button story](./example-button-noargs.png)
View the rendered `Button` by clicking on it in the Storybook sidebar.
The above story definition can be further improved to take advantage of [Storybooks “args”](../writing-stories/args.md) concept. Args describes the arguments to Button in a machine-readable way. It unlocks Storybooks superpower of altering and composing arguments dynamically.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'react/button-story-with-args.js.mdx',
'react/button-story-with-args.ts.mdx',
'react/button-story-with-args.mdx.mdx',
'vue/button-story-with-args.2.js.mdx',
'vue/button-story-with-args.mdx-2.mdx.mdx',
'vue/button-story-with-args.3.js.mdx',
'vue/button-story-with-args.mdx-3.mdx.mdx',
'angular/button-story-with-args.ts.mdx',
'angular/button-story-with-args.mdx.mdx',
'web-components/button-story-with-args.js.mdx',
'svelte/button-story-with-args.js.mdx',
'svelte/button-story-with-args.native-format.mdx',
'svelte/button-story-with-args.mdx.mdx',
'html/button-story-with-args.js.mdx',
'html/button-story-with-args.ts.mdx',
'preact/button-story-with-args.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
![Button story with args](./example-button-args.png)
Both story examples render the same thing because Storybook feeds the given `args` property into the story during render. But you get timesaving conveniences with args:
- `Button`s callbacks are logged into the Actions tab. Click to try it.
- `Button`s arguments are dynamically editable in the Controls tab. Adjust the controls
### Edit a story
Storybook makes it easy to work on one component in one state (aka a story) at a time. When you edit the Button code or stories, Storybook will instantly re-render in the browser. No need to refresh manually.
Update the `label` of the `Primary` story, then see your change in Storybook.
<video autoPlay muted playsInline loop>
<source
src="example-button-hot-module-reload-optimized.mp4"
type="video/mp4"
/>
</video>
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 autoPlay muted playsInline loop>
<source
src="example-button-browse-stories-optimized.mp4"
type="video/mp4"
/>
</video>
Checking components stories as you develop helps prevent accidental regressions. Tools that integrate with Storybook can also [automate](../writing-tests/introduction.md) this for you.
Now that weve seen the basic anatomy of a story lets see how we use Storybooks UI to develop stories.