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
217 lines (204 loc) · 5.83 KB
/
NavBar.jsx
File metadata and controls
217 lines (204 loc) · 5.83 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
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, useMediaQuery } from '@material-ui/core';
import { withStyles, useTheme } from '@material-ui/core/styles';
import classNames from 'classnames';
import Link from './Link';
import OpenTargetsTitle from './OpenTargetsTitle';
import HeaderMenu from './HeaderMenu';
import PrivateWrapper from './PrivateWrapper';
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',
},
menuLink: {
color: theme.palette.secondary.contrastText,
'&:hover': {
color: theme.palette.secondary.contrastText,
},
},
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 => (
<>
{/*
* Keep the TopBar outside of the NavBar's AppBar component, as nesting it
* renders the top bar behind the ProtVista protein structure viewer when
* scrolling down the target profile page. That's probably because the
* NavBar's AppBar has its own z-index lower than 40001, which creates a
* local stacking context outside of which the z-indices of descendants
* are not compared.
*
* This still leaves the issue that the bar also overlays the 3d structure
* viewer when it's expanded to fill the viewport, blocking some of the
* buttons of the viewer.
*/}
{config.showTopBar && <TopBar />}
<NavBarContent {...props} />
</>
)
const NavBarContent = ({
classes,
name,
search,
api,
downloads,
docs,
contact,
homepage,
items,
placement,
}) => {
const theme = useTheme();
const smMQ = useMediaQuery(theme.breakpoints.down('sm'));
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={classNames(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) => {
if (item.showOnlyPartner) {
return (
<PrivateWrapper key={i}>
<MenuItem
dense={true}
className={classes.menuItem}
>
<Link
external={item.external}
to={item.url}
className={classes.menuLink}
>
{item.name}
</Link>
</MenuItem>
</PrivateWrapper>
);
} else {
return (
<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);