2022-10-13 13:24:35 +02:00

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>
),
};