| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import React, { CSSProperties } from "react";
- import { Link } from "react-router";
- import { observer } from "mobx-react";
- import styled from "styled-components";
- import autobind from "autobind-decorator";
- import Logo from "@src/components/ui/Logo";
- import userStore from "@src/stores/UserStore";
- import configLoader from "@src/utils/Config";
- import { navigationMenu } from "@src/constants";
- import { ThemeProps } from "@src/components/Theme";
- import backgroundImage from "@src/components/ui/Images/star-bg.jpg";
- import cbsImage from "./images/cbsl-logo.svg";
- import cbsImageSmall from "./images/cbsl-logo-small.svg";
- import tinyLogo from "./images/logo-small.svg";
- import transferImage from "./images/transfer-menu.svg";
- import endpointImage from "./images/endpoint-menu.svg";
- import planningImage from "./images/planning-menu.svg";
- import projectImage from "./images/project-menu.svg";
- import userImage from "./images/user-menu.svg";
- import logsImage from "./images/logs-menu.svg";
- import dashboardImage from "./images/dashboard-menu.svg";
- import minionPoolsImage from "./images/minion-pool-menu.svg";
- import bareMetalServersImage from "./images/bare-metal-servers.svg";
- const isCollapsed = (props: any) =>
- props.collapsed || window.outerWidth <= ThemeProps.mobileMaxWidth;
- const ANIMATION = "200ms";
- const Wrapper = styled.div<any>`
- background-image: url("${backgroundImage}");
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100%;
- width: ${props => (isCollapsed(props) ? "80px" : "320px")};
- transition: width ${ANIMATION};
- `;
- const LogoWrapper = styled.div<any>`
- position: relative;
- height: 48px;
- margin-top: 48px;
- width: 100%;
- display: flex;
- justify-content: center;
- `;
- const LogoStyled = styled(Logo)<any>`
- position: absolute;
- top: 0;
- left: ${props => (isCollapsed(props) ? "-9999px" : "auto")};
- cursor: pointer;
- display: flex;
- `;
- const WrappedLink = (props: any) => (
- <div
- style={{ transition: `all ${ThemeProps.animations.swift}` }}
- className={props.className}
- ref={r => {
- if (props.customRef) props.customRef(r);
- }}
- >
- <Link to={`../${props.to}`} style={{ display: "flex", width: "100%" }}>
- {props.children}
- </Link>
- </div>
- );
- const TinyLogo = styled(WrappedLink)`
- position: absolute;
- top: 0;
- opacity: ${props => (isCollapsed(props) ? 1 : 0)};
- background: url("${tinyLogo}") center no-repeat;
- display: flex;
- width: 48px;
- height: 48px;
- transition: opacity ${ANIMATION};
- `;
- const MenuWrapper = styled.div<any>`
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- flex-grow: 1;
- margin-top: 32px;
- width: 100%;
- `;
- const Menu = styled.div<any>`
- display: flex;
- flex-direction: column;
- position: absolute;
- top: 0;
- left: ${props => (isCollapsed(props) ? "-9999px" : "auto")};
- opacity: ${props => (isCollapsed(props) ? 0 : 1)};
- transition: opacity ${ANIMATION};
- `;
- const MenuItem = styled(Link)<{ selected?: boolean | null }>`
- font-size: 18px;
- color: ${props => (props.selected ? "#007AFF" : "white")};
- cursor: pointer;
- margin-top: 26px;
- text-decoration: none;
- width: 160px;
- margin-left: 32px;
- `;
- const SmallMenu = styled.div<any>`
- display: flex;
- flex-direction: column;
- position: absolute;
- opacity: ${props => (isCollapsed(props) ? 1 : 0)};
- left: ${props => (isCollapsed(props) ? "auto" : "-9999px")};
- top: 0;
- transition: opacity ${ANIMATION};
- `;
- const SmallMenuBackground = styled.div<any>`
- border-radius: 50%;
- opacity: 0.15;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- transition: background-color ${ANIMATION};
- `;
- const MenuTooltip = styled.div<any>`
- position: absolute;
- font-size: 12px;
- color: #202234;
- background: #d8dbe2;
- border-radius: 8px;
- padding: 1px 6px;
- white-space: nowrap;
- transition: opacity ${ANIMATION};
- opacity: 0;
- left: -9999px;
- `;
- const SmallMenuItem = styled(Link)<any>`
- position: relative;
- cursor: pointer;
- width: 38px;
- height: 38px;
- margin-top: 16px;
- display: flex;
- justify-content: center;
- align-items: center;
- ${SmallMenuBackground} {
- background: ${props => (props.selected ? "white" : "inherit")};
- }
- &:hover {
- ${SmallMenuBackground} {
- background: white;
- }
- ${MenuTooltip} {
- opacity: 1;
- left: 42px;
- }
- }
- `;
- const SmallMenuItemBullet = styled.div<any>`
- width: 7px;
- height: 7px;
- border-radius: 50%;
- position: absolute;
- left: -12px;
- background: ${props => (props.bullet === "transfer" ? "#E62565" : "#0044CA")};
- `;
- const MenuImage = styled.div<any>`
- width: 24px;
- height: 24px;
- background: url("${props => props.image}") center no-repeat;
- background-size: contain;
- `;
- const Footer = styled.div<any>`
- flex-shrink: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-bottom: 32px;
- `;
- const CbsLogoWrapper = styled.div<any>`
- position: relative;
- display: flex;
- width: 100%;
- height: 34px;
- justify-content: center;
- `;
- const CbsLogo = styled.a<any>`
- position: absolute;
- top: 0;
- left: ${props => (isCollapsed(props) ? "-9999px" : "auto")};
- opacity: ${props => (isCollapsed(props) ? 0 : 1)};
- width: 128px;
- height: 34px;
- background: url("${cbsImage}") center no-repeat;
- cursor: pointer;
- display: flex;
- transition: opacity ${ANIMATION};
- `;
- const CbsLogoSmall = styled.a<any>`
- position: absolute;
- top: 0;
- left: ${props => (isCollapsed(props) ? "auto" : "-9999px")};
- opacity: ${props => (isCollapsed(props) ? 1 : 0)};
- width: 48px;
- height: 34px;
- background: url("${cbsImageSmall}") center no-repeat;
- cursor: pointer;
- display: flex;
- transition: opacity ${ANIMATION};
- `;
- type Props = {
- currentPage?: string;
- className?: string;
- collapsed?: boolean;
- hideLogos?: boolean;
- };
- @observer
- class Navigation extends React.Component<Props> {
- wrapper: HTMLElement | null | undefined;
- coriolisLogo: HTMLElement | null | undefined;
- coriolisLogoSmall: HTMLElement | null | undefined;
- cbsLogo: HTMLElement | null | undefined;
- cbsLogoSmall: HTMLElement | null | undefined;
- menu: HTMLElement | null | undefined;
- smallMenu: HTMLElement | null | undefined;
- resizeTimeout: number | null = null;
- isCollapsed = false;
- componentDidMount() {
- if (this.props.collapsed) {
- return;
- }
- window.addEventListener("resize", this.handleWindowResize);
- }
- componentWillUnmount() {
- if (this.props.collapsed) {
- return;
- }
- window.removeEventListener("resize", this.handleWindowResize);
- }
- get filteredMenu() {
- const isAdmin = userStore.loggedUser ? userStore.loggedUser.isAdmin : false;
- const isDisabled = (page: string) =>
- configLoader.config
- ? configLoader.config.disabledPages.find(p => p === page)
- : false;
- return navigationMenu.filter(
- i => !isDisabled(i.value) && (!i.requiresAdmin || isAdmin),
- );
- }
- @autobind
- handleCollapsedTransitionEnd() {
- if (
- !this.coriolisLogo ||
- !this.cbsLogo ||
- !this.menu ||
- !this.isCollapsed
- ) {
- return;
- }
- this.coriolisLogo.style.left = "-9999px";
- this.cbsLogo.style.left = "-9999px";
- this.menu.style.left = "-9999px";
- this.cbsLogo.removeEventListener(
- "transitionend",
- this.handleCollapsedTransitionEnd,
- );
- }
- @autobind
- handleExpandedTransitionEnd() {
- if (!this.smallMenu || this.isCollapsed || !this.cbsLogoSmall) {
- return;
- }
- this.smallMenu.style.left = "-9999px";
- this.cbsLogoSmall.style.left = "-9999px";
- this.smallMenu.removeEventListener(
- "transitionend",
- this.handleExpandedTransitionEnd,
- );
- }
- @autobind
- handleWindowResize() {
- if (this.resizeTimeout) {
- return;
- }
- this.resizeTimeout = window.setTimeout(() => {
- this.resizeTimeout = null;
- this.toggleMenu(window.outerWidth <= ThemeProps.mobileMaxWidth);
- }, 100);
- }
- toggleMenu(toCollapsed: boolean) {
- if (
- !this.wrapper ||
- !this.coriolisLogo ||
- !this.coriolisLogoSmall ||
- !this.cbsLogo ||
- !this.cbsLogoSmall ||
- !this.menu ||
- !this.smallMenu
- ) {
- return;
- }
- if (toCollapsed) {
- this.smallMenu.style.left = "auto";
- this.cbsLogoSmall.style.left = "auto";
- this.cbsLogo.addEventListener(
- "transitionend",
- this.handleCollapsedTransitionEnd,
- );
- } else {
- this.coriolisLogo.style.left = "auto";
- this.cbsLogo.style.left = "auto";
- this.menu.style.left = "auto";
- this.smallMenu.addEventListener(
- "transitionend",
- this.handleExpandedTransitionEnd,
- );
- }
- this.isCollapsed = toCollapsed;
- this.wrapper.style.width = toCollapsed ? "80px" : "320px";
- this.coriolisLogoSmall.style.opacity = toCollapsed ? "1" : "0";
- this.coriolisLogo.style.opacity = toCollapsed ? "0" : "1";
- this.cbsLogo.style.opacity = toCollapsed ? "0" : "1";
- this.cbsLogoSmall.style.opacity = toCollapsed ? "1" : "0";
- this.menu.style.opacity = toCollapsed ? "0" : "1";
- this.smallMenu.style.opacity = toCollapsed ? "1" : "0";
- }
- renderMenu() {
- return (
- <Menu
- ref={(ref: HTMLElement | null | undefined) => {
- this.menu = ref;
- }}
- collapsed={this.props.collapsed}
- >
- {this.filteredMenu.map(item => (
- <MenuItem
- key={item.value}
- selected={this.props.currentPage === item.value}
- to={`/${item.value}`}
- >
- {item.label}
- </MenuItem>
- ))}
- </Menu>
- );
- }
- renderSmallMenu() {
- return (
- <SmallMenu
- ref={(ref: HTMLElement | null | undefined) => {
- this.smallMenu = ref;
- }}
- collapsed={this.props.collapsed}
- >
- {this.filteredMenu.map(item => {
- let menuImage;
- let bullet;
- let style: CSSProperties | null = null;
- switch (item.value) {
- case "dashboard":
- menuImage = dashboardImage;
- style = { width: "19px", height: "19px" };
- break;
- case "transfers":
- bullet = "transfer";
- menuImage = transferImage;
- break;
- case "deployments":
- bullet = "deployment";
- menuImage = transferImage;
- break;
- case "endpoints":
- menuImage = endpointImage;
- break;
- case "minion-pools":
- menuImage = minionPoolsImage;
- break;
- case "bare-metal-servers":
- menuImage = bareMetalServersImage;
- break;
- case "planning":
- menuImage = planningImage;
- break;
- case "projects":
- menuImage = projectImage;
- break;
- case "users":
- menuImage = userImage;
- break;
- case "logging":
- menuImage = logsImage;
- style = { width: "22px", height: "22px" };
- break;
- default:
- }
- return (
- <SmallMenuItem
- key={item.value}
- selected={this.props.currentPage === item.value}
- to={`/${item.value}`}
- >
- <SmallMenuBackground />
- {bullet ? <SmallMenuItemBullet bullet={bullet} /> : null}
- <MenuImage image={menuImage} style={style} />
- <MenuTooltip>{item.label}</MenuTooltip>
- </SmallMenuItem>
- );
- })}
- </SmallMenu>
- );
- }
- render() {
- return (
- <Wrapper
- ref={(ref: HTMLElement | null | undefined) => {
- this.wrapper = ref;
- }}
- className={this.props.className}
- collapsed={this.props.collapsed}
- >
- {this.props.hideLogos ? null : (
- <LogoWrapper>
- <LogoStyled
- small
- collapsed={this.props.collapsed}
- to={navigationMenu[0].value}
- customRef={(ref: HTMLElement | null | undefined) => {
- this.coriolisLogo = ref;
- }}
- />
- <TinyLogo
- collapsed={this.props.collapsed}
- customRef={(ref: HTMLElement | null | undefined) => {
- this.coriolisLogoSmall = ref;
- }}
- to={navigationMenu[0].value}
- />
- </LogoWrapper>
- )}
- <MenuWrapper>
- {this.renderMenu()}
- {this.renderSmallMenu()}
- </MenuWrapper>
- <Footer>
- {this.props.hideLogos ? null : (
- <CbsLogoWrapper>
- <CbsLogo
- ref={(ref: HTMLElement | null | undefined) => {
- this.cbsLogo = ref;
- }}
- href="https://cloudbase.it"
- target="_blank"
- collapsed={this.props.collapsed}
- />
- <CbsLogoSmall
- ref={(ref: HTMLElement | null | undefined) => {
- this.cbsLogoSmall = ref;
- }}
- href="https://cloudbase.it"
- target="_blank"
- collapsed={this.props.collapsed}
- />
- </CbsLogoWrapper>
- )}
- </Footer>
- </Wrapper>
- );
- }
- }
- export default Navigation;
|