Merge branch '16052-index-server-story-sort' of github.com:storybookjs/storybook into 16052-index-server-story-sort

This commit is contained in:
Michael Shilman 2021-09-21 21:48:37 +08:00
commit db33a396fd
2 changed files with 5 additions and 2 deletions

View File

@ -102,6 +102,7 @@ describe('ClientApi', () => {
const store = {
processCSFFileWithCache: jest.fn(() => ({ meta: { title: 'title' } })),
storyFromCSFFile: jest.fn(({ storyId }) => ({
id: storyId,
parameters: { fileName: storyId.split('-')[0].replace('kind', 'file') },
})),
};

View File

@ -83,8 +83,10 @@ export class StoryStoreFacade<TFramework extends AnyFramework> {
// NOTE: the sortStoriesV6 version returns the v7 data format. confusing but more convenient!
const sortedV7 = sortStoriesV6(sortableV6, storySortParameter, fileNameOrder);
const stories = sortedV7.reduce((acc, s) => {
// FIXME: we should be able to return `s` but for some reason
// storyshots needs the full story object
// We use the original entry we stored in `this.stories` because it is possible that the CSF file itself
// exports a `parameters.fileName` which can be different and mess up our `importFn`.
// In fact, in Storyshots there is a Jest transformer that does exactly that.
// NOTE: this doesn't actually change the story object, just the index.
acc[s.id] = this.stories[s.id];
return acc;
}, {} as StoryIndex['stories']);