diff --git a/docs/writing-docs/docs-blocks.md b/docs/writing-docs/docs-blocks.md new file mode 100644 index 00000000000..0419171916a --- /dev/null +++ b/docs/writing-docs/docs-blocks.md @@ -0,0 +1,370 @@ +--- +title: 'Doc Blocks' +--- + +Doc Blocks are the building blocks of Storybook documentation pages. By default, [DocsPage](./docs-page) uses a combination of the below blocks to build a page for each of your components automatically. + +
+TODO: ask tom about both links below to where they should point to. +
+ +Also, custom [addons] can provide their own doc blocks, and there are [many available]. + +### ArgsTable + +Storybook Docs automatically generates component props tables for components in supported frameworks. These tables list the [args](../writing-stories/args) of the component, and even integrate with [controls](../essentials/controls) to allow you to change the args of the currently rendered story. + +
+TODO:add image per screenshot requirements (Use the same gif present in the SB 6.0 doc) +
+ +#### DocsPage + +To use the ArgsTable in [DocsPage](./docspage#component-parameter), export a component property on your stories metadata: + +```js +// MyComponent.stories.js + +import { MyComponent } from './MyComponent'; + +export default { + title: 'MyComponent', + component: MyComponent, +}; +// your templates and stories +``` + +#### MDX + +To use the props table in MDX, use the Props block: + +```js +// MyComponent.stories.mdx + +import { Props } from '@storybook/addon-docs/blocks'; +import { MyComponent } from './MyComponent'; + +# My Component! + + +``` + +#### Customizing + +Props tables are automatically inferred from your components and stories, but sometimes it's useful to customize the results. + +
+TODO: ask tom if links are accurate +
+ +Props tables are rendered from an internal data structure called [ArgTypes](../api/stories#argtypes). When you declare a story's component metadata, Docs automatically extracts ArgTypes based on the component's properties. + +You can customize what's shown in the props table by customizing the ArgTypes data. This is currently available for [DocsPage](locate-docs-page) and `` construct, but not for the `` construct. + +> NOTE: This API is experimental and may change outside of the typical semver release cycle + +The API documentation of ArgTypes is detailed in a [separate section](../api/stories#argtypes), but to control the description and default values, use the following fields: + +| Field | Description | +|:-----------------------------|:----------------------------------------------------------------------------------------------:| +| **name** |The name of the property | +| **type.required** |The stories to be show, ordered by supplied name | +| **description** |A markdown description for the property | +|**table.type.summary** |A short version of the type | +|**table.type.detail** |A short version of the type | +|**table.defaultValue.summary**|A short version of the type | +|**table.defaultValue.detail** |A short version of the type | +|**control** |See [addon-controls README ](https://github.com/storybookjs/storybook/tree/next/addons/controls)| + +For instance: + +```js + +export default { + title: 'Button', + component: Button, + argTypes: { + label: { + description: 'overwritten description', + table: { + type: { + summary: 'something short', + detail: 'something really really long' + }, + }, + control: { + type: null, + }, + }, + }, +}; +``` + +This would render a row with a modified description, a type display with a dropdown that shows the detail, and no control. + +
+TODO: ask tom about this and how we can improve. + +My read on this is that we come from null that shows no control. But we have some shorthands that help the reader to show something. + +Probably we could add this as a aside, or give it more emphasis +
+ +> Storybook provides shorthand for common tasks: +> type: 'number' is shorthand for type: { name: 'number' } +> control: 'radio' is shorthand for control: { type: 'radio' } + +##### MDX + +To customize argTypes in MDX, you can set an `mdx` prop on the `Meta` or `Story` components: + +```js + + + + + {/* story contents */} + +``` + +#### Controls + +The controls inside a props table are configured in exactly the same way as the [controls](../essentials/controls) addon pane. In fact you’ll probably notice the table is very similar! It uses the same component and mechanism behind the scenes. + +### Source + +Storybook Docs displays a story’s source code using the `Source` block. The snippet has built-in syntax highlighting and can be copied with the click of a button. + +
+TODO:add image per screenshot requirements (mention of a image in the SB 6.0 doc (needs to be vetted)) +
+ +#### DocsPage + +In DocsPage, the `Source` block appears automatically within each story’s [Preview] block. + +
+TODO:add image per screenshot requirements (mention of a image in the SB 6.0 doc (needs to be vetted)) +
+ +To customize the source snippet that’s displayed for a story, set the `docs.source.code` parameter: + +```js + +export const CustomSource = () => Template.bind({}); + +CustomSource.parameters = { + docs: { + source: { + code: 'Some custom string here'; + } + }, +}; +``` + +#### MDX + +You can also use the `Source` block in MDX. It accepts either a story ID or `code` snippet the `language` for syntax highlighting: + +```js +import { Source } from '@storybook/addon-docs/blocks'; +Import dedent from 'ts-dedent'; + + +``` + +#### ⚒️ Description + +Storybook Docs shows a component’s description extracted from the source code or based on a user-provided string. + +
+TODO:add image per screenshot requirements (mention of a image in the SB 6.0 doc (needs to be vetted)) +
+ +#### DocsPage + +
+TODO: left it for now ask feedback tom/shillman on this based on [pr](https://github.com/storybookjs/storybook/issues/11441) +
+ +In DocsPage, a component’s description is shown at the top of the page. For [supported frameworks], the component description is automatically extracted from a docgen component above the component in its source code. It can also be set by the `docs.description` parameter. + +
+TODO:add image per screenshot requirements (mention of a image in the SB 6.0 doc (needs to be vetted)) +
+ +```js + +export default { + title: 'CustomDescription' + parameters: { + docs: { + description: { + component: 'some component _markdown_' + } + }, + } +}; + +export const WithStoryDescription = Template.bind({}); +WithStoryDescription.parameters = { + docs: { + description: { + story: 'some story **markdown**' + } + }, +}; +``` + +#### MDX + +In MDX, the `Description` shows the component’s description using the same heuristics as the DocsPage. It also accepts a markdown parameter to show any user-provided Markdown string. + +```js + +import { Description } from '@storybook/addon-docs/blocks'; +import dedent from 'ts-dedent'; +import { Button } from './Button'; + + + +``` + +### Story + +Stories (component examples) are the basic building blocks in Storybook. In Storybook Docs, stories are rendered in the `Story` block. + +#### DocsPage + +In DocsPage a `Story` block is generated for each story in your [CSF] file, wrapped with a `Preview` wrapper that gives it a toolbar on top (in the case of the first “primary” story) and a source code preview underneath. + +#### MDX +
+TODO: ask tom about Preview link for clarity. +
+ +In MDX, the `Story` block is not only a way of displaying stories, but also the primary way to define them. Storybook looks for `Story` instances with the `name` prop, either defined at the top level of the document, or directly beneath a [Preview](locate-preview) block defined at the top level: + +```js +import { Story } from '@storybook/addon-docs/blocks'; +import { Button } from './Button'; + +export const Template = (args) =>