mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:41:06 +08:00
32 lines
864 B
TypeScript
32 lines
864 B
TypeScript
import React, { FC } from 'react';
|
|
import { ArgsTable, ArgsTableProps } from './ArgsTable';
|
|
import { TabsState } from '../../tabs/tabs';
|
|
|
|
export interface TabbedArgsTableProps {
|
|
tabs: Record<string, ArgsTableProps>;
|
|
}
|
|
|
|
export const TabbedArgsTable: FC<TabbedArgsTableProps> = ({ tabs, ...props }) => {
|
|
const entries = Object.entries(tabs);
|
|
|
|
if (entries.length === 1) {
|
|
return <ArgsTable {...entries[0][1]} {...props} />;
|
|
}
|
|
|
|
return (
|
|
<TabsState>
|
|
{entries.map((entry) => {
|
|
const [label, table] = entry;
|
|
const id = `prop_table_div_${label}`;
|
|
return (
|
|
<div key={id} id={id} title={label}>
|
|
{({ active }: { active: boolean }) =>
|
|
active ? <ArgsTable key={`prop_table_${label}`} {...table} {...props} /> : null
|
|
}
|
|
</div>
|
|
);
|
|
})}
|
|
</TabsState>
|
|
);
|
|
};
|