Polish to the vue snippets and docs

This commit is contained in:
jonniebigodes 2022-04-29 20:37:36 +01:00
parent 5593e24f0e
commit e3b1c12930
39 changed files with 71 additions and 57 deletions

View File

@ -12,7 +12,7 @@ export default {
component: Button,
};
export const Template = (args) => ({
const Template = (args) => ({
//👇 Your template goes here
});

View File

@ -76,4 +76,4 @@ with unique URLs and isolated snapshot tests.
}}
</Story>
</Canvas>
```
```

View File

@ -69,4 +69,4 @@ with unique URLs, which is great for review and testing.
{Template.bind({})}
</Story>
</Canvas>
```
```

View File

@ -1,5 +1,5 @@
```js
//ButtonGroup.stories.js
// ButtonGroup.stories.js
import ButtonGroup from './ButtonGroup.vue';

View File

@ -1,5 +1,5 @@
```js
//ButtonGroup.stories.js
// ButtonGroup.stories.js
import ButtonGroup from './ButtonGroup.vue';

View File

@ -1,5 +1,5 @@
```ts
//ButtonGroup.stories.ts
// ButtonGroup.stories.ts
import ButtonGroup from './ButtonGroup.vue';
@ -28,4 +28,4 @@ Pair.args = {
buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }],
orientation: 'horizontal',
};
```
```

View File

@ -1,5 +1,5 @@
```ts
//ButtonGroup.stories.ts
// ButtonGroup.stories.ts
import ButtonGroup from './ButtonGroup.vue';
@ -30,4 +30,4 @@ Pair.args = {
buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }],
orientation: 'horizontal',
};
```
```

View File

@ -14,4 +14,4 @@ export default {
component: Button,
decorators: [() => ({ template: '<div style="margin: 3em;"><story /></div>' })],
} as Meta<typeof Button>;
```
```

View File

@ -14,4 +14,4 @@ export default {
component: Button,
decorators: [() => ({ template: '<div style="margin: 3em;"><story /></div>' })],
} as Meta<typeof Button>;
```
```

View File

@ -13,4 +13,4 @@ export default {
title: 'Button',
component: Button,
} as Meta<typeof Button>;
```
```

View File

@ -13,4 +13,4 @@ export default {
title: 'Button',
component: Button,
} as Meta<typeof Button>;
```
```

View File

@ -17,4 +17,4 @@ export const Primary = () => ({
template: '<Button primary label="Button" />',
});
Primary.storyName = 'I am the primary';
```
```

View File

@ -19,4 +19,4 @@ export const Primary: StoryFn<typeof Button> = () => ({
template: '<Button primary label="Button" />',
});
Primary.storyName = 'I am the primary';
```
```

View File

@ -19,4 +19,4 @@ export const Primary: StoryFn<typeof Button> = () => ({
template: '<Button primary label="Button" />',
});
Primary.storyName = 'I am the primary';
```
```

View File

@ -30,4 +30,4 @@ Secondary.args = { ...Primary.args, label: '😄👍😍💯' };
export const Tertiary = Template.bind({});
Tertiary.args = { ...Primary.args, label: '📚📕📈🤓' };
```
```

View File

@ -32,4 +32,4 @@ Secondary.args = { ...Primary.args, label: '😄👍😍💯' };
export const Tertiary = Template.bind({});
Tertiary.args = { ...Primary.args, label: '📚📕📈🤓' };
```
```

View File

@ -23,4 +23,4 @@ export default {
},
},
} as Meta<typeof Button>;
```
```

View File

@ -23,4 +23,4 @@ export default {
},
},
} as Meta<typeof Button>;
```
```

View File

@ -28,4 +28,4 @@ export const Tertiary: StoryFn<typeof Button> = () => ({
components: { Button },
template: '<Button background="#ff0" label="📚📕📈🤓" />',
});
```
```

View File

@ -28,4 +28,4 @@ export const Tertiary: StoryFn<typeof Button> = () => ({
components: { Button },
template: '<Button background="#ff0" label="📚📕📈🤓" />',
});
```
```

View File

@ -18,4 +18,4 @@ export const Primary: StoryFn<typeof Button> = () => ({
components: { Button },
template: '<Button primary label="Button" />',
});
```
```

View File

@ -18,4 +18,4 @@ export const Primary: StoryFn<typeof Button> = () => ({
components: { Button },
template: '<Button primary label="Button" />',
});
```
```

View File

@ -10,7 +10,7 @@ import MyComponent from './MyComponent.vue';
<Meta title="FigmaExample" component={MyComponent} decorators={[withDesign]} />
export const Template = (args) => ({
// Components used in your story `template` are defined in the `components` object
// Components used in your story `template` are defined in the `components` object
components: { MyComponent },
template: 'MyComponent />',
});

View File

@ -1,7 +1,7 @@
```ts
// MyComponent.stories.ts
import { Meta, Story } from '@storybook/vue'; // For Vue 3 use import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryFn } from '@storybook/vue'; // For Vue 3 use import { Meta, Story } from '@storybook/vue3';
import { withDesign } from 'storybook-addon-designs';
@ -12,10 +12,10 @@ export default {
title: 'FigmaExample',
component: MyComponent,
decorators: [withDesign],
} as Meta;
} as Meta<typeof MyComponent>;
// More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
const Template: Story = () => ({
const Template: StoryFn<typeof MyComponent> = () => ({
components: { MyComponent },
template: '<MyComponent />',
});

View File

@ -46,4 +46,4 @@ export const Template = (args) => ({
}}>
{Template.bind({})}
</Story>
```
```

View File

@ -38,4 +38,4 @@ export const ManyItems: StoryFn<typeof List> = (args, { argTypes }) => ({
</list>
`,
});
```
```

