CSF tools: Fix ID generation bug

This commit is contained in:
Michael Shilman 2021-06-04 21:42:47 +08:00
parent 44a1ad822c
commit 6bfa81e9a1
2 changed files with 6 additions and 6 deletions

View File

@ -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
`);
});

View File

@ -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>)