/* * 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. */ import React, { FC } from "react"; import styled from "styled-components"; import useMenuContext from "./MenuContext"; type Props = { label: string; }; type CollapsedProps = { collapsed: boolean; }; const SectionContainer = styled.aside` position: sticky; position: -webkit-sticky; /* Safari */ top: 2rem; @media (max-height: 900px) { position: relative; top: 0; } `; const Icon = styled.i` 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` height: 3.2rem; display: flex; align-items: center; justify-content: ${(props: CollapsedProps) => (props.collapsed ? "center" : "inherit")}; cursor: pointer; `; const SecondaryNavigation: FC = ({ label, children }) => { const menuContext = useMenuContext(); const isCollapsed = menuContext.isCollapsed(); const toggleCollapseState = () => { menuContext.setCollapsed(!isCollapsed); }; const uncollapseMenu = () => { if (isCollapsed) { menuContext.setCollapsed(false); } }; const arrowIcon = isCollapsed ? : ; return (
{arrowIcon} {isCollapsed ? "" : label}
    {children}
); }; export default SecondaryNavigation;