Files
SCM-Manager/scm-ui/ui-components/src/navigation/SecondaryNavigation.tsx

98 lines
2.9 KiB
TypeScript
Raw Normal View History

/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2020-03-31 11:15:01 +02:00
import React, { FC } from "react";
2020-03-11 15:47:40 +01:00
import styled from "styled-components";
import useMenuContext from "./MenuContext";
type Props = {
label: string;
};
2020-03-11 15:47:40 +01:00
type CollapsedProps = {
collapsed: boolean;
};
const SectionContainer = styled.aside`
2020-03-11 15:47:40 +01:00
position: sticky;
position: -webkit-sticky; /* Safari */
top: 2rem;
@media (max-height: 900px) {
position: relative;
top: 0;
}
2020-03-11 15:47:40 +01:00
`;
const Icon = styled.i<CollapsedProps>`
padding-left: ${(props: CollapsedProps) => (props.collapsed ? "0" : "0.5rem")};
padding-right: ${(props: CollapsedProps) => (props.collapsed ? "0" : "0.4rem")};
height: 1.5rem;
font-size: 24px;
margin-top: -0.75rem;
`;
const MenuLabel = styled.p<CollapsedProps>`
height: 3.2rem;
display: flex;
align-items: center;
justify-content: ${(props: CollapsedProps) => (props.collapsed ? "center" : "inherit")};
cursor: pointer;
`;
2020-03-31 11:15:01 +02:00
const SecondaryNavigation: FC<Props> = ({ label, children }) => {
const menuContext = useMenuContext();
const isCollapsed = menuContext.isCollapsed();
const toggleCollapseState = () => {
2020-03-31 11:15:01 +02:00
menuContext.setCollapsed(!isCollapsed);
};
const uncollapseMenu = () => {
if (isCollapsed) {
menuContext.setCollapsed(false);
}
};
2020-03-11 15:47:40 +01:00
const arrowIcon = isCollapsed ? <i className="fas fa-caret-down" /> : <i className="fas fa-caret-right" />;
return (
<SectionContainer className="menu">
2020-03-11 15:47:40 +01:00
<div>
2020-03-31 11:15:01 +02:00
<MenuLabel className="menu-label" collapsed={isCollapsed} onClick={toggleCollapseState}>
<Icon color="info" className="is-medium" collapsed={isCollapsed}>
{arrowIcon}
</Icon>
2020-03-11 15:47:40 +01:00
{isCollapsed ? "" : label}
</MenuLabel>
2020-03-31 11:15:01 +02:00
<ul className="menu-list" onClick={uncollapseMenu}>
{children}
</ul>
2020-03-11 15:47:40 +01:00
</div>
</SectionContainer>
);
};
export default SecondaryNavigation;