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

View File

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

View File

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