mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
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:
parent
74582afab0
commit
f46a4554e8
File diff suppressed because it is too large
Load Diff
@ -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>
|
||||
|
@ -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} />;
|
||||
|
@ -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>
|
||||
);
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user