mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
CSF tools: Fix ID generation bug
This commit is contained in:
parent
44a1ad822c
commit
6bfa81e9a1
@ -81,7 +81,7 @@ describe('csf extract', () => {
|
||||
title: foo/bar
|
||||
includeStories: !<tag:yaml.org,2002:js/regexp> /^Include.*/
|
||||
stories:
|
||||
- id: foo-bar--includea
|
||||
- id: foo-bar--include-a
|
||||
name: IncludeA
|
||||
`);
|
||||
});
|
||||
|
@ -5,7 +5,7 @@ import { parse } from '@babel/parser';
|
||||
import generate from '@babel/generator';
|
||||
import * as t from '@babel/types';
|
||||
import traverse, { Node } from '@babel/traverse';
|
||||
import { toId, isExportStory } from '@storybook/csf';
|
||||
import { toId, isExportStory, storyNameFromExport } from '@storybook/csf';
|
||||
|
||||
const logger = console;
|
||||
interface Meta {
|
||||
@ -131,10 +131,10 @@ export class CsfFile {
|
||||
// default export can come at any point in the file, so we do this post processing last
|
||||
self._stories =
|
||||
self._meta && self._meta.title
|
||||
? Object.entries(self._stories).reduce((acc, [name, story]) => {
|
||||
if (isExportStory(name, self._meta)) {
|
||||
const id = toId(self._meta.title, name);
|
||||
acc[name] = { ...story, id, parameters: { ...story.parameters, __id: id } };
|
||||
? Object.entries(self._stories).reduce((acc, [key, story]) => {
|
||||
if (isExportStory(key, self._meta)) {
|
||||
const id = toId(self._meta.title, storyNameFromExport(key));
|
||||
acc[key] = { ...story, id, parameters: { ...story.parameters, __id: id } };
|
||||
}
|
||||
return acc;
|
||||
}, {} as Record<string, Story>)
|
||||
|
Loading…
x
Reference in New Issue
Block a user