aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/emcoui/src/appbase/Header.js
blob: 0222151f85e88929a001398f8866cebe5d26574f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
//=======================================================================
// Copyright (c) 2017-2020 Aarna Networks, Inc.
// All rights reserved.
// ======================================================================
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//           http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ========================================================================  
import React from "react";
import PropTypes from "prop-types";
import AppBar from "@material-ui/core/AppBar";
import Grid from "@material-ui/core/Grid";
import Hidden from "@material-ui/core/Hidden";
import IconButton from "@material-ui/core/IconButton";
import MenuIcon from "@material-ui/icons/Menu";
import Toolbar from "@material-ui/core/Toolbar";
import Typography from "@material-ui/core/Typography";
import { withStyles } from "@material-ui/core/styles";
import { withRouter } from "react-router-dom";

const lightColor = "rgba(255, 255, 255, 0.7)";

const styles = (theme) => ({
  root: {
    boxShadow:
      "0 3px 4px 0 rgba(0,0,0,.2), 0 3px 3px -2px rgba(0,0,0,.14), 0 1px 8px 0 rgba(0,0,0,.12)",
  },
  secondaryBar: {
    zIndex: 0,
  },
  menuButton: {
    marginLeft: -theme.spacing(1),
  },
  iconButtonAvatar: {
    padding: 4,
  },
  link: {
    textDecoration: "none",
    color: lightColor,
    "&:hover": {
      color: theme.palette.common.white,
    },
  },
  button: {
    borderColor: lightColor,
  },
});

function Header(props) {
  const { classes, onDrawerToggle, location } = props;

  let headerName = "";
  let getHeaderName = () => {
    if (location.pathname === `${props.match.url}/composite-apps`) {
      headerName = "Composite Apps";
    } else if (
      location.pathname === `${props.match.url}/deployment-intent-group`
    ) {
      headerName = "Deployment Intent Groups";
    } else if (location.pathname.includes("composite-apps")) {
      headerName =
        "Composite Apps / " +
        location.pathname
          .slice(location.pathname.indexOf("composite-apps"))
          .slice(15);
    } else if (location.pathname === `${props.match.url}/projects`) {
      headerName = "Projects";
    } else if (location.pathname === `${props.match.url}/clusters`) {
      headerName = "Clusters";
    } else if (location.pathname === `${props.match.url}/controllers`) {
      headerName = "Controllers";
    }
  };
  getHeaderName();
  return (
    <React.Fragment>
      <AppBar
        className={classes.root}
        color="primary"
        position="sticky"
        elevation={0}
      >
        <Toolbar>
          <Grid container spacing={1} alignItems="center">
            <Hidden smUp implementation="js">
              <Grid item>
                <IconButton
                  color="inherit"
                  onClick={onDrawerToggle}
                  className={classes.menuButton}
                >
                  <MenuIcon />
                </IconButton>
              </Grid>
            </Hidden>
            <Typography>{headerName}</Typography>
            <Grid item xs />
          </Grid>
        </Toolbar>
      </AppBar>
    </React.Fragment>
  );
}

Header.propTypes = {
  classes: PropTypes.object.isRequired,
  onDrawerToggle: PropTypes.func.isRequired,
};

export default withStyles(styles)(withRouter(Header));