Allow "declaring" stories with story={}

This commit is contained in:
Tom Coleman 2023-01-20 17:50:38 +11:00
parent fe32ad3aae
commit ba5f3f166b
3 changed files with 40 additions and 5 deletions

View File

@ -11,13 +11,13 @@ overhauled and improved in 7.0, and the legacy mode is now deprecated and will b
removed in 8.0.
<Canvas>
<Story name="Primary" story={Csf.Primary} />
<Story story={Csf.Primary} />
</Canvas>
<ArgsTable story="^" />
<Canvas>
<Story name="Secondary" story={Csf.Secondary} />
<Story story={Csf.Secondary} />
</Canvas>
## Duplicate stories

View File

@ -32,6 +32,10 @@ type StoryRefProps = {
* @deprecated Use of={storyExport} instead
*/
id?: string;
/**
* @deprecated Use of={storyExport} and define the story in the CSF file
*/
story?: StoryAnnotations;
/**
* Pass the export defining a story to render that story
*
@ -83,11 +87,22 @@ type StoryParameters = {
export type StoryProps = (StoryDefProps | StoryRefProps) & StoryParameters;
export const getStoryId = (props: StoryProps, context: DocsContextProps): StoryId => {
const { id, of, meta } = props as StoryRefProps;
const { id, of, meta, story } = props as StoryRefProps;
if (of) {
// The `story={moduleExports}` prop is a legacy prop for stories defined in CSF files, but
// "declared" in MDX files (the CSF file has no meta export or doesn't match the stories glob).
// In this case, the `.stories.mdx` file will have actually ended up declaring the story
// so we can reference the story just the same as an `of={moduleExports}` would have.
// See https://github.com/storybookjs/mdx2-csf/issues/3
if (story) {
deprecate(
'The `story` prop is deprecated, please export your stories from CSF files and reference them with `of={}`.'
);
}
if (of || story) {
if (meta) context.referenceMeta(meta, false);
const resolved = context.resolveOf(of, ['story']);
const resolved = context.resolveOf(of || story, ['story']);
return resolved.story.id;
}

View File

@ -0,0 +1,20 @@
import type { Meta, StoryObj } from '@storybook/react';
import { Story as StoryBlock } from '../Story';
import * as ButtonStories from '../../examples/Button.stories';
const meta: Meta<typeof StoryBlock> = {
component: StoryBlock,
parameters: {
relativeCsfPaths: ['../examples/Button.stories'],
},
};
export default meta;
type Story = StoryObj<typeof meta>;
export const StoryExport: Story = {
args: {
story: ButtonStories.Primary,
},
};