Emit STORY_PREPARED in docs mode

This commit is contained in:
Tom Coleman 2021-09-19 15:07:12 +10:00
parent 2c6b069187
commit 9553c585dd
2 changed files with 24 additions and 11 deletions

View File

@ -452,6 +452,19 @@ describe('PreviewWeb', () => {
expect(preview.view.prepareForDocs).toHaveBeenCalled();
});
it('emits STORY_PREPARED', async () => {
document.location.search = '?id=component-one--a&viewMode=docs';
await new PreviewWeb({ importFn, fetchStoryIndex }).initialize({ getProjectAnnotations });
expect(mockChannel.emit).toHaveBeenCalledWith(Events.STORY_PREPARED, {
id: 'component-one--a',
parameters: { __isArgsStory: false, docs: { container: expect.any(Function) } },
initialArgs: { foo: 'a' },
argTypes: { foo: { name: 'foo', type: { name: 'string' } } },
args: { foo: 'a' },
});
});
it('render the docs container with the correct context', async () => {
document.location.search = '?id=component-one--a&viewMode=docs';

View File

@ -307,6 +307,17 @@ export class PreviewWeb<TFramework extends AnyFramework> {
this.previousSelection = selection;
this.previousStory = story;
const { parameters, initialArgs, argTypes, args } = this.storyStore.getStoryContext(story);
if (FEATURES?.storyStoreV7) {
this.channel.emit(Events.STORY_PREPARED, {
id: story.id,
parameters,
initialArgs,
argTypes,
args,
});
}
if (selection.viewMode === 'docs' || story.parameters.docsOnly) {
await this.renderDocs({ story });
} else {
@ -416,17 +427,6 @@ export class PreviewWeb<TFramework extends AnyFramework> {
const initialRender = async () => {
const storyContext = this.storyStore.getStoryContext(story);
const { parameters, initialArgs, argTypes, args } = storyContext;
if (FEATURES?.storyStoreV7) {
this.channel.emit(Events.STORY_PREPARED, {
id,
parameters,
initialArgs,
argTypes,
args,
});
}
const viewMode = element === this.view.storyRoot() ? 'story' : 'docs';
const loadedContext = await applyLoaders({
...storyContext,