diff --git a/app/vue3/src/client/preview/index.ts b/app/vue3/src/client/preview/index.ts index 3353269b194..8dfacbc5713 100644 --- a/app/vue3/src/client/preview/index.ts +++ b/app/vue3/src/client/preview/index.ts @@ -14,8 +14,6 @@ import { IStorybookSection, StoryFnVueReturnType } from './types'; import render, { storybookApp } from './render'; -const PROPS = 'STORYBOOK_PROPS'; - /* This normalizes a functional component into a render method in ComponentOptions. @@ -36,31 +34,12 @@ function prepare(story: StoryFnVueReturnType, innerStory?: ConcreteComponent): C // Normalize so we can always spread an object ...normalizeFunctionalComponent(story), components: { story: innerStory }, - props: innerStory.props, - inject: { - props: { - from: PROPS, - default: null, - }, - }, - provide() { - return { - [PROPS]: this.props || this.$props, - }; - }, }; } return { - props: story.props, - inject: { - props: { - from: PROPS, - default: null, - }, - }, render() { - return h(story, this.props || this.$props); + return h(story); }, }; } diff --git a/app/vue3/src/client/preview/render.ts b/app/vue3/src/client/preview/render.ts index 3a825d00ee8..6a9cf7e1e64 100644 --- a/app/vue3/src/client/preview/render.ts +++ b/app/vue3/src/client/preview/render.ts @@ -1,10 +1,8 @@ -import type { Args } from '@storybook/addons'; import dedent from 'ts-dedent'; import { createApp, h, shallowRef, ComponentPublicInstance } from 'vue'; import { RenderContext, StoryFnVueReturnType } from './types'; const activeStoryComponent = shallowRef(null); -const activeProps = shallowRef({}); let root: ComponentPublicInstance | null = null; @@ -18,7 +16,7 @@ export const storybookApp = createApp({ return () => { if (!activeStoryComponent.value) throw new Error('No Vue 3 Story available. Was it set correctly?'); - return h(activeStoryComponent.value, activeProps.value); + return h(activeStoryComponent.value); }; }, }); @@ -51,7 +49,6 @@ export default function render({ showMain(); activeStoryComponent.value = element; - activeProps.value = args; if (!root) { root = storybookApp.mount('#root'); diff --git a/examples/vue-3-cli/src/stories/Button.stories.js b/examples/vue-3-cli/src/stories/Button.stories.js index e6314882e38..ac39a1fde37 100644 --- a/examples/vue-3-cli/src/stories/Button.stories.js +++ b/examples/vue-3-cli/src/stories/Button.stories.js @@ -10,10 +10,15 @@ export default { }, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyButton }, - template: '', + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + return { args }; + }, + // And then the `args` are bound to your component with `v-bind="args"` + template: '', }); export const Primary = Template.bind({}); diff --git a/examples/vue-3-cli/src/stories/Button.vue b/examples/vue-3-cli/src/stories/Button.vue index 0f908087455..9f844977c19 100644 --- a/examples/vue-3-cli/src/stories/Button.vue +++ b/examples/vue-3-cli/src/stories/Button.vue @@ -20,7 +20,6 @@ export default { }, size: { type: String, - default: 'medium', validator: function (value) { return ['small', 'medium', 'large'].indexOf(value) !== -1; }, @@ -40,7 +39,7 @@ export default { 'storybook-button': true, 'storybook-button--primary': props.primary, 'storybook-button--secondary': !props.primary, - [`storybook-button--${props.size}`]: true, + [`storybook-button--${props.size || 'medium'}`]: true, })), style: computed(() => ({ backgroundColor: props.backgroundColor, diff --git a/examples/vue-3-cli/src/stories/DynamicHeading.stories.ts b/examples/vue-3-cli/src/stories/DynamicHeading.stories.ts index 2d3dbedea78..a68c4f22116 100644 --- a/examples/vue-3-cli/src/stories/DynamicHeading.stories.ts +++ b/examples/vue-3-cli/src/stories/DynamicHeading.stories.ts @@ -24,10 +24,11 @@ export default { /* You can return a Vue 3 functional component from a Story. - Make sure to specify the `props` the component expects to receive! + Make sure to pass the `args` the component expects to receive as the props! */ const Template: Story = (args, { argTypes }) => { - const component: FunctionalComponent = (props) => h(DynamicHeading, props, 'Hello World!'); + const component: FunctionalComponent = () => + h(DynamicHeading, args as Props, 'Hello World!'); component.props = Object.keys(argTypes); return component; }; @@ -38,12 +39,12 @@ One.args = { }; One.decorators = [ // Vue 3 "ComponentOptions" component as decorator - () => ({ + // Story Args can be destructured from the 2nd argument (`context`) to a decorator + (storyFn, { args }) => ({ // The `story` component is always injected into a decorator template: '
', data() { - // Story Args can be accessed on `this.props` - switch (this.props.level) { + switch (args.level) { case 1: return { activeColor: 'purple' }; case 2: diff --git a/examples/vue-3-cli/src/stories/GlobalUsage.stories.js b/examples/vue-3-cli/src/stories/GlobalUsage.stories.js index fbb3c7152c7..9bdc4aa31b7 100644 --- a/examples/vue-3-cli/src/stories/GlobalUsage.stories.js +++ b/examples/vue-3-cli/src/stories/GlobalUsage.stories.js @@ -6,10 +6,15 @@ export default { argTypes: {}, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { GlobalUsage }, - template: '', + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + return { args }; + }, + // And then the `args` are bound to your component with `v-bind="args"` + template: '', }); export const Primary = Template.bind({}); diff --git a/examples/vue-3-cli/src/stories/Header.stories.js b/examples/vue-3-cli/src/stories/Header.stories.js index 5035bafc9af..eb7826516b6 100644 --- a/examples/vue-3-cli/src/stories/Header.stories.js +++ b/examples/vue-3-cli/src/stories/Header.stories.js @@ -5,9 +5,15 @@ export default { component: MyHeader, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyHeader }, + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + // Story args can be spread into the returned object + return { ...args }; + }, + // Then, the spread values can be accessed directly in the template template: '', }); diff --git a/examples/vue-3-cli/src/stories/OverrideArgs.stories.js b/examples/vue-3-cli/src/stories/OverrideArgs.stories.js index 3555d47daa1..0938f82089e 100644 --- a/examples/vue-3-cli/src/stories/OverrideArgs.stories.js +++ b/examples/vue-3-cli/src/stories/OverrideArgs.stories.js @@ -26,16 +26,19 @@ export default { }, }; -const Template = (args, { argTypes }) => { +const Template = (args) => { + // Individual properties can be overridden by spreading the args + // and the replacing the key-values that need to be updated + args = { ...args, icon: icons[args.icon] }; // eslint-disable-line no-param-reassign return { - props: Object.keys(argTypes), + // Components used in your story `template` are defined in the `components` object components: { OverrideArgs }, - template: '', - setup(props) { - return { - icon: icons[props.icon], - }; + // Updated `args` need to be mapped into the template through the `setup()` method + setup() { + return { args }; }, + // And then the `args` are bound to your component with `v-bind="args"` + template: '', }; }; diff --git a/examples/vue-3-cli/src/stories/Page.stories.js b/examples/vue-3-cli/src/stories/Page.stories.js index 6d49b2543d3..8105bb165ce 100644 --- a/examples/vue-3-cli/src/stories/Page.stories.js +++ b/examples/vue-3-cli/src/stories/Page.stories.js @@ -6,11 +6,15 @@ export default { component: MyPage, }; -// If your props are optional and don't always exist in argTypes, -// you can specify them explicitly as you normally specify props -const Template = () => ({ - props: ['user'], +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyPage }, + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + // Story args can be mapped to keys in the returned object + return { user: args.user }; + }, + // Then, those values can be accessed directly in the template template: '', }); diff --git a/examples/vue-3-cli/src/stories/ThemeDecorator.stories.js b/examples/vue-3-cli/src/stories/ThemeDecorator.stories.js index a4f90893992..178fa58c3e7 100644 --- a/examples/vue-3-cli/src/stories/ThemeDecorator.stories.js +++ b/examples/vue-3-cli/src/stories/ThemeDecorator.stories.js @@ -23,10 +23,15 @@ export default { decorators: [withTheme], }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyButton }, - template: '', + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + return { args }; + }, + // And then the `args` are bound to your component with `v-bind="args"` + template: '', }); export const ButtonWithTheme = Template.bind({}); diff --git a/lib/cli/src/frameworks/vue3/Button.stories.js b/lib/cli/src/frameworks/vue3/Button.stories.js index e6314882e38..ac39a1fde37 100644 --- a/lib/cli/src/frameworks/vue3/Button.stories.js +++ b/lib/cli/src/frameworks/vue3/Button.stories.js @@ -10,10 +10,15 @@ export default { }, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyButton }, - template: '', + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + return { args }; + }, + // And then the `args` are bound to your component with `v-bind="args"` + template: '', }); export const Primary = Template.bind({}); diff --git a/lib/cli/src/frameworks/vue3/Button.vue b/lib/cli/src/frameworks/vue3/Button.vue index ead2b459446..664f48cb3f0 100644 --- a/lib/cli/src/frameworks/vue3/Button.vue +++ b/lib/cli/src/frameworks/vue3/Button.vue @@ -20,7 +20,6 @@ export default { }, size: { type: String, - default: 'medium', validator: function (value) { return ['small', 'medium', 'large'].indexOf(value) !== -1; }, @@ -39,7 +38,7 @@ export default { 'storybook-button': true, 'storybook-button--primary': props.primary, 'storybook-button--secondary': !props.primary, - [`storybook-button--${props.size}`]: true, + [`storybook-button--${props.size || 'medium'}`]: true, })), style: computed(() => ({ backgroundColor: props.backgroundColor, diff --git a/lib/cli/src/frameworks/vue3/Header.stories.js b/lib/cli/src/frameworks/vue3/Header.stories.js index ea0235b2628..eb7826516b6 100644 --- a/lib/cli/src/frameworks/vue3/Header.stories.js +++ b/lib/cli/src/frameworks/vue3/Header.stories.js @@ -5,9 +5,15 @@ export default { component: MyHeader, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyHeader }, + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + // Story args can be spread into the returned object + return { ...args }; + }, + // Then, the spread values can be accessed directly in the template template: '', }); @@ -17,4 +23,6 @@ LoggedIn.args = { }; export const LoggedOut = Template.bind({}); -LoggedOut.args = {}; +LoggedOut.args = { + user: null, +}; diff --git a/lib/cli/src/frameworks/vue3/Page.stories.js b/lib/cli/src/frameworks/vue3/Page.stories.js index 4ca7c3c9b39..8105bb165ce 100644 --- a/lib/cli/src/frameworks/vue3/Page.stories.js +++ b/lib/cli/src/frameworks/vue3/Page.stories.js @@ -6,9 +6,15 @@ export default { component: MyPage, }; -const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), +const Template = (args) => ({ + // Components used in your story `template` are defined in the `components` object components: { MyPage }, + // The story's `args` need to be mapped into the template through the `setup()` method + setup() { + // Story args can be mapped to keys in the returned object + return { user: args.user }; + }, + // Then, those values can be accessed directly in the template template: '', }); @@ -18,6 +24,4 @@ LoggedIn.args = { }; export const LoggedOut = Template.bind({}); -LoggedOut.args = { - ...HeaderStories.LoggedOut.args, -}; +LoggedOut.args = {};