mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
41 lines
846 B
Plaintext
41 lines
846 B
Plaintext
```ts
|
|
// TodoItem.stories.ts
|
|
|
|
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { TodoItem } from './TodoItem';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Examples/Loader',
|
|
component: TodoItem,
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [TodoItem],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
} as Meta;
|
|
|
|
export const Primary = (args, { loaded: { todo } }) => {
|
|
return {
|
|
props: {
|
|
args,
|
|
todo,
|
|
},
|
|
};
|
|
};
|
|
|
|
Primary.loaders = [
|
|
async () => ({
|
|
todo: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
|
}),
|
|
];
|
|
``` |