mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
minor tweaks to the workflows docs for 6.4
This commit is contained in:
parent
8afb9fe2e9
commit
a2b2cee457
@ -1,28 +1,38 @@
|
||||
```ts
|
||||
// App.stories.ts
|
||||
|
||||
import { Meta, Story } from '@storybook/angular';
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
|
||||
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: 'App',
|
||||
component: AppComponent,
|
||||
};
|
||||
} as Meta;
|
||||
|
||||
export const Success = {
|
||||
parameters: {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
},
|
||||
const Template: Story = () => ({
|
||||
props: {},
|
||||
});
|
||||
|
||||
export const Success = Template.bind({});
|
||||
Success.parameters = {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
},
|
||||
},
|
||||
};
|
||||
```
|
||||
```
|
@ -4,7 +4,7 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { graphql } from 'msw';
|
||||
|
||||
@ -16,6 +16,11 @@ import { PageLayout } from './PageLayout.component';
|
||||
import { MockGraphQLModule } from './mock-graphql.module';
|
||||
|
||||
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: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
@ -23,7 +28,7 @@ export default {
|
||||
imports: [CommonModule, HttpClientModule, MockGraphQLModule],
|
||||
}),
|
||||
],
|
||||
};
|
||||
}as Meta;
|
||||
|
||||
//👇The mocked data that will be used in the story
|
||||
const TestData = {
|
||||
@ -74,30 +79,32 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
const PageTemplate: Story = () => ({
|
||||
props: {},
|
||||
});
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
},
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -4,7 +4,7 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { rest } from 'msw';
|
||||
|
||||
@ -14,6 +14,11 @@ import { DocumentHeader } from './DocumentHeader.component';
|
||||
import { PageLayout } from './PageLayout.component';
|
||||
|
||||
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: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
@ -21,7 +26,7 @@ export default {
|
||||
imports: [CommonModule, HttpClientModule],
|
||||
}),
|
||||
],
|
||||
};
|
||||
} as Meta;
|
||||
|
||||
//👇The mocked data that will be used in the story
|
||||
const TestData = {
|
||||
@ -72,23 +77,25 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
const PageTemplate: Story = () => ({
|
||||
props: {},
|
||||
});
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
},
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -1,7 +1,7 @@
|
||||
```ts
|
||||
// List.stories.ts
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@ -12,37 +12,43 @@ import { ListItem } from './list-item.component';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
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: 'List',
|
||||
component: List,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
declarations: [ListItem],
|
||||
declarations: [List, ListItem],
|
||||
imports: [CommonModule],
|
||||
}),
|
||||
],
|
||||
} as Meta;
|
||||
|
||||
|
||||
const ListTemplate: Story = (args) => ({
|
||||
props: args,
|
||||
template: `
|
||||
<app-list>
|
||||
<div *ngFor="let item of items">
|
||||
<app-list-item [item]="item"></app-list-item>
|
||||
</div>
|
||||
</app-list>
|
||||
`,
|
||||
});
|
||||
|
||||
export const Empty = ListTemplate.bind({});
|
||||
EmptyListTemplate.args = {
|
||||
items: [],
|
||||
};
|
||||
|
||||
const ListTemplate = {
|
||||
render: (args) => ({
|
||||
props: args,
|
||||
template: `
|
||||
<list>
|
||||
<div *ngFor="let item of items">
|
||||
<list-item [item]="item"></list-item>
|
||||
</div>
|
||||
</list>
|
||||
`,
|
||||
}),
|
||||
export const OneItem = ListTemplate.bind({});
|
||||
OneItem.args = {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export const Empty = {
|
||||
...ListTemplate,
|
||||
args: { items: [] },
|
||||
};
|
||||
|
||||
export const OneItem = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [{ ...Unchecked.args }],
|
||||
},
|
||||
};
|
||||
```
|
||||
```
|
@ -1,7 +1,7 @@
|
||||
```ts
|
||||
// List.stories.ts
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@ -12,26 +12,31 @@ import { ListItem } from './list-item.component';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
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: 'List',
|
||||
component: List,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
declarations: [ListItem],
|
||||
declarations: [List, ListItem],
|
||||
imports: [CommonModule],
|
||||
}),
|
||||
],
|
||||
};
|
||||
} as Meta;
|
||||
|
||||
export const OneItem = {
|
||||
args: {
|
||||
...Unchecked.args,
|
||||
},
|
||||
render: (args) => ({
|
||||
props: args,
|
||||
template: `
|
||||
<list>
|
||||
<list-item [item]="item"></list-item>
|
||||
</list>
|
||||
`,
|
||||
}),
|
||||
|
||||
export const OneItem: Story = (args) => ({
|
||||
props: args,
|
||||
template: `
|
||||
<app-list>
|
||||
<app-list-item [item]="item"></app-list-item>
|
||||
</app-list>
|
||||
`,
|
||||
});
|
||||
|
||||
OneItem.args = {
|
||||
...Unchecked.args,
|
||||
};
|
||||
```
|
||||
```
|
@ -1,7 +1,7 @@
|
||||
```ts
|
||||
// List.stories.ts
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@ -9,23 +9,35 @@ import { List } from './list.component';
|
||||
import { ListItem } from './list-item.component';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
declarations: [ListItem],
|
||||
declarations: [List, ListItem],
|
||||
imports: [CommonModule],
|
||||
}),
|
||||
],
|
||||
};
|
||||
} as Meta;
|
||||
|
||||
export const Empty = {};
|
||||
export const Empty: Story = () => ({
|
||||
props: {
|
||||
args,
|
||||
},
|
||||
});
|
||||
|
||||
export const OneItem = {
|
||||
args: {},
|
||||
render: (args) => ({
|
||||
props: args,
|
||||
template: `<list><list-item></list-item></list>`,
|
||||
}),
|
||||
};
|
||||
```
|
||||
export const OneItem: Story = () => ({
|
||||
props: {
|
||||
args,
|
||||
},
|
||||
template: `
|
||||
<app-list>
|
||||
<app-list-item></app-list-item>
|
||||
</app-list>
|
||||
`,
|
||||
});
|
||||
```
|
@ -1,7 +1,7 @@
|
||||
```ts
|
||||
// YourPage.stories.ts
|
||||
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@ -16,6 +16,11 @@ import * as DocumentHeaderStories from './DocumentHeader.stories';
|
||||
import * as DocumentListStories from './DocumentList.stories';
|
||||
|
||||
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: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
@ -23,13 +28,17 @@ export default {
|
||||
imports: [CommonModule],
|
||||
}),
|
||||
],
|
||||
};
|
||||
} as Meta;
|
||||
|
||||
export const Simple = {
|
||||
args: {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
},
|
||||
|
||||
const Template: Story = (args) => ({
|
||||
props: args,
|
||||
});
|
||||
|
||||
export const Simple = Template.bind({});
|
||||
Simple.args = {
|
||||
user: PageLayoutStories.PageLayoutSimple.args.user,
|
||||
document: DocumentHeaderStories.DocumentHeaderSimple.args.document,
|
||||
subdocuments: DocumentListStories.DocumentListSimple.args.documents
|
||||
};
|
||||
```
|
||||
```
|
@ -1,30 +1,36 @@
|
||||
```js
|
||||
// App.stories.js | App.stories.jsx | App.stories.ts | App.stories.tsx
|
||||
// App.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import App from './App';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'App',
|
||||
component: App,
|
||||
};
|
||||
|
||||
export const Success = {
|
||||
parameters: {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
},
|
||||
},
|
||||
},
|
||||
const Template = (ags) => <App />;
|
||||
|
||||
export const Success = Template.bind({});
|
||||
Success.parameters = {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
}
|
||||
}
|
||||
};
|
||||
```
|
||||
```
|
38
docs/snippets/react/app-story-with-mock.ts.mdx
Normal file
38
docs/snippets/react/app-story-with-mock.ts.mdx
Normal file
@ -0,0 +1,38 @@
|
||||
```ts
|
||||
// App.stories.ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import App from './App';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'App',
|
||||
component: App,
|
||||
} as ComponentMeta<typeof App>;
|
||||
|
||||
const Template: ComponentStory<typeof App> = () => <App />;
|
||||
|
||||
export const Success = Template.bind({});
|
||||
Success.parameters = {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
}
|
||||
}
|
||||
};
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// YourPage.stories.js | YourPage.stories.jsx | YourPage.stories.ts | YourPage.stories.tsx
|
||||
// YourPage.stories.js|jsx|ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -10,6 +10,11 @@ import { graphql } from 'msw';
|
||||
import { DocumentScreen } from './YourPage';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
@ -77,40 +82,34 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: () => (
|
||||
<ApolloProvider client={mockedClient}>
|
||||
<DocumentScreen />
|
||||
</ApolloProvider>
|
||||
),
|
||||
const PageTemplate = () => (
|
||||
<ApolloProvider client={mockedClient}>
|
||||
<DocumentScreen />
|
||||
</ApolloProvider>
|
||||
);
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: () => (
|
||||
<ApolloProvider client={mockedClient}>
|
||||
<DocumentScreen />
|
||||
</ApolloProvider>
|
||||
),
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -1,11 +1,18 @@
|
||||
```js
|
||||
// YourPage.stories.js | YourPage.stories.jsx | YourPage.stories.ts | YourPage.stories.tsx
|
||||
// YourPage.stories.js|jsx|ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { rest } from 'msw';
|
||||
|
||||
import { DocumentScreen } from './YourPage';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
@ -58,23 +65,23 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
const PageTemplate = () => <DocumentScreen />;
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
},
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// List.stories.js | List.stories.jsx
|
||||
// List.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -10,33 +10,31 @@ import { ListItem } from './ListItem';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
//👇 The ListTemplate construct will be spread to the existing stories.
|
||||
const ListTemplate = {
|
||||
render: ({ items, ...args }) => {
|
||||
return (
|
||||
<List>
|
||||
{items.map((item) => (
|
||||
<ListItem {...item} />
|
||||
))}
|
||||
</List>
|
||||
);
|
||||
},
|
||||
};
|
||||
const ListTemplate = ({ items, ...args }) => (
|
||||
<List>
|
||||
{items.map((item) => (
|
||||
<ListItem {...item} />
|
||||
))}
|
||||
</List>
|
||||
);
|
||||
|
||||
export const Empty = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [],
|
||||
},
|
||||
};
|
||||
export const Empty = ListTemplate.bind({});
|
||||
Empty.args = { items: [] };
|
||||
|
||||
export const OneItem = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [Unchecked.args],
|
||||
},
|
||||
export const OneItem = ListTemplate.bind({});
|
||||
OneItem.args = {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -1,25 +1,43 @@
|
||||
```js
|
||||
// List.stories.ts | List.stories.tsx
|
||||
// List.stories.ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import { List, ListProps } from './List';
|
||||
import { ListItem, ListItemProps } from './ListItem';
|
||||
import { List } from './List';
|
||||
import { ListItem } from './ListItem';
|
||||
|
||||
//👇 Imports a specific story from ListItem stories
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
const ListTemplate = ({ items, ...args }) => (
|
||||
<List>
|
||||
{items.map((item) => (
|
||||
<ListItem {...item} />
|
||||
))}
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
} as ComponentMeta<typeof List>;
|
||||
|
||||
const ListTemplate: ComponentStory<typeof ButtonGroup> = (args) => {
|
||||
const { items } = args;
|
||||
return (
|
||||
<List>
|
||||
{items.map((item) => (
|
||||
<ListItem {...item} />
|
||||
))}
|
||||
</List>
|
||||
);
|
||||
)};
|
||||
|
||||
export const Empty = ListTemplate.bind({});
|
||||
Empty.args = { items: [] };
|
||||
|
||||
export const OneItem = ListTemplate.bind({});
|
||||
OneItem.args = { items: [Unchecked.args] };
|
||||
OneItem.args = {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
};
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// List.stories.js | List.stories.jsx
|
||||
// List.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -9,6 +9,11 @@ import { List } from './List';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
|
@ -1,14 +1,25 @@
|
||||
```ts
|
||||
// List.stories.ts | List.stories.tsx
|
||||
// List.stories.ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { List, ListProps } from './List';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import { List } from './List';
|
||||
|
||||
//👇 Instead of importing ListItem, we import the stories
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export const OneItem = (args) => (
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
} as ComponentMeta<typeof List>;
|
||||
|
||||
const OneItem: ComponentStory<typeof List> = (args) => (
|
||||
<List {...args}>
|
||||
<Unchecked {...Unchecked.args} />
|
||||
</List>
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// List.stories.js | List.stories.jsx
|
||||
// List.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -7,17 +7,20 @@ import { List } from './List';
|
||||
import { ListItem } from './ListItem';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
|
||||
};
|
||||
|
||||
export const Empty = {};
|
||||
export const Empty = (args) => <List {...args} />;
|
||||
|
||||
export const OneItem = {
|
||||
render: (args) => (
|
||||
<List {...args}>
|
||||
<ListItem />
|
||||
</List>
|
||||
),
|
||||
};
|
||||
```
|
||||
export const OneItem = (args) => (
|
||||
<List {...args}>
|
||||
<ListItem />
|
||||
</List>
|
||||
);
|
||||
```
|
@ -3,20 +3,25 @@
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { Story, Meta } from '@storybook/react';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import { List, ListProps } from './List';
|
||||
import { ListItem, ListItemProps } from './ListItem';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
|
||||
title: 'List',
|
||||
} as Meta;
|
||||
} as ComponentMeta<typeof List>;
|
||||
|
||||
export const Empty: Story<ListProps> = (args) => <List {...args} />;
|
||||
const Empty: ComponentStory<typeof List> = (args) => <ButtonGroup {...args} />;
|
||||
|
||||
export const OneItem = (args) => (
|
||||
const OneItem: ComponentStory<typeof List> = (args) =>(
|
||||
<List {...args}>
|
||||
<ListItem />
|
||||
</List>
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// List.stories.js | List.stories.jsx
|
||||
// List.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -9,8 +9,14 @@ import { List } from './List';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
const Template = (args) => <List {...args} />;
|
||||
|
||||
export const OneItem = Template.bind({});
|
||||
|
@ -1,14 +1,25 @@
|
||||
```ts
|
||||
// List.stories.ts | List.stories.tsx
|
||||
// List.stories.ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { List, ListProps } from './List';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import { List } from './List';
|
||||
|
||||
//👇 Instead of importing ListItem, we import the stories
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
const Template: Story<ListProps> = (args) => <List {...args} />;
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
} as ComponentMeta<typeof List>;
|
||||
|
||||
const Template: ComponentStory<typeof List> = (args) => <List {...args} />;
|
||||
|
||||
export const OneItem = Template.bind({});
|
||||
OneItem.args = {
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// pages/profile.js | pages/profile.jsx
|
||||
// pages/profile.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// ProfilePage.stories.js | ProfilePage.stories.jsx
|
||||
// ProfilePage.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@ -10,6 +10,11 @@ import { UserPosts } from './UserPosts';
|
||||
import { normal as UserFriendsNormal } from './UserFriends.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'ProfilePage',
|
||||
component: ProfilePage,
|
||||
};
|
||||
|
||||
@ -29,11 +34,11 @@ const context = {
|
||||
UserFriendsContainer: UserFriendsNormal,
|
||||
};
|
||||
|
||||
export const Normal = {
|
||||
render: () => (
|
||||
export const normal = () => {
|
||||
return (
|
||||
<ProfilePageContext.Provider value={context}>
|
||||
<ProfilePage {...ProfilePageProps} />
|
||||
</ProfilePageContext.Provider>
|
||||
),
|
||||
);
|
||||
};
|
||||
```
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// ProfilePage.js | ProfilePage.jsx
|
||||
// ProfilePage.js|jsx
|
||||
|
||||
import { useContext } from 'react';
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
```js
|
||||
// YourPage.stories.js | YourPage.stories.jsx
|
||||
// YourPage.stories.js|jsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { DocumentScreen } from './YourPage';
|
||||
|
||||
@ -9,14 +11,20 @@ import * as DocumentHeader from './DocumentHeader.stories';
|
||||
import * as DocumentList from './DocumentList.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
export const Simple = {
|
||||
args: {
|
||||
user: PageLayout.Simple.args.user,
|
||||
document: DocumentHeader.Simple.args.document,
|
||||
subdocuments: DocumentList.Simple.args.documents,
|
||||
},
|
||||
const Template = (args) => <DocumentScreen {...args} />;
|
||||
|
||||
export const Simple = Template.bind({});
|
||||
Simple.args = {
|
||||
user: PageLayout.Simple.args.user,
|
||||
document: DocumentHeader.Simple.args.document,
|
||||
subdocuments: DocumentList.Simple.args.documents,
|
||||
};
|
||||
```
|
||||
```
|
@ -1,21 +1,28 @@
|
||||
```ts
|
||||
// YourPage.stories.ts | YourPage.stories.tsx
|
||||
// YourPage.stories.ts|tsx
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { Story, Meta } from '@storybook/react';
|
||||
import { DocumentScreen, DocumentScreenProps } from './YourPage';
|
||||
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||||
|
||||
import { DocumentScreen } from './YourPage';
|
||||
|
||||
import PageLayout from './PageLayout.stories';
|
||||
import DocumentHeader from './DocumentHeader.stories';
|
||||
import DocumentList from './DocumentList.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
title: 'DocumentScreen',
|
||||
} as Meta;
|
||||
} as ComponentMeta<typeof DocumentScreen>;
|
||||
|
||||
const Template: Story<DocumentScreenProps> = (args) => <DocumentScreen {...args} />;
|
||||
|
||||
const Template: ComponentStory<typeof DocumentScreen> = (args) => <DocumentScreen {...args} />;
|
||||
|
||||
export const Simple = Template.bind({});
|
||||
Simple.args = {
|
||||
|
@ -7,6 +7,11 @@ import DocumentScreen from './YourPage.svelte';
|
||||
import MockApolloWrapperClient from './MockApolloWrapperClient.svelte';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/svelte/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
decorators: [() => MockGraphqlProvider],
|
||||
};
|
||||
@ -60,38 +65,31 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
Component: DocumentScreen,
|
||||
props: args,
|
||||
}),
|
||||
};
|
||||
const PageTemplate = () => ({
|
||||
Component: DocumentScreen,
|
||||
});
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
Component: DocumentScreen,
|
||||
props: args,
|
||||
}),
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
@ -6,6 +6,11 @@ import DocumentScreen from './YourPage.svelte';
|
||||
import { rest } from 'msw';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/svelte/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
@ -58,31 +63,25 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
Component: DocumentScreen,
|
||||
props: args,
|
||||
}),
|
||||
const PageTemplate = () => ({
|
||||
Component: DocumentScreen,
|
||||
});
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
Component: DocumentScreen,
|
||||
props: args,
|
||||
}),
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -9,18 +9,24 @@ import * as DocumentHeaderStories from './DocumentHeader.stories';
|
||||
import * as DocumentListStories from './DocumentList.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/svelte/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
export const Simple = {
|
||||
args: {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
},
|
||||
render: (args) => ({
|
||||
Components: DocumentScreen,
|
||||
props: args,
|
||||
}),
|
||||
|
||||
const Template = (args) => ({
|
||||
component: DocumentScreen,
|
||||
props: args,
|
||||
});
|
||||
|
||||
export const SimplePage = Template.bind({});
|
||||
SimplePage.args = {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
};
|
||||
```
|
||||
```
|
@ -1,33 +0,0 @@
|
||||
```js
|
||||
// App.stories.js
|
||||
|
||||
import App from './App.vue';
|
||||
|
||||
export default {
|
||||
component: App,
|
||||
};
|
||||
|
||||
export const Success = {
|
||||
parameters: {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
},
|
||||
},
|
||||
},
|
||||
render: (args) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { App },
|
||||
template: '<App v-bind="$props"/>',
|
||||
}),
|
||||
};
|
||||
```
|
@ -1,35 +0,0 @@
|
||||
```js
|
||||
// App.stories.js
|
||||
|
||||
import App from './App.vue';
|
||||
|
||||
export default {
|
||||
component: App,
|
||||
};
|
||||
|
||||
export const Success = {
|
||||
parameters: {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
'C++': 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189,
|
||||
},
|
||||
},
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { App },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<App v-bind="args" />',
|
||||
}),
|
||||
};
|
||||
```
|
38
docs/snippets/vue/app-story-with-mock.js.mdx
Normal file
38
docs/snippets/vue/app-story-with-mock.js.mdx
Normal file
@ -0,0 +1,38 @@
|
||||
```js
|
||||
// App.stories.js
|
||||
|
||||
import App from './App.vue';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'App',
|
||||
component: App,
|
||||
};
|
||||
|
||||
|
||||
const Template = () => ({
|
||||
components: { App },
|
||||
template: '<App />',
|
||||
});
|
||||
|
||||
export const Success = Template.bind({});
|
||||
Success.parameters = {
|
||||
fetch: {
|
||||
json: {
|
||||
JavaScript: 3390991,
|
||||
"C++": 44974,
|
||||
TypeScript: 15530,
|
||||
CoffeeScript: 12253,
|
||||
Python: 9383,
|
||||
C: 5341,
|
||||
Shell: 5115,
|
||||
HTML: 3420,
|
||||
CSS: 3171,
|
||||
Makefile: 189
|
||||
}
|
||||
}
|
||||
};
|
||||
```
|
@ -8,6 +8,11 @@ import WrapperComponent from './ApolloWrapperClient.vue';
|
||||
import { graphql } from 'msw';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
@ -60,44 +65,37 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { DocumentScreen, WrapperComponent },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<WrapperComponent><DocumentScreen v-bind="args"/></WrapperComponent>',
|
||||
}),
|
||||
const PageTemplate = () => ({
|
||||
components: { DocumentScreen, WrapperComponent },
|
||||
template: `
|
||||
<WrapperComponent>
|
||||
<SampleGraphqlComponent />
|
||||
</WrapperComponent>
|
||||
`,
|
||||
});
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(ctx.data(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { DocumentScreen, WrapperComponent },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<WrapperComponent><DocumentScreen v-bind="args"/></WrapperComponent>',
|
||||
}),
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
graphql.query('AllInfoQuery', (req, res, ctx) => {
|
||||
return res(
|
||||
ctx.delay(800),
|
||||
ctx.errors([
|
||||
{
|
||||
message: 'Access denied',
|
||||
},
|
||||
])
|
||||
);
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -6,6 +6,11 @@ import { rest } from 'msw';
|
||||
import DocumentScreen from './YourPage.vue';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
@ -58,37 +63,26 @@ const TestData = {
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedSuccess = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { DocumentScreen },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<DocumentScreen v-bind="args" />',
|
||||
}),
|
||||
const PageTemplate = () => ({
|
||||
components: { DocumentScreen },
|
||||
template: '<DocumentScreen />',
|
||||
});
|
||||
|
||||
export const MockedSuccess = PageTemplate.bind({});
|
||||
MockedSuccess.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.json(TestData));
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export const MockedError = {
|
||||
parameters: {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { DocumentScreen },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<DocumentScreen v-bind="args" />',
|
||||
}),
|
||||
export const MockedError = PageTemplate.bind({});
|
||||
MockedError.parameters = {
|
||||
msw: [
|
||||
rest.get('https://your-restful-endpoint/', (_req, res, ctx) => {
|
||||
return res(ctx.delay(800), ctx.status(403));
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -8,10 +8,14 @@ import ListItem from './ListItem.vue';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
//👇 The ListTemplate construct will be spread to the existing stories.
|
||||
const ListTemplate = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List, ListItem },
|
||||
@ -21,24 +25,20 @@ const ListTemplate = (args, { argTypes }) => ({
|
||||
<ListItem :item="item" />
|
||||
</div>
|
||||
</List>
|
||||
`,
|
||||
`,
|
||||
});
|
||||
|
||||
export const Empty = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [],
|
||||
},
|
||||
export const Empty = ListTemplate.bind({});
|
||||
EmptyListTemplate.args = {
|
||||
items: [],
|
||||
};
|
||||
|
||||
export const OneItem = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
},
|
||||
export const OneItem = ListTemplate.bind({});
|
||||
OneItem.args = {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -8,45 +8,39 @@ import ListItem from './ListItem.vue';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
//👇 The ListTemplate construct will be spread to the existing stories.
|
||||
export const ListTemplate = {
|
||||
render: (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
return { ...args };
|
||||
},
|
||||
template: `
|
||||
<List v-bind="args">
|
||||
<div v-for="item in items" :key="item.title">
|
||||
<ListItem :item="item"/>
|
||||
</div>
|
||||
</List>
|
||||
`,
|
||||
}),
|
||||
};
|
||||
|
||||
export const Empty = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [],
|
||||
const ListTemplate = (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
};
|
||||
template: `
|
||||
<List v-bind="args">
|
||||
<div v-for="item in items" :key="item.title">
|
||||
<ListItem :item="item"/>
|
||||
</div>
|
||||
</List>
|
||||
`,
|
||||
});
|
||||
|
||||
export const Empty = ListTemplate.bind({});
|
||||
Empty.args = {
|
||||
items: [],
|
||||
};
|
||||
|
||||
export const OneItem = {
|
||||
...ListTemplate,
|
||||
args: {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
},
|
||||
export const OneItem = ListTemplate.bind({});
|
||||
OneItem.args = {
|
||||
items: [
|
||||
{
|
||||
...Unchecked.args,
|
||||
},
|
||||
],
|
||||
};
|
||||
```
|
||||
```
|
@ -8,17 +8,24 @@ import ListItem from './ListItem.vue';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
|
||||
export const OneItem = {
|
||||
args: {
|
||||
...Unchecked.args,
|
||||
},
|
||||
render: (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List, ListItem },
|
||||
template: '<List v-bind="$props"><ListItem v-bind="$props"/></List>',
|
||||
}),
|
||||
export const OneItem = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List, ListItem },
|
||||
template: `
|
||||
<List v-bind="$props">
|
||||
<ListItem v-bind="$props"/>
|
||||
</List>
|
||||
`,
|
||||
});
|
||||
OneItem.args = {
|
||||
...Unchecked.args,
|
||||
};
|
||||
```
|
||||
|
@ -8,20 +8,34 @@ import ListItem from './ListItem.vue';
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
};
|
||||
// List.stories.js
|
||||
|
||||
export const OneItem = {
|
||||
args: {
|
||||
...Unchecked.args,
|
||||
import List from './List.vue';
|
||||
import ListItem from './ListItem.vue';
|
||||
|
||||
//👇 Imports a specific story from ListItem stories
|
||||
import { Unchecked } from './ListItem.stories';
|
||||
|
||||
export const OneItem = (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
//👇 The args will now be passed down to the template
|
||||
return { args };
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
//👇 The args will now be passed down to the template
|
||||
return { args };
|
||||
},
|
||||
template: '<List v-bind="args"><ListItem v-bind="args"/></List>',
|
||||
}),
|
||||
template: `
|
||||
<List v-bind="args">
|
||||
<ListItem v-bind="args"/>
|
||||
</List>
|
||||
`,
|
||||
});
|
||||
OneItem.args = {
|
||||
...Unchecked.args,
|
||||
};
|
||||
```
|
||||
```
|
@ -5,23 +5,24 @@ import List from './List.vue';
|
||||
import ListItem from './ListItem.vue';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
|
||||
};
|
||||
|
||||
export const Empty = {
|
||||
render: (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List },
|
||||
template: '<List v-bind="$props"/>',
|
||||
}),
|
||||
};
|
||||
export const Empty = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List },
|
||||
template: '<List v-bind="$props"/>',
|
||||
});
|
||||
|
||||
export const OneItem = {
|
||||
render: (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List, ListItem },
|
||||
template: '<List v-bind="$props"><ListItem /></List>',
|
||||
}),
|
||||
};
|
||||
```
|
||||
export const OneItem = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { List, ListItem },
|
||||
template: '<List v-bind="$props"><ListItem /></List>',
|
||||
});
|
||||
```
|
@ -5,28 +5,30 @@ import List from './List.vue';
|
||||
import ListItem from './ListItem.vue';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'List',
|
||||
component: List,
|
||||
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
|
||||
};
|
||||
|
||||
export const Empty = {
|
||||
render: (args) => ({
|
||||
components: { Button },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<List v-bind="args"/>',
|
||||
}),
|
||||
};
|
||||
export const Empty = (args) => ({
|
||||
components: { List },
|
||||
setup() {
|
||||
//👇 The args will now be passed down to the template
|
||||
return { args };
|
||||
}
|
||||
template: '<List v-bind="args"/>',
|
||||
});
|
||||
|
||||
export const OneItem = {
|
||||
render: (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
//👇 The args will now be passed down to the template
|
||||
return { args };
|
||||
},
|
||||
template: '<List v-bind="args"><ListItem /></List>',
|
||||
}),
|
||||
};
|
||||
```
|
||||
export const OneItem = (args) => ({
|
||||
components: { List, ListItem },
|
||||
setup() {
|
||||
//👇 The args will now be passed down to the template
|
||||
return { args };
|
||||
}
|
||||
template: '<List v-bind="args"><ListItem /></List>',
|
||||
});
|
||||
```
|
@ -9,19 +9,24 @@ import * as DocumentHeaderStories from './DocumentHeader.stories';
|
||||
import * as DocumentListStories from './DocumentList.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
export const Simple = {
|
||||
args: {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
},
|
||||
render: (args, { argTypes }) => ({
|
||||
components: { DocumentScreen },
|
||||
props: Object.keys(argTypes),
|
||||
template: '<DocumentScreen v-bind="$props" />',
|
||||
}),
|
||||
const Template = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { DocumentScreen },
|
||||
template: '<DocumentScreen v-bind="$props"/>',
|
||||
});
|
||||
|
||||
export const Simple = Template.bind({});
|
||||
Simple.args = {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
};
|
||||
```
|
||||
```
|
@ -9,21 +9,26 @@ import * as DocumentHeaderStories from './DocumentHeader.stories';
|
||||
import * as DocumentListStories from './DocumentList.stories';
|
||||
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'DocumentScreen',
|
||||
component: DocumentScreen,
|
||||
};
|
||||
|
||||
export const Simple = {
|
||||
args: {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
const Template = (args) => ({
|
||||
components: { DocumentScreen },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
render: (args) => ({
|
||||
components: { DocumentScreen },
|
||||
setup() {
|
||||
return { args };
|
||||
},
|
||||
template: '<DocumentScreen v-bind="args" />',
|
||||
}),
|
||||
template: '<DocumentScreen v-bind="args"/>',
|
||||
});
|
||||
|
||||
export const Simple = Template.bind({});
|
||||
Simple.args = {
|
||||
user: PageLayoutStories.Simple.args.user,
|
||||
document: DocumentHeaderStories.Simple.args.document,
|
||||
subdocuments: DocumentListStories.Simple.args.documents,
|
||||
};
|
||||
```
|
||||
```
|
@ -205,8 +205,8 @@ Finally, we can set the mock values in a specific story. Let's borrow an example
|
||||
<CodeSnippets
|
||||
paths={[
|
||||
'react/app-story-with-mock.js.mdx',
|
||||
'vue/app-story-with-mock.2.js.mdx',
|
||||
'vue/app-story-with-mock.3.js.mdx',
|
||||
'react/app-story-with-mock.ts.mdx',
|
||||
'vue/app-story-with-mock.js.mdx',
|
||||
'angular/app-story-with-mock.ts.mdx',
|
||||
]}
|
||||
/>
|
||||
|
@ -370,4 +370,4 @@ export function isRunningInStorybook() {
|
||||
return typeof process?.env?.STORYBOOK !== 'undefined';
|
||||
// ReferenceError: process is not defined
|
||||
}
|
||||
```
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user