mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:51:05 +08:00
32 lines
875 B
TypeScript
32 lines
875 B
TypeScript
import React from 'react';
|
|
import { IconButton, Icons, Separator } from '@storybook/components';
|
|
import { Consumer, type Combo } from '@storybook/api';
|
|
import type { Addon } from '@storybook/addons';
|
|
|
|
const menuMapper = ({ api, state }: Combo) => ({
|
|
isVisible: state.layout.showNav,
|
|
singleStory: state.singleStory,
|
|
toggle: () => api.toggleNav(),
|
|
});
|
|
|
|
export const menuTool: Addon = {
|
|
title: 'menu',
|
|
id: 'menu',
|
|
match: ({ viewMode }) => viewMode === 'story',
|
|
render: () => (
|
|
<Consumer filter={menuMapper}>
|
|
{({ isVisible, toggle, singleStory }) =>
|
|
!singleStory &&
|
|
!isVisible && (
|
|
<>
|
|
<IconButton aria-label="Show sidebar" key="menu" onClick={toggle} title="Show sidebar">
|
|
<Icons icon="menu" />
|
|
</IconButton>
|
|
<Separator />
|
|
</>
|
|
)
|
|
}
|
|
</Consumer>
|
|
),
|
|
};
|