Add story | docs tags to all entries

This commit is contained in:
Tom Coleman 2022-10-26 16:41:48 +11:00
parent 0385965b72
commit 3a1a90a98e
3 changed files with 8 additions and 10 deletions

View File

@ -205,7 +205,7 @@ export class StoryStoreFacade<TFramework extends AnyFramework> {
title, title,
importPath: fileName, importPath: fileName,
componentId, componentId,
tags: [...(storyExport.tags || []), ...(defaultExport.tags || [])], tags: [...(storyExport.tags || []), ...(defaultExport.tags || []), 'story'],
}; };
} }
}); });
@ -224,8 +224,9 @@ export class StoryStoreFacade<TFramework extends AnyFramework> {
title, title,
name, name,
importPath: fileName, importPath: fileName,
storiesImports: [],
componentId, componentId,
tags: [...(defaultExport.tags || []), 'docs'],
storiesImports: [],
}; };
} }
} }

View File

@ -54,7 +54,7 @@ export function prepareStory<TFramework extends AnyFramework>(
const { moduleExport, id, name } = storyAnnotations; const { moduleExport, id, name } = storyAnnotations;
const { title } = componentAnnotations; const { title } = componentAnnotations;
const tags = [...(storyAnnotations.tags || []), ...(componentAnnotations.tags || [])]; const tags = [...(storyAnnotations.tags || []), ...(componentAnnotations.tags || []), 'story'];
const parameters: Parameters = combineParameters( const parameters: Parameters = combineParameters(
projectAnnotations.parameters, projectAnnotations.parameters,

View File

@ -9,7 +9,7 @@ export default {
decorators: [ decorators: [
(storyFn: PartialStoryFn, context: StoryContext) => { (storyFn: PartialStoryFn, context: StoryContext) => {
return storyFn({ return storyFn({
args: { object: context.tags }, args: { object: { tags: context.tags } },
}); });
}, },
], ],
@ -19,11 +19,8 @@ export const Inheritance = {
tags: ['story-one', 'story-two'], tags: ['story-one', 'story-two'],
play: async ({ canvasElement }: PlayFunctionContext) => { play: async ({ canvasElement }: PlayFunctionContext) => {
const canvas = within(canvasElement); const canvas = within(canvasElement);
await expect(JSON.parse(canvas.getByTestId('pre').innerText)).toEqual([ await expect(JSON.parse(canvas.getByTestId('pre').innerText)).toEqual({
'story-one', tags: ['story-one', 'story-two', 'component-one', 'component-two', 'story'],
'story-two', });
'component-one',
'component-two',
]);
}, },
}; };