PromucFlow_constructor/app/client/src/components/editorComponents/NavBarItem.tsx
2019-11-13 11:34:11 +00:00

75 lines
1.9 KiB
TypeScript

import React from "react";
import styled from "styled-components";
import { NavLink } from "react-router-dom";
type MenuBarItemProps = {
icon: Function;
path: string;
title: string;
exact: boolean;
};
type Props = MenuBarItemProps;
const IconContainer = styled.div`
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
margin-bottom: 5px;
background-color: ${props => props.theme.colors.menuButtonBGInactive};
border-radius: ${props => props.theme.radii[1]}px;
height: 32px;
width: 32px;
svg path {
fill: ${props => props.theme.colors.menuIconColorInactive};
}
`;
const ItemContainer = styled.div`
a {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 70px;
color: ${props => props.theme.colors.textOnDarkBG}
font-size: ${props => props.theme.fontSizes[1]}px;
cursor: pointer;
background-color: ${props => props.theme.colors.navBG};
&:hover {
background-color: ${props => props.theme.colors.paneBG};
text-decoration: none;
}
color: ${props => props.theme.colors.menuButtonBGInactive};
&.active {
background-color: ${props => props.theme.colors.paneBG}
color: ${props => props.theme.colors.textOnDarkBG};
${IconContainer} {
background-color: ${props => props.theme.colors.primary};
svg path {
fill: ${props => props.theme.colors.textOnDarkBG};
}
}
}
}
`;
class NavBarItem extends React.Component<Props> {
render(): React.ReactNode {
const { title, icon, path, exact } = this.props;
return (
<ItemContainer>
<NavLink exact={exact} to={path}>
<React.Fragment>
<IconContainer>{icon()}</IconContainer>
{title}
</React.Fragment>
</NavLink>
</ItemContainer>
);
}
}
export default NavBarItem;