2020-10-12 14:23:54 +08:00

2.4 KiB
Raw Blame History

title
Loaders

Loaders are asynchronous functions that load data for a story and its decorators. A story's loaders run before the story renders, and the loaded data is passed into the story via its render context.

Loaders can be used to load any asset (e.g. lazy-loaded components), but they are are typically used to fetch remote API data to be used in a story.

Fetching API data

Stories are isolated component examples that render internal data that's defined as part of the story or alongside the story as args.

Loaders are useful when you need to load story data externally, e.g. from a remote API. Consider the following example that fetches a todo item for display in a todo list:

<CodeSnippets paths={[ 'react/loader-story.js.mdx', ]} />

The loaded data is combined into a loaded field on the story context, which is the second argument to a story function. In this example we spread the story's args in first, so they take priority over the static data provided by the loader.

Global loaders

We can also set a loader for all stories via the loaders export of your .storybook/preview.js file (this is the file where you configure all stories):

<CodeSnippets paths={[ 'react/storybook-preview-global-loader.js.mdx', ]} />

In this example, we load a "current user" that is available as loaded.currentUser for all stories.

Loader inheritance

Like parameters, loaders can be defined globally, at the component level and for a single story (as weve seen).

All loaders, defined at all levels that apply to a story, run before the story is rendered.

  • All loaders run in parallel
  • All results are the loaded field in the story context
  • If there are keys that overlap, "later" loaders take precedence (from lowest to highest):
    • Global loaders, in the order they are defined
    • Component loaders, in the order they are defined
    • Story loaders, in the order they are defined

Known limitations

Loaders have the following known limitations:

  • They are not yet compatible with the storyshots addon (#12703).
  • They are not yet compatible with inline-rendered stories in Storybook Docs (#12726).