mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Props: Fix subcomponents & update story to test it
This commit is contained in:
parent
11ad35dd26
commit
f789985eba
@ -160,15 +160,17 @@ export const StoryTable: FC<StoryProps & { components: Record<string, Component>
|
||||
|
||||
// eslint-disable-next-line prefer-const
|
||||
let [args, updateArgs] = useArgs(storyId, storyStore);
|
||||
if (!storyArgTypes || !Object.values(storyArgTypes).find((v) => !!v?.control)) {
|
||||
updateArgs = null;
|
||||
}
|
||||
|
||||
let tabs = { Story: { rows: storyArgTypes, args, updateArgs } } as Record<
|
||||
string,
|
||||
ArgsTableProps
|
||||
>;
|
||||
if (showComponents) {
|
||||
if (!storyArgTypes || !Object.values(storyArgTypes).find((v) => !!v?.control)) {
|
||||
updateArgs = null;
|
||||
tabs = {};
|
||||
}
|
||||
|
||||
// Use the dynamically generated component tabs if there are no controls
|
||||
if (showComponents || !updateArgs) {
|
||||
tabs = addComponentTabs(tabs, components, context, include, exclude);
|
||||
}
|
||||
|
||||
|
@ -7,21 +7,9 @@ export default {
|
||||
component: ButtonGroup,
|
||||
parameters: { viewMode: 'docs' },
|
||||
subcomponents: { DocgenButton },
|
||||
argTypes: {
|
||||
background: {
|
||||
control: { type: 'color' },
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const Args = (args) => (
|
||||
<ButtonGroup {...args}>
|
||||
<DocgenButton label="foo" />
|
||||
<DocgenButton label="bar" />
|
||||
</ButtonGroup>
|
||||
);
|
||||
|
||||
export const NoArgs = () => (
|
||||
export const Basic = () => (
|
||||
<ButtonGroup background="#eee">
|
||||
<DocgenButton label="foo" />
|
||||
<DocgenButton label="bar" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user