View File

@ -44,4 +44,4 @@ export const ManyItems: StoryFn<typeof List> = (args) => ({
</list>
`,
});
```
```

View File

@ -33,4 +33,4 @@ ManyItems.args = {
Selected: Selected.args.isSelected,
Unselected: Unselected.args.isSelected,
};
```
```

View File

@ -35,4 +35,4 @@ ManyItems.args = {
Selected: Selected.args.isSelected,
Unselected: Unselected.args.isSelected,
};
```
```

View File

@ -20,4 +20,4 @@ const Template: StoryFn<typeof List> = (args, { argTypes }) => ({
props: Object.keys(argTypes),
template: '<list v-bind="$props"/>',
});
```
```

View File

@ -22,4 +22,4 @@ const Template: StoryFn<typeof LoginForm> = (args) => ({
},
template: '<list v-bind="args"/>',
});
```
```

View File

@ -16,7 +16,7 @@ export default {
component: LoginForm,
};
export const Template = (args, { argTypes }) => ({
const Template = (args, { argTypes }) => ({
components: { LoginForm },
props: Object.keys(argTypes),
template: `<LoginForm v-bind="$props" v-on="$props" />`,

View File

@ -3,6 +3,8 @@
import { userEvent, within } from '@storybook/testing-library';
import { expect } from '@storybook/jest';
import LoginForm from './LoginForm.vue';
import { Meta, StoryFn } from '@storybook/vue';
@ -16,7 +18,7 @@ export default {
component: LoginForm,
} as Meta<typeof LoginForm>;
export const Template: StoryFn<typeof LoginForm> = (args, { argTypes }) => ({
const Template: StoryFn<typeof LoginForm> = (args, { argTypes }) => ({
components: { LoginForm },
props: Object.keys(argTypes),
template: `<LoginForm v-bind="$props" v-on="$props" />`,
@ -29,14 +31,19 @@ FilledForm.play = async ({ canvasElement }) => {
// Starts querying the component from its root element
const canvas = within(canvasElement);
await userEvent.type(canvas.getByTestId('email'), 'email@provider.com', {
delay: 100,
});
await userEvent.type(canvas.getByTestId('password'), 'a-random-password', {
delay: 100,
});
// 👇 Simulate interactions with the component
await userEvent.type(canvas.getByTestId('email'), 'email@provider.com');
await userEvent.type(canvas.getByTestId('password'), 'a-random-password');
// See https://storybook.js.org/docs/vue/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
await userEvent.click(canvas.getByRole('button'));
// 👇 Assert DOM structure
await expect(
canvas.getByText(
'Everything is perfect. Your account is ready and we should probably get you started!'
)
).toBeInTheDocument();
};
```
```

View File

@ -1,8 +1,10 @@
```js
// LoginForm.stories.js
// LoginForm.stories.ts
import { userEvent, within } from '@storybook/testing-library';
import { expect } from '@storybook/jest';
import LoginForm from './LoginForm.vue';
import { Meta, StoryFn } from '@storybook/vue3';
@ -31,14 +33,19 @@ FilledForm.play = async ({ canvasElement }) => {
// Starts querying the component from its root element
const canvas = within(canvasElement);
await userEvent.type(canvas.getByTestId('email'), 'email@provider.com', {
delay: 100,
});
await userEvent.type(canvas.getByTestId('password'), 'a-random-password', {
delay: 100,
});
// 👇 Simulate interactions with the component
await userEvent.type(canvas.getByTestId('email'), 'email@provider.com');
await userEvent.type(canvas.getByTestId('password'), 'a-random-password');
// See https://storybook.js.org/docs/vue/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
await userEvent.click(canvas.getByRole('button'));
// 👇 Assert DOM structure
await expect(
canvas.getByText(
'Everything is perfect. Your account is ready and we should probably get you started!'
)
).toBeInTheDocument();
};
```
```

View File

@ -33,4 +33,4 @@ DelayedStory.play = async () => {
delay: 100,
});
};
```
```

View File

@ -31,4 +31,4 @@ const Template = (args) => ({
}}>
{Template.bind({})}
</Story>
```
```

View File

@ -7,4 +7,4 @@ import { setGlobalConfig } from '@storybook/testing-vue';
import * as globalStorybookConfig from './.storybook/preview';
setGlobalConfig(globalStorybookConfig);
```
```

View File

@ -7,4 +7,4 @@ import { setGlobalConfig } from '@storybook/testing-vue3';
import * as globalStorybookConfig from './.storybook/preview';
setGlobalConfig(globalStorybookConfig);
```
```

View File

@ -11,7 +11,7 @@ Storybook uses the generic term arguments (args for short) when talking about Re
A components stories are defined in a story file that lives alongside the component file. The story file is for development-only, and it won't be included in your production bundle.
```
Button.vue | js | ts | jsx | tsx
Button.js | ts | jsx | tsx | vue | svelte
Button.stories.js | ts | jsx | tsx | mdx
```