-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19602 from storybookjs/future/CSF3-vue3
Vue3: Improve CSF3 types
- Loading branch information
Showing
13 changed files
with
496 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script setup lang="ts"> | ||
defineProps<{ disabled: boolean; label: string }>(); | ||
const emit = defineEmits<{ | ||
(e: 'myChangeEvent', id: number): void; | ||
(e: 'myClickEvent', id: number): void; | ||
}>(); | ||
</script> | ||
|
||
<template> | ||
<button :disabled="disabled" @change="emit('myChangeEvent', 0)" @click="emit('myClickEvent', 0)"> | ||
{{ label }} | ||
</button> | ||
</template> | ||
|
||
<style scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script setup lang="ts"> | ||
defineProps<{ decoratorArg: string }>(); | ||
</script> | ||
|
||
<template> | ||
Decorator: {decoratorArg} | ||
<slot></slot> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script setup lang="ts"> | ||
defineProps<{ decoratorArg2: string }>(); | ||
</script> | ||
|
||
<template> | ||
Decorator: {decoratorArg2} | ||
<slot></slot> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
import { satisfies } from '@storybook/core-common'; | ||
import { ComponentAnnotations, StoryAnnotations } from '@storybook/csf'; | ||
import { expectTypeOf } from 'expect-type'; | ||
import { SetOptional } from 'type-fest'; | ||
import { ComponentOptions, FunctionalComponent, h } from 'vue'; | ||
import Button from './__tests__/Button.vue'; | ||
import Decorator2TsVue from './__tests__/Decorator2.vue'; | ||
import DecoratorTsVue from './__tests__/Decorator.vue'; | ||
import { DecoratorFn, Meta, StoryObj } from './public-types'; | ||
import { VueFramework } from './types'; | ||
|
||
describe('Meta', () => { | ||
test('Generic parameter of Meta can be a component', () => { | ||
const meta: Meta<typeof Button> = { | ||
component: Button, | ||
args: { label: 'good', disabled: false }, | ||
}; | ||
|
||
expectTypeOf(meta).toEqualTypeOf< | ||
ComponentAnnotations< | ||
VueFramework, | ||
{ | ||
readonly disabled: boolean; | ||
readonly label: string; | ||
onMyChangeEvent?: (id: number) => any; | ||
onMyClickEvent?: (id: number) => any; | ||
} | ||
> | ||
>(); | ||
}); | ||
|
||
test('Generic parameter of Meta can be the props of the component', () => { | ||
const meta: Meta<{ disabled: boolean; label: string }> = { | ||
component: Button, | ||
args: { label: 'good', disabled: false }, | ||
}; | ||
|
||
expectTypeOf(meta).toEqualTypeOf< | ||
ComponentAnnotations<VueFramework, { disabled: boolean; label: string }> | ||
>(); | ||
}); | ||
|
||
test('Events are inferred from component', () => { | ||
const meta: Meta<typeof Button> = { | ||
component: Button, | ||
args: { | ||
label: 'good', | ||
disabled: false, | ||
onMyChangeEvent: (value) => { | ||
expectTypeOf(value).toEqualTypeOf<number>(); | ||
}, | ||
}, | ||
render: (args) => { | ||
return h(Button, { | ||
...args, | ||
onMyChangeEvent: (value) => { | ||
expectTypeOf(value).toEqualTypeOf<number>(); | ||
}, | ||
}); | ||
}, | ||
}; | ||
}); | ||
}); | ||
|
||
describe('StoryObj', () => { | ||
type ButtonProps = { | ||
readonly disabled: boolean; | ||
readonly label: string; | ||
onMyChangeEvent?: ((id: number) => any) | undefined; | ||
onMyClickEvent?: ((id: number) => any) | undefined; | ||
}; | ||
|
||
test('✅ Required args may be provided partial in meta and the story', () => { | ||
const meta = satisfies<Meta<typeof Button>>()({ | ||
component: Button, | ||
args: { label: 'good' }, | ||
}); | ||
|
||
type Actual = StoryObj<typeof meta>; | ||
type Expected = StoryAnnotations<VueFramework, ButtonProps, SetOptional<ButtonProps, 'label'>>; | ||
expectTypeOf<Actual>().toEqualTypeOf<Expected>(); | ||
}); | ||
|
||
test('❌ The combined shape of meta args and story args must match the required args.', () => { | ||
{ | ||
const meta = satisfies<Meta<typeof Button>>()({ component: Button }); | ||
|
||
type Expected = StoryAnnotations<VueFramework, ButtonProps, ButtonProps>; | ||
expectTypeOf<StoryObj<typeof meta>>().toEqualTypeOf<Expected>(); | ||
} | ||
{ | ||
const meta = satisfies<Meta<typeof Button>>()({ | ||
component: Button, | ||
args: { label: 'good' }, | ||
}); | ||
// @ts-expect-error disabled not provided ❌ | ||
const Basic: StoryObj<typeof meta> = {}; | ||
|
||
type Expected = StoryAnnotations< | ||
VueFramework, | ||
ButtonProps, | ||
SetOptional<ButtonProps, 'label'> | ||
>; | ||
expectTypeOf(Basic).toEqualTypeOf<Expected>(); | ||
} | ||
{ | ||
const meta = satisfies<Meta<{ label: string; disabled: boolean }>>()({ component: Button }); | ||
const Basic: StoryObj<typeof meta> = { | ||
// @ts-expect-error disabled not provided ❌ | ||
args: { label: 'good' }, | ||
}; | ||
|
||
type Expected = StoryAnnotations<VueFramework, ButtonProps, ButtonProps>; | ||
expectTypeOf(Basic).toEqualTypeOf<Expected>(); | ||
} | ||
}); | ||
|
||
test('Component can be used as generic parameter for StoryObj', () => { | ||
expectTypeOf<StoryObj<typeof Button>>().toEqualTypeOf< | ||
StoryAnnotations<VueFramework, ButtonProps> | ||
>(); | ||
}); | ||
}); | ||
|
||
type ThemeData = 'light' | 'dark'; | ||
|
||
type ComponentProps<Component> = Component extends ComponentOptions<infer P> | ||
? P | ||
: Component extends FunctionalComponent<infer P> | ||
? P | ||
: never; | ||
|
||
describe('Story args can be inferred', () => { | ||
test('Correct args are inferred when type is widened for render function', () => { | ||
type Props = ComponentProps<typeof Button> & { theme: ThemeData }; | ||
|
||
const meta = satisfies<Meta<Props>>()({ | ||
component: Button, | ||
args: { disabled: false }, | ||
render: (args) => { | ||
return h('div', [h('div', `Use the theme ${args.theme}`), h(Button, args)]); | ||
}, | ||
}); | ||
|
||
const Basic: StoryObj<typeof meta> = { args: { theme: 'light', label: 'good' } }; | ||
|
||
type Expected = StoryAnnotations<VueFramework, Props, SetOptional<Props, 'disabled'>>; | ||
expectTypeOf(Basic).toEqualTypeOf<Expected>(); | ||
}); | ||
|
||
const withDecorator: DecoratorFn<{ decoratorArg: string }> = ( | ||
storyFn, | ||
{ args: { decoratorArg } } | ||
) => h(DecoratorTsVue, { decoratorArg }, h(storyFn())); | ||
|
||
test('Correct args are inferred when type is widened for decorators', () => { | ||
type Props = ComponentProps<typeof Button> & { decoratorArg: string }; | ||
|
||
const meta = satisfies<Meta<Props>>()({ | ||
component: Button, | ||
args: { disabled: false }, | ||
decorators: [withDecorator], | ||
}); | ||
|
||
const Basic: StoryObj<typeof meta> = { args: { decoratorArg: 'title', label: 'good' } }; | ||
|
||
type Expected = StoryAnnotations<VueFramework, Props, SetOptional<Props, 'disabled'>>; | ||
expectTypeOf(Basic).toEqualTypeOf<Expected>(); | ||
}); | ||
|
||
test('Correct args are inferred when type is widened for multiple decorators', () => { | ||
type Props = ComponentProps<typeof Button> & { decoratorArg: string; decoratorArg2: string }; | ||
|
||
const secondDecorator: DecoratorFn<{ decoratorArg2: string }> = ( | ||
storyFn, | ||
{ args: { decoratorArg2 } } | ||
) => h(Decorator2TsVue, { decoratorArg2 }, h(storyFn())); | ||
|
||
const meta = satisfies<Meta<Props>>()({ | ||
component: Button, | ||
args: { disabled: false }, | ||
decorators: [withDecorator, secondDecorator], | ||
}); | ||
|
||
const Basic: StoryObj<typeof meta> = { | ||
args: { decoratorArg: '', decoratorArg2: '', label: 'good' }, | ||
}; | ||
|
||
type Expected = StoryAnnotations<VueFramework, Props, SetOptional<Props, 'disabled'>>; | ||
expectTypeOf(Basic).toEqualTypeOf<Expected>(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.