mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
Make StoryFn accept Cmp or Props in all frameworks
This commit is contained in:
parent
be6fb1ffb6
commit
8c439a8e38
@ -25,7 +25,9 @@ export type Meta<CmpOrArgs = Args> = CmpOrArgs extends SvelteComponentTyped<infe
|
||||
*
|
||||
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
|
||||
*/
|
||||
export type StoryFn<TArgs = Args> = AnnotatedStoryFn<SvelteFramework, TArgs>;
|
||||
export type StoryFn<TCmpOrArgs = Args> = TCmpOrArgs extends SvelteComponentTyped<infer Props>
|
||||
? AnnotatedStoryFn<SvelteFramework, Props>
|
||||
: AnnotatedStoryFn<SvelteFramework, TCmpOrArgs>;
|
||||
|
||||
/**
|
||||
* Story function that represents a CSFv3 component example.
|
||||
|
@ -19,19 +19,20 @@ export type { Args, ArgTypes, Parameters, StoryContext } from '@storybook/types'
|
||||
*
|
||||
* @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
|
||||
*/
|
||||
export type Meta<TCmpOrArgs = Args> = TCmpOrArgs extends Component<any>
|
||||
? ComponentAnnotations<
|
||||
export type Meta<TCmpOrArgs = Args> = ComponentAnnotations<
|
||||
VueFramework,
|
||||
unknown extends ComponentProps<TCmpOrArgs> ? TCmpOrArgs : ComponentProps<TCmpOrArgs>
|
||||
>
|
||||
: ComponentAnnotations<VueFramework, TCmpOrArgs>;
|
||||
ComponentPropsOrProps<TCmpOrArgs>
|
||||
>;
|
||||
|
||||
/**
|
||||
* Story function that represents a CSFv2 component example.
|
||||
*
|
||||
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
|
||||
*/
|
||||
export type StoryFn<TArgs = Args> = AnnotatedStoryFn<VueFramework, TArgs>;
|
||||
export type StoryFn<TCmpOrArgs = Args> = AnnotatedStoryFn<
|
||||
VueFramework,
|
||||
ComponentPropsOrProps<TCmpOrArgs>
|
||||
>;
|
||||
|
||||
/**
|
||||
* Story function that represents a CSFv3 component example.
|
||||
@ -43,8 +44,8 @@ export type StoryObj<TMetaOrCmpOrArgs = Args> = TMetaOrCmpOrArgs extends {
|
||||
component?: infer C;
|
||||
args?: infer DefaultArgs;
|
||||
}
|
||||
? TMetaOrCmpOrArgs extends Component<any>
|
||||
? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
|
||||
? TMetaOrCmpOrArgs extends Component<any> // needed because StoryObj<typeof Button> falls into this branch, see test
|
||||
? StoryAnnotations<VueFramework, ComponentPropsOrProps<TMetaOrCmpOrArgs>>
|
||||
: Simplify<ComponentProps<C> & ArgsFromMeta<VueFramework, TMetaOrCmpOrArgs>> extends infer TArgs
|
||||
? StoryAnnotations<
|
||||
VueFramework,
|
||||
@ -52,9 +53,7 @@ export type StoryObj<TMetaOrCmpOrArgs = Args> = TMetaOrCmpOrArgs extends {
|
||||
SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>>
|
||||
>
|
||||
: never
|
||||
: TMetaOrCmpOrArgs extends Component<any>
|
||||
? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
|
||||
: StoryAnnotations<VueFramework, TMetaOrCmpOrArgs>;
|
||||
: StoryAnnotations<VueFramework, ComponentPropsOrProps<TMetaOrCmpOrArgs>>;
|
||||
|
||||
type ComponentProps<C> = C extends ExtendedVue<any, any, any, any, infer P>
|
||||
? P
|
||||
@ -62,6 +61,12 @@ type ComponentProps<C> = C extends ExtendedVue<any, any, any, any, infer P>
|
||||
? P
|
||||
: unknown;
|
||||
|
||||
type ComponentPropsOrProps<TCmpOrArgs> = TCmpOrArgs extends Component<any>
|
||||
? unknown extends ComponentProps<TCmpOrArgs>
|
||||
? TCmpOrArgs
|
||||
: ComponentProps<TCmpOrArgs>
|
||||
: TCmpOrArgs;
|
||||
|
||||
/**
|
||||
* @deprecated Use `StoryFn` instead.
|
||||
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
|
||||
|
@ -3,11 +3,11 @@ 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';
|
||||
import Button from './__tests__/Button.vue';
|
||||
import DecoratorTsVue from './__tests__/Decorator.vue';
|
||||
import Decorator2TsVue from './__tests__/Decorator2.vue';
|
||||
|
||||
describe('Meta', () => {
|
||||
test('Generic parameter of Meta can be a component', () => {
|
||||
|
@ -17,16 +17,20 @@ import type { VueFramework } from './types';
|
||||
*
|
||||
* @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
|
||||
*/
|
||||
export type Meta<TCmpOrArgs = Args> = TCmpOrArgs extends ComponentOptions<infer Props>
|
||||
? ComponentAnnotations<VueFramework, unknown extends Props ? TCmpOrArgs : Props>
|
||||
: ComponentAnnotations<VueFramework, TCmpOrArgs>;
|
||||
export type Meta<TCmpOrArgs = Args> = ComponentAnnotations<
|
||||
VueFramework,
|
||||
ComponentPropsOrProps<TCmpOrArgs>
|
||||
>;
|
||||
|
||||
/**
|
||||
* Story function that represents a CSFv2 component example.
|
||||
*
|
||||
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
|
||||
*/
|
||||
export type StoryFn<TArgs = Args> = AnnotatedStoryFn<VueFramework, TArgs>;
|
||||
export type StoryFn<TCmpOrArgs = Args> = AnnotatedStoryFn<
|
||||
VueFramework,
|
||||
ComponentPropsOrProps<TCmpOrArgs>
|
||||
>;
|
||||
|
||||
/**
|
||||
* Story function that represents a CSFv3 component example.
|
||||
@ -47,15 +51,20 @@ export type StoryObj<TMetaOrCmpOrArgs = Args> = TMetaOrCmpOrArgs extends {
|
||||
SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>>
|
||||
>
|
||||
: never
|
||||
: TMetaOrCmpOrArgs extends ConcreteComponent<any>
|
||||
? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
|
||||
: StoryAnnotations<VueFramework, TMetaOrCmpOrArgs>;
|
||||
: StoryAnnotations<VueFramework, ComponentPropsOrProps<TMetaOrCmpOrArgs>>;
|
||||
|
||||
type ComponentProps<C> = C extends ComponentOptions<infer P>
|
||||
? P
|
||||
: C extends FunctionalComponent<infer P>
|
||||
? P
|
||||
: unknown;
|
||||
|
||||
type ComponentPropsOrProps<TCmpOrArgs> = TCmpOrArgs extends ConcreteComponent<any>
|
||||
? unknown extends ComponentProps<TCmpOrArgs>
|
||||
? TCmpOrArgs
|
||||
: ComponentProps<TCmpOrArgs>
|
||||
: TCmpOrArgs;
|
||||
|
||||
/**
|
||||
* @deprecated Use `StoryFn` instead.
|
||||
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
|
||||
|
Loading…
x
Reference in New Issue
Block a user