mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
Merge branch '16052-index-server-story-sort' of github.com:storybookjs/storybook into 16052-index-server-story-sort
This commit is contained in:
commit
db33a396fd
@ -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') },
|
||||
})),
|
||||
};
|
||||
|
@ -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']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user