forked from opentargets/ot-ui-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavBar.jsx
More file actions
189 lines (179 loc) · 4.57 KB
/
NavBar.jsx
File metadata and controls
189 lines (179 loc) · 4.57 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
import React from 'react';
import { Link as ReactRouterLink } from 'react-router-dom';
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import Button from '@material-ui/core/Button';
import Typography from '@material-ui/core/Typography';
import { MenuItem, MenuList } from '@material-ui/core';
import useMediaQuery from '@material-ui/core/useMediaQuery';
import { withStyles } from '@material-ui/core/styles';
import classNames from 'classnames';
import Link from '../Link';
import OpenTargetsTitle from './OpenTargetsTitle';
import HeaderMenu from './HeaderMenu';
import config from '../../config';
import { TopBar } from 'ui';
const styles = theme => ({
navbar: {
backgroundColor: theme.palette.primary.main,
margin: 0,
width: '100%',
},
navbarHomepage: {
left: 0,
top: 0,
position: 'absolute',
},
flex: {
flexGrow: 1,
},
menuExternalLinkContainer: {
fontSize: '1rem',
'&:first-of-type': {
marginLeft: '1rem',
},
'&:not(:last-child)': {
marginRight: '1rem',
},
},
menuExternalLink: {
color: 'inherit',
textDecoration: 'none',
'&:hover': {
color: theme.palette.secondary.main,
},
},
menuList: {
display: 'flex',
},
menuItem: {
paddingTop: '6px',
paddingBottom: '6px',
},
menuLink: {
fontSize: '0.875rem',
color: '#fff',
'&:hover': {
color: '#fff',
},
},
spaceBetween: {
display: 'flex',
justifyContent: 'space-between',
},
navLogo: {
flex: 1,
},
navSearch: {
flex: 1,
display: 'flex',
justifyContent: 'center',
},
navMenu: {
flex: 1,
display: 'flex',
justifyContent: 'end',
},
});
const MenuExternalLink = ({ classes, href, children }) => (
<Typography color="inherit" className={classes.menuExternalLinkContainer}>
<a
target="_blank"
rel="noopener noreferrer"
href={href}
className={classes.menuExternalLink}
>
{children}
</a>
</Typography>
);
const NavBar = props => (
<>
{/*
* Outside of the NavBar AppBar to mirror
* apps/platform/src/components/NavBar.jsx.
*/}
{config.showTopBar && <TopBar />}
<NavBarContent {...props} />
</>
)
const NavBarContent = ({
classes,
name,
search,
api,
downloads,
docs,
contact,
homepage,
items,
placement,
}) => {
const smMQ = useMediaQuery('(max-width:800px)');
const isHomePageRegular = homepage && !smMQ;
return (
<AppBar
className={classNames(classes.navbar, {
[classes.navbarHomepage]: homepage,
})}
position="static"
color="primary"
elevation={0}
>
{/* push the content down so it isn't hidden behind the logo bar */}
{config.showTopBar &&
<div id="placeholder-div" style={{ height: '50px', width: '100%' }} />}
<Toolbar variant="dense" className={classes.spaceBetween}>
<div className={classes.navLogo}>
{homepage ? null : (
<Button component={ReactRouterLink} to="/" color="inherit">
<OpenTargetsTitle name={name} />
</Button>
)}
</div>
<div className={classes.navSearch}>{search ? search : null}</div>
<div className={classes.navMenu}>
{docs ? (
<MenuExternalLink classes={classes} href={docs}>
Docs
</MenuExternalLink>
) : null}
{api ? (
<MenuExternalLink classes={classes} href={api}>
API
</MenuExternalLink>
) : null}
{downloads ? (
<MenuExternalLink classes={classes} href={downloads}>
Downloads
</MenuExternalLink>
) : null}
{contact ? (
<MenuExternalLink classes={classes} href={contact}>
Contact
</MenuExternalLink>
) : null}
{items && !isHomePageRegular ? (
<HeaderMenu items={items} placement={placement} />
) : null}
{isHomePageRegular && (
<MenuList className={classes.menuList}>
{items.map((item, i) => (
<MenuItem key={i} dense={true} className={classes.menuItem}>
<Link
external={item.external}
to={item.url}
className={classes.menuLink}
>
{item.name}
</Link>
</MenuItem>
))}
</MenuList>
)}
</div>
</Toolbar>
</AppBar>
);
};
export default withStyles(styles)(NavBar);