mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
import React, { ComponentProps } from 'react';
|
|
import { Icons, IconButton, WithTooltipPure, TabButton } from '@storybook/components';
|
|
import { ToolBarMenuOptions } from './ToolBarMenuOptions';
|
|
import { ContextNode, FCNoChildren } from '../../shared/types.d';
|
|
|
|
type ToolBarMenu = FCNoChildren<{
|
|
icon?: ComponentProps<typeof Icons>['icon'] | '' | void;
|
|
title: ContextNode['title'];
|
|
active: boolean;
|
|
expanded: boolean;
|
|
setExpanded: (state: boolean) => void;
|
|
optionsProps: ComponentProps<typeof ToolBarMenuOptions>;
|
|
}>;
|
|
|
|
export const ToolBarMenu: ToolBarMenu = ({
|
|
icon,
|
|
title,
|
|
active,
|
|
expanded,
|
|
setExpanded,
|
|
optionsProps,
|
|
}) => (
|
|
<WithTooltipPure
|
|
closeOnClick
|
|
trigger="click"
|
|
placement="top"
|
|
tooltipShown={expanded}
|
|
onVisibilityChange={setExpanded}
|
|
tooltip={<ToolBarMenuOptions {...optionsProps} />}
|
|
>
|
|
{icon ? (
|
|
<IconButton active={active} title={title}>
|
|
<Icons icon={icon} />
|
|
</IconButton>
|
|
) : (
|
|
<TabButton active={active}>{title}</TabButton>
|
|
)}
|
|
</WithTooltipPure>
|
|
);
|