mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
69 lines
2.4 KiB
TypeScript
69 lines
2.4 KiB
TypeScript
import type {
|
|
AnyFramework,
|
|
LegacyStoryAnnotationsOrFn,
|
|
StoryId,
|
|
StoryAnnotations,
|
|
StoryFn,
|
|
ArgTypes,
|
|
} from '@storybook/csf';
|
|
import { storyNameFromExport, toId } from '@storybook/csf';
|
|
import { dedent } from 'ts-dedent';
|
|
import { logger } from '@storybook/client-logger';
|
|
import deprecate from 'util-deprecate';
|
|
import type { NormalizedComponentAnnotations, NormalizedStoryAnnotations } from '../types';
|
|
import { normalizeInputTypes } from './normalizeInputTypes';
|
|
|
|
const deprecatedStoryAnnotation = dedent`
|
|
CSF .story annotations deprecated; annotate story functions directly:
|
|
- StoryFn.story.name => StoryFn.storyName
|
|
- StoryFn.story.(parameters|decorators) => StoryFn.(parameters|decorators)
|
|
See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#hoisted-csf-annotations for details and codemod.
|
|
`;
|
|
|
|
const deprecatedStoryAnnotationWarning = deprecate(() => {}, deprecatedStoryAnnotation);
|
|
|
|
export function normalizeStory<TFramework extends AnyFramework>(
|
|
key: StoryId,
|
|
storyAnnotations: LegacyStoryAnnotationsOrFn<TFramework>,
|
|
meta: NormalizedComponentAnnotations<TFramework>
|
|
): NormalizedStoryAnnotations<TFramework> {
|
|
const storyObject: StoryAnnotations<TFramework> = storyAnnotations;
|
|
const userStoryFn: StoryFn<TFramework> | null =
|
|
typeof storyAnnotations === 'function' ? storyAnnotations : null;
|
|
|
|
const { story } = storyObject;
|
|
if (story) {
|
|
logger.debug('deprecated story', story);
|
|
deprecatedStoryAnnotationWarning();
|
|
}
|
|
|
|
const exportName = storyNameFromExport(key);
|
|
const name =
|
|
(typeof storyObject !== 'function' && storyObject.name) ||
|
|
storyObject.storyName ||
|
|
story?.name ||
|
|
exportName;
|
|
const decorators = [...(storyObject.decorators || []), ...(story?.decorators || [])];
|
|
const parameters = { ...story?.parameters, ...storyObject.parameters };
|
|
const args = { ...story?.args, ...storyObject.args };
|
|
const argTypes = { ...(story?.argTypes as ArgTypes), ...(storyObject.argTypes as ArgTypes) };
|
|
const loaders = [...(storyObject.loaders || []), ...(story?.loaders || [])];
|
|
const { render, play } = storyObject;
|
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
const id = parameters.__id || toId(meta.id, exportName);
|
|
return {
|
|
moduleExport: storyAnnotations,
|
|
id,
|
|
name,
|
|
decorators,
|
|
parameters,
|
|
args,
|
|
argTypes: normalizeInputTypes(argTypes),
|
|
loaders,
|
|
...(render && { render }),
|
|
...(userStoryFn && { userStoryFn }),
|
|
...(play && { play }),
|
|
};
|
|
}
|