storybook/docs/snippets/vue/my-component-play-function-composition.ts.mdx
2022-09-15 00:54:47 +01:00

58 lines
1.6 KiB
Plaintext

```ts
// MyComponent.stories.ts
// import type { Meta, Story } from '@storybook/vue3'; for Vue 3
import type { Meta, Story } from '@storybook/vue';
import { screen, userEvent } from '@storybook/testing-library';
import MyComponent from './MyComponent.vue';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'MyComponent',
component: MyComponent,
} as Meta<typeof MyComponent>;
/*
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
* See https://storybook.js.org/docs/7.0/vue/api/csf
* to learn how to use render functions.
*/
export const FirstStory: Story = {
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
play: async () => {
userEvent.type(screen.getByTestId('an-element'), 'example-value');
},
};
export const SecondStory: Story = {
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
play: async () => {
await userEvent.type(screen.getByTestId('other-element'), 'another value');
},
};
export const CombinedStories: Story = {
render: () => ({
components: { MyComponent },
template: '<MyComponent />',
}),
play: async () => {
// Runs the FirstStory and Second story play function before running this story's play function
await FirstStory.play();
await SecondStory.play();
await userEvent.type(screen.getByTestId('another-element'), 'random value');
},
};
```