mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Add story
| docs
tags to all entries
This commit is contained in:
parent
0385965b72
commit
3a1a90a98e
@ -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: [],
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -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,
|
||||
|
@ -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'],
|
||||
});
|
||||
},
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user