mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
25 lines
541 B
Plaintext
25 lines
541 B
Plaintext
```js
|
|
// __mocks__/isomorphic-fetch.js
|
|
|
|
// Your fetch implementation to be added to ./storybook/main.js.
|
|
// In your webpackFinal configuration object.
|
|
|
|
let nextJson;
|
|
export default async function fetch() {
|
|
if (nextJson) {
|
|
return {
|
|
json: () => nextJson,
|
|
};
|
|
}
|
|
nextJson = null;
|
|
}
|
|
|
|
// The decorator to be used in ./storybook/preview to apply the mock to all stories
|
|
|
|
export function decorator(story, { parameters }) {
|
|
if (parameters && parameters.fetch) {
|
|
nextJson = parameters.fetch.json;
|
|
}
|
|
return story();
|
|
}
|
|
``` |