mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +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,
|
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: [],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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,
|
||||||
|
@ -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',
|
|
||||||
]);
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user