This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/frontend/components/Layout/components/SidebarLink.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-06-16 03:39:08 +00:00
// @flow
import React from 'react';
import { NavLink } from 'react-router-dom';
2017-09-25 03:03:03 +00:00
import { color, fontWeight } from 'styles/constants';
2017-06-16 03:39:08 +00:00
import styled from 'styled-components';
2017-09-27 07:21:40 +00:00
import Flex from 'components/Flex';
import ChevronIcon from 'components/Icon/ChevronIcon';
2017-06-16 03:39:08 +00:00
const activeStyle = {
color: color.black,
fontWeight: fontWeight.semiBold,
2017-06-16 03:39:08 +00:00
};
2017-09-24 21:25:14 +00:00
// This is a hack for `styleComponent()` as NavLink fails to render without `to` prop
const StyleableDiv = props => <div {...props} />;
const styleComponent = component => styled(component)`
2017-10-16 01:43:26 +00:00
display: flex;
2017-09-27 07:21:40 +00:00
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
2017-10-15 18:42:03 +00:00
padding: 5px 0;
2017-09-27 07:21:40 +00:00
margin-left: ${({ hasChildren }) => (hasChildren ? '-20px;' : '0')};
color: ${color.slateDark};
2017-09-04 15:32:31 +00:00
font-size: 15px;
cursor: pointer;
&:hover {
color: ${color.text};
2017-06-16 03:39:08 +00:00
}
2017-09-27 07:21:40 +00:00
2017-09-27 07:32:55 +00:00
&.active ${StyledChevron} svg {
2017-09-27 07:21:40 +00:00
fill: ${activeStyle.color};
}
2017-06-16 03:39:08 +00:00
`;
function SidebarLink(props: Object) {
2017-09-24 21:25:14 +00:00
const Component = styleComponent(props.to ? NavLink : StyleableDiv);
2017-09-27 07:21:40 +00:00
return (
<Flex>
<Component exact activeStyle={activeStyle} {...props}>
{props.hasChildren && <StyledChevron expanded={props.expanded} />}
2017-10-16 01:43:26 +00:00
<div>{props.children}</div>
2017-09-27 07:21:40 +00:00
</Component>
</Flex>
);
}
2017-09-27 07:21:40 +00:00
const StyledChevron = styled(ChevronIcon)`
margin-right: -10px;
svg {
height: 18px;
margin-bottom: -4px;
margin-right: 6px;
fill: ${color.slateDark};
${({ expanded }) => expanded && 'transform: rotate(90deg);'}
}
`;
export default SidebarLink;