feat(storiesNav): adding classNames to stories nav elements

- adding classNames to stories nav elements
- updating LogoLink to support html elements

This PR is a replacement for the deep theming PR:

https://github.com/storybooks/storybook/pull/6098
This commit is contained in:
MansoorBashaBellary 2019-04-20 15:09:10 -04:00
parent 74582afab0
commit f46a4554e8
5 changed files with 220 additions and 206 deletions

View File

@ -31,9 +31,9 @@ const CustomScrollArea = styled(ScrollArea)({
});
const Sidebar = ({ storyId, stories, menu, menuHighlighted, loading }) => (
<Container className="container">
<Container className="container sidebar-container">
<CustomScrollArea vertical>
<Heading menuHighlighted={menuHighlighted} menu={menu} />
<Heading className="sidebar-header" menuHighlighted={menuHighlighted} menu={menu} />
<Stories stories={stories} storyId={storyId} loading={loading} />
</CustomScrollArea>
</Container>

View File

@ -85,11 +85,7 @@ const Brand = withTheme(({ theme: { brand: { title = 'Storybook', url = './', im
return title;
}
if (image === null && url) {
return (
<LogoLink href={url} target={targetValue}>
{title}
</LogoLink>
);
return <LogoLink href={url} target={targetValue} dangerouslySetInnerHTML={{ __html: title }} />;
}
if (image && url === null) {
return <Img src={image} alt={title} />;

View File

@ -111,9 +111,19 @@ export default function SidebarItem({
}
return (
<Item isSelected={isSelected} depth={depth} loading={loading} {...props}>
<Expander isExpandable={!isLeaf} isExpanded={isExpanded ? true : undefined} />
<Icon icon={iconName} isSelected={isSelected} />
<Item
isSelected={isSelected}
depth={depth}
loading={loading}
{...props}
className={isSelected ? 'sidebar-item selected' : 'sidebar-item'}
>
<Expander
className="sidebar-expander"
isExpandable={!isLeaf}
isExpanded={isExpanded ? true : undefined}
/>
<Icon className="sidebar-svg-icon" icon={iconName} isSelected={isSelected} />
<span>{name}</span>
</Item>
);

View File

@ -18,6 +18,14 @@ const Subheading = styled(SidebarSubheading)({
margin: '0 20px',
});
Subheading.propTypes = {
className: PropTypes.string,
};
Subheading.defaultProps = {
className: 'sidebar-subheading',
};
const Section = styled.section({
'& + section': {
marginTop: 20,