diff --git a/docs/writing-docs/mdx.mdx b/docs/writing-docs/mdx.mdx index 50262eb38a5..8cbcd328c47 100644 --- a/docs/writing-docs/mdx.mdx +++ b/docs/writing-docs/mdx.mdx @@ -163,10 +163,10 @@ However, providing the `Meta` Doc Block may not be required for certain use case {/* prettier-ignore-end */} - If you're overriding an existing auto-generated documentation page enabled via [`tags`](./autodocs.md#setup-automated-docs) configuration property, we recommend removing it to avoid errors. + If you're overriding an existing auto-generated documentation page enabled via [`tags`](./autodocs.mdx#setup-automated-docs) configuration property, we recommend removing it to avoid errors. -Once the custom MDX documentation is loaded, Storybook will infer the title and location using the same heuristic rules to generate [auto-title stories](../configure/sidebar-and-urls.md#csf-30-auto-titles) and render it in the sidebar as a `Docs` entry. +Once the custom MDX documentation is loaded, Storybook will infer the title and location using the same heuristic rules to generate [auto-title stories](../configure/user-interface/sidebar-and-urls.mdx#csf-30-auto-titles) and render it in the sidebar as a `Docs` entry. #### Working with standalone documentation pages @@ -213,7 +213,7 @@ If you need to extend your documentation with additional content written in Mark {/* prettier-ignore-end */} - The `Markdown` Doc Block provides additional configuration options to customize the rendering of your documentation. For more information, refer to the [API documentation](../api/doc-block-markdown.mdx). + The `Markdown` Doc Block provides additional configuration options to customize the rendering of your documentation. For more information, refer to the [API documentation](../api/doc-blocks/doc-block-markdown.mdx). ![Changelog markdown in an MDX story](../_assets/writing-docs/mdx-markdown-docs-import.png) diff --git a/docs/writing-stories/args.mdx b/docs/writing-stories/args.mdx index b412eddd22e..65af8df5cf5 100644 --- a/docs/writing-stories/args.mdx +++ b/docs/writing-stories/args.mdx @@ -11,7 +11,7 @@ A story is a component with a set of arguments that define how the component sho When an arg’s value changes, the component re-renders, allowing you to interact with components in Storybook’s UI via addons that affect args. -Learn how and why to write stories in [the introduction](./index.md#using-args). For details on how args work, read on. +Learn how and why to write stories in [the introduction](./index.mdx#using-args). For details on how args work, read on. ## Args object @@ -58,7 +58,7 @@ You can also define args at the global level; they will apply to every component {/* prettier-ignore-end */} - For most uses of global args, [globals](../essentials/toolbars-and-globals.md) are a better tool for defining globally-applied settings, such as a theme. Using globals enables users to change the value with the toolbar menu. + For most uses of global args, [globals](../essentials/toolbars-and-globals.mdx) are a better tool for defining globally-applied settings, such as a theme. Using globals enables users to change the value with the toolbar menu. ## Args composition @@ -99,7 +99,7 @@ Args are useful when writing stories for composite components that are assembled ## Setting args through the URL -You can also override the set of initial args for the active story by adding an `args` query parameter to the URL. Typically you would use the [Controls addon](../essentials/controls.md) to handle this. For example, here's how you could set a `size` and `style` arg in the Storybook's URL: +You can also override the set of initial args for the active story by adding an `args` query parameter to the URL. Typically you would use the [Controls addon](../essentials/controls.mdx) to handle this. For example, here's how you could set a `size` and `style` arg in the Storybook's URL: ``` ?path=/story/avatar--default&args=style:rounded;size:100 @@ -146,7 +146,7 @@ Note that `mapping` does not have to be exhaustive. If the arg value is not a pr
Using args in addons - If you are [writing an addon](../addons/writing-addons.md) that wants to read or update args, use the `useArgs` hook exported by `@storybook/manager-api`: + If you are [writing an addon](../addons/writing-addons.mdx) that wants to read or update args, use the `useArgs` hook exported by `@storybook/manager-api`: {/* prettier-ignore-start */} diff --git a/docs/writing-stories/build-pages-with-storybook.mdx b/docs/writing-stories/build-pages-with-storybook.mdx index 70af44b194f..d2a91f007c1 100644 --- a/docs/writing-stories/build-pages-with-storybook.mdx +++ b/docs/writing-stories/build-pages-with-storybook.mdx @@ -21,7 +21,7 @@ It's straightforward to write components to be fully presentational up to the sc The benefits: * Easy to write stories once components are in this form. -* All the data for the story is encoded in the args of the story, which works well with other parts of Storybook's tooling (e.g. [controls](../essentials/controls.md)). +* All the data for the story is encoded in the args of the story, which works well with other parts of Storybook's tooling (e.g. [controls](../essentials/controls.mdx)). The downsides: @@ -41,7 +41,7 @@ When you are building screens in this way, it is typical that the inputs of a co {/* prettier-ignore-end */} -In such cases, it is natural to use [args composition](./args.md#args-composition) to build the stories for the page based on the stories of the sub-components: +In such cases, it is natural to use [args composition](./args.mdx#args-composition) to build the stories for the page based on the stories of the sub-components: {/* prettier-ignore-start */} @@ -55,15 +55,15 @@ This approach is beneficial when the various subcomponents export a complex list Connected components are components that depend on external data or services. For example, a full page component is often a connected component. When you render a connected component in Storybook, you need to mock the data or modules that the component depends on. There are various layers in which you can do that. -### [Mocking imports](./mocking-modules.md) +### [Mocking imports](./mocking-data-and-modules/mocking-modules.mdx) Components can depend on modules that are imported into the component file. These can be from external packages or internal to your project. When rendering those components in Storybook or testing them, you may want to mock those modules to control their behavior. -### [Mocking API Services](./mocking-network-requests.md) +### [Mocking API Services](./mocking-data-and-modules/mocking-network-requests.mdx) For components that make network requests (e.g., fetching data from a REST or GraphQL API), you can mock those requests in your stories. -### [Mocking providers](./mocking-providers.md) +### [Mocking providers](./mocking-data-and-modules/mocking-providers.mdx) Components can receive data or configuration from context providers. For example, a styled component might access its theme from a ThemeProvider or Redux uses React context to provide components access to app data. You can mock a provider and the value it's providing and wrap your component with it in your stories. @@ -118,7 +118,7 @@ Components can receive data or configuration from context providers. For example {/* prettier-ignore-end */} - If the same context applies to all `ProfilePage` stories, we can use a [decorator](./decorators.md). + If the same context applies to all `ProfilePage` stories, we can use a [decorator](./decorators.mdx). #### Providing containers to your application diff --git a/docs/writing-stories/decorators.mdx b/docs/writing-stories/decorators.mdx index a6f0d00fbbe..2fa694d114a 100644 --- a/docs/writing-stories/decorators.mdx +++ b/docs/writing-stories/decorators.mdx @@ -29,9 +29,9 @@ Some components require a “harness” to render in a useful way. For instance, The second argument to a decorator function is the **story context** which contains the properties: -* `args` - the story arguments. You can use some [`args`](./args.md) in your decorators and drop them in the story implementation itself. -* `argTypes`- Storybook's [argTypes](../api/arg-types.md) allow you to customize and fine-tune your stories [`args`](./args.md). -* `globals` - Storybook-wide [globals](../essentials/toolbars-and-globals.md#globals). In particular you can use the [toolbars feature](../essentials/toolbars-and-globals.md#global-types-toolbar-annotations) to allow you to change these values using Storybook’s UI. +* `args` - the story arguments. You can use some [`args`](./args.mdx) in your decorators and drop them in the story implementation itself. +* `argTypes`- Storybook's [argTypes](../api/arg-types.mdx) allow you to customize and fine-tune your stories [`args`](./args.mdx). +* `globals` - Storybook-wide [globals](../essentials/toolbars-and-globals.mdx#globals). In particular you can use the [toolbars feature](../essentials/toolbars-and-globals.mdx#global-types-toolbar-annotations) to allow you to change these values using Storybook’s UI. * `hooks` - Storybook's API hooks (e.g., useArgs). * `parameters`- the story's static metadata, most commonly used to control Storybook's behavior of features and addons. * `viewMode`- Storybook's current active window (e.g., canvas, docs). @@ -46,12 +46,12 @@ This context can be used to adjust the behavior of your decorator based on the s {/* prettier-ignore-end */} - For another example, see the section on [configuring the mock provider](./mocking-providers.md#configuring-the-mock-provider), which demonstrates how to use the same technique to change which theme is provided to the component. + For another example, see the section on [configuring the mock provider](./mocking-data-and-modules/mocking-providers.mdx#configuring-the-mock-provider), which demonstrates how to use the same technique to change which theme is provided to the component. ### Using decorators to provide data -If your components are “connected” and require side-loaded data to render, you can use decorators to provide that data in a mocked way without having to refactor your components to take that data as an arg. There are several techniques to achieve this. Depending on exactly how you are loading that data. Read more in the [building pages in Storybook](./build-pages-with-storybook.md) section. +If your components are “connected” and require side-loaded data to render, you can use decorators to provide that data in a mocked way without having to refactor your components to take that data as an arg. There are several techniques to achieve this. Depending on exactly how you are loading that data. Read more in the [building pages in Storybook](./build-pages-with-storybook.mdx) section. ## Story decorators @@ -63,7 +63,7 @@ To define a decorator for a single story, use the `decorators` key on a named ex {/* prettier-ignore-end */} -It is useful to ensure that the story remains a “pure” rendering of the component under test and that any extra HTML or components are used only as decorators. In particular the [Source](../api/doc-block-source.md) Doc Block works best when you do this. +It is useful to ensure that the story remains a “pure” rendering of the component under test and that any extra HTML or components are used only as decorators. In particular the [Source](../api/doc-blocks/doc-block-source.mdx) Doc Block works best when you do this. ## Component decorators @@ -77,7 +77,7 @@ To define a decorator for all stories of a component, use the `decorators` key o ## Global decorators -We can also set a decorator for **all stories** via the `decorators` export of your [`.storybook/preview.js`](../configure/index.md#configure-story-rendering) file (this is the file where you configure all stories): +We can also set a decorator for **all stories** via the `decorators` export of your [`.storybook/preview.js`](../configure/index.mdx#configure-story-rendering) file (this is the file where you configure all stories): {/* prettier-ignore-start */} diff --git a/docs/writing-stories/index.mdx b/docs/writing-stories/index.mdx index 05a69fd4228..ef1e0f88fd7 100644 --- a/docs/writing-stories/index.mdx +++ b/docs/writing-stories/index.mdx @@ -24,7 +24,7 @@ components/ ## Component Story Format -We define stories according to the [Component Story Format](../api/csf.md) (CSF), an ES6 module-based standard that is easy to write and portable between tools. +We define stories according to the [Component Story Format](../api/csf.mdx) (CSF), an ES6 module-based standard that is easy to write and portable between tools. The key ingredients are the [default export](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export#Using_the_default_export) that describes the component, and [named exports](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export#Using_named_exports) that describe the stories. @@ -55,7 +55,7 @@ Use the *named* exports of a CSF file to define your component’s stories. We r #### Working with React Hooks - [React Hooks](https://react.dev/reference/react) 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](./args.md) 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: + [React Hooks](https://react.dev/reference/react) 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](./args.mdx) 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: {/* prettier-ignore-start */} @@ -67,7 +67,7 @@ Use the *named* exports of a CSF file to define your component’s stories. We r #### Working with Solid Signals - [Solid Signals](https://www.solidjs.com/docs/latest/api#basic-reactivity) 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](./args.md) 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: + [Solid Signals](https://www.solidjs.com/docs/latest/api#basic-reactivity) 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](./args.mdx) 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: {/* prettier-ignore-start */} @@ -112,7 +112,7 @@ What’s more, you can import `args` to reuse when writing stories for other com 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](../essentials/controls.md) panel. It means your team can dynamically change components in Storybook to stress test and find edge cases. +That’s not all! Each of the args from the story function are live editable using Storybook’s [Controls](../essentials/controls.mdx) panel. It means your team can dynamically change components in Storybook to stress test and find edge cases.